rapid interations of server side app and firefox extension

This commit is contained in:
Bryan Van Deusen
2026-01-24 22:52:51 -05:00
commit b9b8048a2d
81 changed files with 9675 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
{
"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",
"*://*.patreon.com/*",
"*://*.subscribestar.com/*",
"*://*.subscribestar.adult/*",
"*://*.hentai-foundry.com/*",
"*://*.discord.com/*"
],
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"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": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
}