faex/public/manifest.json
2024-08-08 14:12:51 +02:00

36 lines
No EOL
645 B
JSON

{
"manifest_version": 3,
"name": "FAEX",
"description": "FurAFfinity Gallery Exporter",
"version": "1.0",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_icon": {
"16": "icon.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.furaffinity.net/*"
],
"js": [
"js/vendor.js",
"js/content_script.js"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage", "cookies"
],
"host_permissions": [
"*://*.furaffinity.net/*"
]
}