Skip to content

Commit

Permalink
Update alternate manifests
Browse files Browse the repository at this point in the history
to reflect the new organization of the project.
  • Loading branch information
alanhkarp committed Jun 18, 2024
1 parent 733ff92 commit 94cdebe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions manifestChrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
"description": "Don't remember your passwords. Don't store them. Calculate them!",
"version": "3.0",
"background": {
"service_worker": "bg.js",
"service_worker": "src/bg.js",
"type": "module"
},
"action": {
"default_icon": "ssplogo.png",
"default_icon": "images/ssplogo.png",
"default_popup": "ssp.html"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"run_at": "document_idle",
"js": [
"findpw.js"
"src/findpw.js"
],
"all_frames": true
}
Expand Down
8 changes: 4 additions & 4 deletions manifestFirefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
"name": "Site Password",
"short_name": "Site Password for Firefox",
"description": "Don't remember your passwords. Don't store them. Calculate them!",
"version": "1.5.0",
"version": "3.0",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"page": "./bg.html"
"page": "bg.html"
},
"action": {
"default_icon": "ssplogo.png",
"default_icon": "images/ssplogo.png",
"default_popup": "ssp.html"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"run_at": "document_idle",
"js": [
"findpw.js"
"src/findpw.js"
],
"all_frames": true
}
Expand Down
6 changes: 3 additions & 3 deletions manifestSafari.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
"description": "Don't remember your passwords. Don't store them. Calculate them!",
"version": "1.5.0",
"background": {
"page": "./bg.html"
"page": "bg.html"
},
"action": {
"default_icon": "ssplogo.png",
"default_icon": "images/ssplogo.png",
"default_popup": "ssp.html"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"run_at": "document_idle",
"js": [
"findpw.js"
"src/findpw.js"
],
"all_frames": true
}
Expand Down

0 comments on commit 94cdebe

Please sign in to comment.