summaryrefslogtreecommitdiff
path: root/browsers/firefox/extension/manifest.json
diff options
context:
space:
mode:
authorauric <auric7@protonmail.com>2025-09-11 18:00:59 -0500
committerauric <auric7@protonmail.com>2025-09-11 18:00:59 -0500
commit38a82bc7e3569b7502a652c9f3fea37a017c0ccb (patch)
treedb4551326bf98c02a099c5df213a1dff047c2ca8 /browsers/firefox/extension/manifest.json
parent61eaeb858dbe12dcf1596b725a3bab1df66569f4 (diff)
Remove browsers
Diffstat (limited to 'browsers/firefox/extension/manifest.json')
-rw-r--r--browsers/firefox/extension/manifest.json22
1 files changed, 0 insertions, 22 deletions
diff --git a/browsers/firefox/extension/manifest.json b/browsers/firefox/extension/manifest.json
deleted file mode 100644
index abcbe08..0000000
--- a/browsers/firefox/extension/manifest.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "manifest_version": 2,
- "name": "Accent Color Updater",
- "version": "0.1",
- "description": "Updates CSS variable --accent-color using a native host",
- "applications": {
- "gecko": {
- "id": "accent-color@example.com"
- }
- },
- "background": {
- "scripts": ["background.js"]
- },
- "permissions": ["nativeMessaging", "tabs", "<all_urls>"],
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["content.js"],
- "run_at": "document_start"
- }
- ]
-}