This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: downgrade to manifest v2 for firefox
- Loading branch information
1 parent
d9807b6
commit 79d3e43
Showing
5 changed files
with
204 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Amazon Alternatives", | ||
"short_name": "amazon_alts", | ||
"description": "Find a book or something else in Amazon, et fetch it elswehere!", | ||
"homepage_url": "https://github.com/amazon-alternatives/extension", | ||
"version": "1.12.8", | ||
"author": "Adrian Tombu <adrian@otso.fr>", | ||
"icons": { | ||
"48": "assets/icon-48.png", | ||
"96": "assets/icon-96.png" | ||
}, | ||
"browser_action": { | ||
"default_icon": { | ||
"16": "assets/icon-16.png", | ||
"32": "assets/icon-32.png", | ||
"64": "assets/icon-64.png" | ||
}, | ||
"default_title": "Amazon Alternatives", | ||
"default_popup": "popup.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"*://*.amazon.fr/*", | ||
"*://*.amazon.com/*", | ||
"*://*.amazon.co.uk/*", | ||
"*://*.amazon.com.mx/*", | ||
"*://*.amazon.co.jp/*", | ||
"*://*.amazon.it/*", | ||
"*://*.amazon.in/*", | ||
"*://*.amazon.es/*", | ||
"*://*.amazon.cn/*", | ||
"*://*.amazon.ca/*", | ||
"*://*.amazon.com.br/*", | ||
"*://*.amazon.de/*", | ||
"*://*.amazon.com.au/*" | ||
], | ||
"js": ["app.js"], | ||
"css": ["styles.css"], | ||
"run_at": "document_end" | ||
} | ||
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "{69085149-a34e-4f46-b6ef-ff4ea64bce4c}" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Amazon Alternatives", | ||
"short_name": "amazon_alts", | ||
"description": "Find a book or something else in Amazon, et fetch it elswehere!", | ||
"homepage_url": "https://github.com/amazon-alternatives/extension", | ||
"version": "1.12.8", | ||
"author": "Adrian Tombu <adrian@otso.fr>", | ||
"icons": { | ||
"48": "assets/icon-48.png", | ||
"96": "assets/icon-96.png" | ||
}, | ||
"action": { | ||
"default_icon": { | ||
"16": "assets/icon-16.png", | ||
"32": "assets/icon-32.png", | ||
"64": "assets/icon-64.png" | ||
}, | ||
"default_title": "Amazon Alternatives", | ||
"default_popup": "popup.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"*://*.amazon.fr/*", | ||
"*://*.amazon.com/*", | ||
"*://*.amazon.co.uk/*", | ||
"*://*.amazon.com.mx/*", | ||
"*://*.amazon.co.jp/*", | ||
"*://*.amazon.it/*", | ||
"*://*.amazon.in/*", | ||
"*://*.amazon.es/*", | ||
"*://*.amazon.cn/*", | ||
"*://*.amazon.ca/*", | ||
"*://*.amazon.com.br/*", | ||
"*://*.amazon.de/*", | ||
"*://*.amazon.com.au/*" | ||
], | ||
"js": ["app.js"], | ||
"css": ["styles.css"], | ||
"run_at": "document_end" | ||
} | ||
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "{69085149-a34e-4f46-b6ef-ff4ea64bce4c}" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.