46 lines
926 B
JSON
46 lines
926 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "GallerySubscriber",
|
|
"version": "1.0.0",
|
|
"description": "Export cookies from supported platforms to GallerySubscriber for automated downloads",
|
|
|
|
"permissions": [
|
|
"cookies",
|
|
"storage",
|
|
"tabs",
|
|
"activeTab",
|
|
"webRequest",
|
|
"*://*.patreon.com/*",
|
|
"*://*.subscribestar.com/*",
|
|
"*://*.subscribestar.adult/*",
|
|
"*://*.hentai-foundry.com/*",
|
|
"*://*.discord.com/*"
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_popup": "popup/popup.html",
|
|
"default_icon": "icons/icon.svg",
|
|
"default_title": "GallerySubscriber"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": [
|
|
"lib/platforms.js",
|
|
"lib/cookies.js",
|
|
"lib/api.js",
|
|
"background/background.js"
|
|
],
|
|
"persistent": false
|
|
},
|
|
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"browser_style": true
|
|
},
|
|
|
|
"icons": {
|
|
"48": "icons/icon.svg",
|
|
"96": "icons/icon.svg"
|
|
}
|
|
}
|