summaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..eb58268
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,35 @@
+{
+ "manifest_version": 2,
+ "name": "stash-webext",
+ "description": "Companion web extension for Stash",
+ "version": "0.0.1",
+ "permissions": [
+ "tabs",
+ "storage",
+ "<all_urls>"
+ ],
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": true,
+ "type": "module"
+ },
+ "content_scripts": [
+ {
+ "matches": ["<all_urls>"],
+ "js": ["content.js"]
+ }
+ ],
+ "browser_action": {
+ "default_icon": "icons/ready.png",
+ "default_popup": "popup.html"
+ },
+ "options_ui": {
+ "page": "options.html",
+ "open_in_tab": false
+ },
+ "browser_specific_settings": {
+ "gecko": {
+ "id": "@stash-webext"
+ }
+ }
+}