aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 305eb674c4283b1e8cfa64f9a19d20c681fdc7b4 (plain) (blame)
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
{
  "manifest_version": 2,
  "name": "Vim Vixen",
  "description": "Vim Vixen",
  "version": "0.11",
  "icons": {
    "48": "resources/icon_48x48.png",
    "96": "resources/icon_96x96.png"
  },
  "applications": {
    "gecko": {
      "id": "vim-vixen@i-beam.org"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [ "<all_urls>" ],
      "js": [ "build/content.js" ],
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "permissions": [
    "history",
    "sessions",
    "storage",
    "tabs",
    "clipboardRead"
  ],
  "web_accessible_resources": [
    "build/console.html",
    "build/console.js"
  ],
  "options_ui": {
    "page": "build/settings.html"
  }
}