diff --git a/extension/manifest-chrome.json b/extension/manifest-chrome.json new file mode 100644 index 0000000..02dd2e8 --- /dev/null +++ b/extension/manifest-chrome.json @@ -0,0 +1,26 @@ +{ + "manifest_version": 3, + "name": "TubeArchivist Companion", + "description": "Interact with your selhosted TA server.", + "version": "0.0.1", + "icons": { + "48": "/images/icon.png", + "128": "/images/icon128.png" + }, + "action": { + "default_popup": "index.html" + }, + "permissions": [ + "storage", + "tabs" + ], + "content_scripts": [ + { + "matches": ["https://www.youtube.com/*"], + "js": ["script.js"] + } + ], + "background": { + "service_worker": "background.js" + } +} diff --git a/extension/manifest.json b/extension/manifest-firefox.json similarity index 100% rename from extension/manifest.json rename to extension/manifest-firefox.json