Skip to content

Commit de6e43c

Browse files
committed
update: new icon
1 parent 1f27ca0 commit de6e43c

File tree

9 files changed

+25
-22
lines changed

9 files changed

+25
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1><img src="./src/icons/icon64.png" height="28px" width="28px" /> NoteKeeper</h1>
1+
<h1><img src="./src/icons/icon32.png" height="28px" width="28px" /> NoteKeeper</h1>
22

33
![Mozilla Add-on](https://img.shields.io/amo/v/newtab-notes@semanticdata) ![Add-on rating](https://img.shields.io/amo/rating/newtab-notes@semanticdata) ![Add-on downloads](https://img.shields.io/amo/dw/newtab-notes@semanticdata) ![Add-on users](https://img.shields.io/amo/users/newtab-notes@semanticdata) ![License](https://img.shields.io/github/license/semanticdata/firefox-new-tab-notes)
44

manifest.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,40 @@
11
{
22
"manifest_version": 2,
33
"name": "NoteKeeper",
4-
"version": "1.2.5",
4+
"version": "1.3.0",
55
"description": "NoteKeeper transforms your new tab into a minimalist, auto-saving text editor.",
6+
"author": "semanticdata",
67
"browser_specific_settings": {
78
"gecko": {
89
"id": "newtab-notes@semanticdata",
910
"strict_min_version": "100.0"
1011
}
1112
},
12-
"author": "semanticdata",
13-
"icons": {
14-
"64": "src/icons/icon64.png"
15-
},
1613
"permissions": [
1714
"storage"
1815
],
19-
"chrome_url_overrides": {
20-
"newtab": "src/newtab.html"
16+
"icons": {
17+
"48": "src/icons/icon48.png",
18+
"96": "src/icons/icon96.png"
2119
},
2220
"browser_action": {
2321
"default_title": "NoteKeeper",
2422
"default_icon": {
25-
"64": "src/icons/icon64.png"
23+
"48": "src/icons/icon48.png",
24+
"96": "src/icons/icon96.png"
2625
}
2726
},
27+
"sidebar_action": {
28+
"default_icon": {
29+
"48": "src/icons/icon48.png",
30+
"96": "src/icons/icon96.png"
31+
},
32+
"default_title": "NoteKeeper",
33+
"default_panel": "src/sidebar/panel.html"
34+
},
35+
"chrome_url_overrides": {
36+
"newtab": "src/newtab.html"
37+
},
2838
"background": {
2939
"scripts": [
3040
"src/js/background.js"
@@ -34,13 +44,6 @@
3444
"page": "src/options/options.html",
3545
"browser_style": true
3646
},
37-
"sidebar_action": {
38-
"default_icon": {
39-
"64": "src/icons/icon64.png"
40-
},
41-
"default_title": "NoteKeeper",
42-
"default_panel": "src/sidebar/panel.html"
43-
},
4447
"commands": {
4548
"_execute_sidebar_action": {
4649
"suggested_key": {

src/icons/icon32.png

888 Bytes
Loading

src/icons/icon48.png

1.25 KB
Loading

src/icons/icon64.png

-1.45 KB
Binary file not shown.

src/icons/icon96.png

2.54 KB
Loading

src/newtab.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<title>NoteKeeper</title>
88
<meta name="description"
99
content="NoteKeeper is a Firefox extension that transforms the New Tab into a minimalist, auto-saving text editor.">
10-
<link rel="icon" type="image/png" sizes="64x64" href="icons/icon64.png" />
10+
<link rel="icon" type="image/png" sizes="48x48" href="icons/icon48.png" />
1111
<link rel="stylesheet" href="styles.css" />
1212
</head>
1313

1414
<body>
1515
<header>
1616
<h1 class="nav-title">
17-
<img src="icons/icon64.png" alt="icon" height="32px" width="32px" />
17+
<img src="icons/icon32.png" alt="icon" height="32px" width="32px" />
1818
NoteKeeper
1919
</h1>
2020
<button type="button" data-theme-toggle aria-label="Change to light theme">

src/options/options.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
<title>Notekeeper's Options</title>
99
<meta name="description"
1010
content="NoteKeeper is a Firefox extension that transforms the New Tab into a minimalist, auto-saving text editor.">
11-
<link rel="icon" type="image/png" sizes="64x64" href="../icons/icon64.png" />
11+
<link rel="icon" type="image/png" sizes="48x48" href="../icons/icon48.png" />
1212
<link rel="stylesheet" href="options.css" />
1313
</head>
1414

1515
<body>
1616
<header>
1717
<h1 class="nav-title">
18-
<img src="../icons/icon64.png" alt="icon" height="32px" width="32px" />
18+
<img src="../icons/icon32.png" alt="icon" height="32px" width="32px" />
1919
NoteKeeper
2020
</h1>
2121
</header>

src/sidebar/panel.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<title>NoteKeeper in Sidebar</title>
88
<meta name="description"
99
content="NoteKeeper is a Firefox extension that transforms the New Tab into a minimalist, auto-saving text editor.">
10-
<link rel="icon" type="image/png" sizes="64x64" href="../icons/icon64.png" />
10+
<link rel="icon" type="image/png" sizes="48x48" href="../icons/icon48.png" />
1111
<link rel="stylesheet" href="../styles.css" />
1212
</head>
1313

1414
<body>
1515
<header>
1616
<h1 class="nav-title">
17-
<img src="../icons/icon64.png" alt="icon" height="32px" width="32px" />
17+
<img src="../icons/icon32.png" alt="icon" height="32px" width="32px" />
1818
NoteKeeper
1919
</h1>
2020
<button type="button" data-theme-toggle aria-label="Change to light theme">

0 commit comments

Comments
 (0)