Skip to content

Commit

Permalink
fix(manifest): correct icon path
Browse files Browse the repository at this point in the history
  • Loading branch information
xianshenglu committed Nov 22, 2020
1 parent 8cb404f commit 5f9ef72
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "./public/images/logo16.png",
"32": "./public/images/logo32.png",
"48": "./public/images/logo48.png",
"128": "./public/images/logo48.png"
"16": "./static/images/logo16.png",
"32": "./static/images/logo32.png",
"48": "./static/images/logo48.png",
"128": "./static/images/logo48.png"
}
},
"icons": {
"16": "./public/images/logo16.png",
"32": "./public/images/logo32.png",
"48": "./public/images/logo48.png",
"128": "./public/images/logo48.png"
"16": "./static/images/logo16.png",
"32": "./static/images/logo32.png",
"48": "./static/images/logo48.png",
"128": "./static/images/logo48.png"
},
"options_page": "options.html",
"content_scripts": [
Expand Down

0 comments on commit 5f9ef72

Please sign in to comment.