Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Poucous committed Jun 1, 2022
1 parent ae67b27 commit 9c6092b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
smartReader_with_innerHtml.js
16 changes: 8 additions & 8 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function updateIcon(state) {

path : {

"16": "icons/button/smartReader-white-16.png",
"32": "icons/button/smartReader-white-32.png"
"16": "/icons/button/smartReader-white-16.png",
"32": "/icons/button/smartReader-white-32.png"
}

});
Expand All @@ -36,8 +36,8 @@ function updateIcon(state) {

path : {

"16": "icons/button/smartReader-black-16.png",
"32": "icons/button/smartReader-black-32.png"
"16": "/icons/button/smartReader-black-16.png",
"32": "/icons/button/smartReader-black-32.png"
}

});
Expand All @@ -52,8 +52,8 @@ function updateIcon(state) {

path : {

"16": "icons/button/smartReader-black-16.png",
"32": "icons/button/smartReader-black-32.png"
"16": "/icons/button/smartReader-black-16.png",
"32": "/icons/button/smartReader-black-32.png"
}

});
Expand All @@ -64,8 +64,8 @@ function updateIcon(state) {

path : {

"16": "icons/button/smartReader-white-16.png",
"32": "icons/button/smartReader-white-32.png"
"16": "/icons/button/smartReader-white-16.png",
"32": "/icons/button/smartReader-white-32.png"
}

});
Expand Down
File renamed without changes
14 changes: 7 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"description": "Modify a web page to make it more readable",

"icons": {
"48": "icons/smartReader-48.png"
"48": "/icons/smartReader-48.png"
},

"content_scripts": [
Expand All @@ -32,17 +32,17 @@

"browser_action": {
"default_icon": {
"16": "icons/button/smartReader-white-16.png",
"32": "icons/button/smartReader-white-32.png"
"16": "/icons/button/smartReader-white-16.png",
"32": "/icons/button/smartReader-white-32.png"
},
"default_title": "Change mode",
"theme_icons": [{
"light": "icons/button/smartReader-white-16.png",
"dark": "icons/button/smartReader-black-16.png",
"light": "/icons/button/smartReader-white-16.png",
"dark": "/icons/button/smartReader-black-16.png",
"size": 16
}, {
"light": "icons/button/smartReader-white-32.png",
"dark": "icons/button/smartReader-black-32.png",
"light": "/icons/button/smartReader-white-32.png",
"dark": "/icons/button/smartReader-black-32.png",
"size": 32
}]
}
Expand Down
Binary file modified web-ext-artifacts/smartreader-1.2.zip
Binary file not shown.

0 comments on commit 9c6092b

Please sign in to comment.