Skip to content

Commit

Permalink
Update manifest.json
Browse files Browse the repository at this point in the history
Fix manifest.json so and allows the extenstion to be self-installed in Firefox
  • Loading branch information
tsuliwaensis authored Sep 12, 2024
1 parent 06f75fe commit 2bdd5d4
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"version": "2.0",
"description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.",
"icons": {
"16": "./assets/16.png",
"32": "./assets/32.png",
"48": "./assets/48.png",
"256": "./assets/256.png",
"512": "./assets/512.png"
"16": "/assets/16.png",
"32": "/assets/32.png",
"48": "/assets/48.png",
"256": "/assets/256.png",
"512": "/assets/512.png"
},
"content_scripts": [
{
Expand All @@ -24,11 +24,16 @@
],
"action": {
"default_icon": {
"16": "./assets/16.png",
"32": "./assets/32.png"
"16": "/assets/16.png",
"32": "/assets/32.png"
},
"default_title": "Eight Dollars - Options",
"default_popup": "options/options.html"
"default_popup": "/options/options.html"
},
"permissions": ["storage"]
"permissions": ["storage"],
"browser_specific_settings": {
"gecko": {
"id": "eight-dollars@github.com"
}
}
}

0 comments on commit 2bdd5d4

Please sign in to comment.