├── bulb.png ├── manifest.json ├── newtab.html ├── mass_view.html ├── README.md ├── style.css ├── add_insp.html ├── migration.js ├── massViewDeleteScript.js ├── addInspScript.js ├── newtabScript.js ├── normalize.css └── skeleton.css /bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evykassirer/reminders-of-inspiration/HEAD/bulb.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | 4 | "name": "Reminders of Inspiration", 5 | "short_name": "Reminders", 6 | "description": "A new tab page that displays your own custom inspirational quotations and images", 7 | "version": "1.3", 8 | 9 | "icons": { 10 | "128": "bulb.png" 11 | }, 12 | 13 | "chrome_url_overrides" : { 14 | "newtab": "newtab.html" 15 | }, 16 | 17 | "permissions": [ 18 | "storage" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /newtab.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | form div {
2 | padding: 10px 0;
3 | }
4 |
5 | #confirmation {
6 | color: green;
7 | }
8 |
9 | #confirmation img {
10 | max-height: 50px;
11 | }
12 |
13 |
14 |
15 | .newtab-container {
16 | margin-top: 20px;
17 | text-align: center;
18 | }
19 |
20 | .newtab-buttons {
21 | margin-top: 20px;
22 | }
23 |
24 | #inspiration-content {
25 | margin-bottom: 170px;
26 | }
27 |
28 | #inspiration-content span {
29 | display: inline-block;
30 | font-size: 30px;
31 | margin: 150px;
32 | }
33 |
34 | #inspiration-content img {
35 | max-height: 600px;
36 | }
37 |
38 | #remove-insp {
39 | margin-left: -3px;
40 | font-size: 9px;
41 | height: 34px;
42 | line-height: 34px;
43 | }
44 |
45 | .inspiration img {
46 | max-height: 150px;
47 | max-width: 250px;
48 | vertical-align: middle;
49 | }
50 |
51 | .inspiration .textInsp {
52 | display: inline-block;
53 | font-size: 18px;
54 | vertical-align: middle;
55 | width: 90%;
56 | }
57 |
58 | input[type=checkbox] {
59 | display:none;
60 | }
61 |
62 | input[type=checkbox] + label {
63 | border: 1px solid gray;
64 | border-radius: 5px;
65 | display:inline-block;
66 | margin-right: 20px;
67 | padding: 0 0 0 0px;
68 | vertical-align:middle;
69 | width: 20px;
70 | height: 20px;
71 | }
72 |
73 | input[type=checkbox]:checked + label {
74 | background: #33C3F0;
75 | height: 20px;
76 | width: 20px;
77 | display:inline-block;
78 | padding: 0 0 0 0px;
79 | }
80 |
81 | .container {
82 | margin-left: 80px;
83 | }
84 |
--------------------------------------------------------------------------------
/add_insp.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |