summaryrefslogtreecommitdiff
path: root/browsers/firefox/extension/manifest.json
blob: abcbe0817a1c938f9f0fc014423ebe03c7dad2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"
    }
  ]
}