diff --git a/src/manifest/template.firefox.json b/src/manifest/template.firefox.json new file mode 100644 index 0000000..a424688 --- /dev/null +++ b/src/manifest/template.firefox.json @@ -0,0 +1,29 @@ +{ + "name": "eBook Scraper", + "version": "[dynamically set by plugin]", + "description": "Save eBook pages as a PDF", + "manifest_version": 2, + "background": { + "scripts": ["js/background.js"] + }, + "browser_action": { + "default_popup": "popup.html", + "default_icon": { + "512": "icon-512.png" + } + }, + "icons": { + "512": "icon-512.png", + "128": "icon-128.png", + "48": "icon-48.png", + "16": "icon-16.png" + }, + "permissions": ["tabs", "storage", "webRequest", "webRequestBlocking"], + "content_scripts": [], + "browser_specific_settings": { + "gecko": { + "id": "ebook-scraper@ebook-scraper.com", + "strict_min_version": "109.0" + } + } +}