{ "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" } ] }