diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-11 15:13:57 -0500 |
|---|---|---|
| committer | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-11 15:13:57 -0500 |
| commit | 6207d8a75e40aa76008edaffbbe138bbc9f6baa4 (patch) | |
| tree | 0ab78ec4155721ae8571fdcac435c9b84e232ca9 /browsers/firefox/extension/manifest.json | |
| parent | 2d10fcf6bb85732819385f20a9bc13c50036c0f7 (diff) | |
Add dynamic Firefox accent color extension
Diffstat (limited to 'browsers/firefox/extension/manifest.json')
| -rw-r--r-- | browsers/firefox/extension/manifest.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/browsers/firefox/extension/manifest.json b/browsers/firefox/extension/manifest.json new file mode 100644 index 0000000..abcbe08 --- /dev/null +++ b/browsers/firefox/extension/manifest.json @@ -0,0 +1,22 @@ +{ + "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" + } + ] +} |
