« get me outta code hell

interactive-bgm - Browser extension that adds background music based on the site you're browsing
about summary refs log tree commit diff
path: root/extension/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
new file mode 100644
index 0000000..27cafda
--- /dev/null
+++ b/extension/manifest.json
@@ -0,0 +1,36 @@
+{
+    "manifest_version": 2,
+    "name": "Interactive BGM",
+    "version": "1.0",
+
+    "description": "Adds a red border to all webpages matching mozilla.org.",
+
+    "permissions": [
+        "activeTab",
+        "nativeMessaging"
+    ],
+
+    "applications": {
+        "gecko": {
+            "id": "interactive_bgm@florrie.ed1.club",
+            "strict_min_version": "50.0"
+        }
+    },
+
+    "browser_action": {
+        "default_icon": "icons/beasts-32.png",
+        "default_title": "Interactive BGM",
+        "default_popup": "popup/index.html"
+    },
+
+    "content_scripts": [
+        {
+            "matches": ["<all_urls>"],
+            "js": ["borderify.js"]
+        }
+    ],
+
+    "background": {
+        "scripts": ["background.js"]
+    }
+}