File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 7
7
8
8
"browser_action" : {
9
9
"default_icon" : " icon.png" ,
10
- "default_popup" : " popup .html" ,
10
+ "default_popup" : " timer .html" ,
11
11
"default_title" : " Tomato: Your Pomodoro Timer"
12
12
},
13
13
"permissions" : [
Original file line number Diff line number Diff line change
1
+ <!doctype html>
2
+ < html >
3
+ < head >
4
+ <!--
5
+ - JavaScript and HTML must be in separate files: see our Content Security
6
+ - Policy documentation[1] for details and explanation.
7
+ -
8
+ - [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
9
+ -->
10
+ < script src ="popup.js "> </ script >
11
+ </ head >
12
+ < body >
13
+ < div id ="container ">
14
+ < h1 > Tomato</ h1 > < small > Your Pomodoro Helper</ small >
15
+ < div id ="current-state ">
16
+ < h2 > 22:00</ h2 >
17
+ </ div >
18
+ < div id ="next-state ">
19
+ < p > short break in < span > 3:00</ span > </ p >
20
+ </ div >
21
+ < div id ="controls ">
22
+ < div class ="controls-buttons-group ">
23
+ < button type ="button "> stop</ button >
24
+ < button type ="button "> pause</ button >
25
+ < button type ="button "> next</ button >
26
+ </ div >
27
+ </ div >
28
+ </ div >
29
+ </ body >
30
+ </ html >
31
+
You can’t perform that action at this time.
0 commit comments