summaryrefslogtreecommitdiff
path: root/manifest.json
blob: 9f94fdb1c38af3ef6cedbde1d2f7a348ca81805b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  "manifest_version": 2,
  "name": "Zen Internet",
  "version": "1.7.2",
  "description": "Inject custom css from my repository in real time",
  "browser_specific_settings": {
    "gecko": {
      "id": "{91aa3897-2634-4a8a-9092-279db23a7689}"
    }
  },
  "icons": {
    "48": "assets/images/logo_48.png",
    "96": "assets/images/logo_96.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "<all_urls>",
    "webNavigation",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "Zen Internet"
  },
  "background": {
    "scripts": ["background.js"],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["inject-css.js"],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "theme.css",
    "data-viewer/data-viewer.html",
    "data-viewer/data-viewer.js",
    "data-viewer/data-viewer.css",
    "styling/*"
  ]
}