aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: dfb4ae921f876c9cccb63e3611a4991c7fa06549 (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
{
  "manifest_version": 2,
  "name": "Vim Vixen",
  "description": "Vim Vixen",
  "version": "0.0.1",
  "content_scripts": [
    {
      "matches": [ "http://*/*", "https://*/*" ],
      "js": [ "build/index.js" ]
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "permissions": [
    "sessions",
    "tabs",
    "history"
  ],
  "web_accessible_resources": [
    "build/console.html"
  ]
}