From 6207d8a75e40aa76008edaffbbe138bbc9f6baa4 Mon Sep 17 00:00:00 2001 From: auric <104602845+ihateamongus@users.noreply.github.com> Date: Thu, 11 Sep 2025 15:13:57 -0500 Subject: Add dynamic Firefox accent color extension --- browsers/firefox/extension/manifest.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 browsers/firefox/extension/manifest.json (limited to 'browsers/firefox/extension/manifest.json') 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", ""], + "content_scripts": [ + { + "matches": [""], + "js": ["content.js"], + "run_at": "document_start" + } + ] +} -- cgit v1.2.3