Skip to content

Commit

Permalink
feat: 48x and 96x icon variants
Browse files Browse the repository at this point in the history
  • Loading branch information
alex4401 committed Dec 8, 2023
1 parent 6249e09 commit ff47e3a
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 22 deletions.
Binary file added icons/48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/48_off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/96_off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 19 additions & 11 deletions manifests/chrome_rel.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,27 @@
"*://*.gamepedia.com/*",
"*://*.fandom.com/*"
],
"background": {
"service_worker": "built/background.js"
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png"
},
"action": {
"default_icon": "icons/128.png",
"default_title": "__MSG_extension_name__",
"default_popup": "popup.html"
"default_popup": "popup.html",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png"
}
},
"background": {
"service_worker": "built/background.js"
},
"content_scripts": [
{
Expand Down Expand Up @@ -76,11 +90,5 @@
"run_at": "document_end"
}
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"64": "icons/64.png",
"128": "icons/128.png"
},
"manifest_version": 3
}
30 changes: 19 additions & 11 deletions manifests/firefox_rel.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,31 @@
"id": "[email protected]"
}
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png"
}
},
"background": {
"persistent": true,
"scripts": [
"built/background.js"
]
},
"browser_action": {
"default_icon": "icons/128.png",
"default_title": "__MSG_extension_name__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
Expand Down Expand Up @@ -82,11 +96,5 @@
"run_at": "document_end"
}
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"64": "icons/64.png",
"128": "icons/128.png"
},
"manifest_version": 2
}

0 comments on commit ff47e3a

Please sign in to comment.