Files
auto-archiver-extension/source/manifest.json
msramalho 93d47d2ee3 first MVP
2023-02-21 13:58:10 +00:00

35 lines
908 B
JSON

{
"name": "Auto-archiver extension",
"version": "0.0.1",
"description": "A gateway to effective archiving of online content, including behind private platforms. ",
"homepage_url": "https://github.com/bellingcat/auto-archiver-extension",
"manifest_version": 3,
"minimum_chrome_version": "100",
"browser_specific_settings": {
"gecko": {
"id": "todo@github.io",
"strict_min_version": "100.0"
}
},
"icons": {
"128": "img/icon.png"
},
"permissions": [
"storage", "tabs"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"action": {
"default_popup": "html/popup.html"
},
"content_scripts": [],
"options_ui": {
"browser_style": true,
"page": "html/options.html"
}
}