aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 8efbe34ce67448b497fbdebc8132a9561d1a24a6 (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
44
45
46
47
48
49
50
51
52
{
  "manifest_version": 2,
  "name": "Vim Vixen",
  "description": "Vim Vixen",
  "version": "1.2.3",
  "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_start",
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "permissions": [
    "history",
    "sessions",
    "storage",
    "tabs",
    "clipboardRead",
    "notifications",
    "bookmarks",
    "browserSettings"
  ],
  "web_accessible_resources": [
    "build/console.html",
    "build/console.js"
  ],
  "options_ui": {
    "page": "build/settings.html"
  },
  "browser_action": {
    "default_icon": {
      "32": "resources/enabled_32x32.png"
    },
    "default_title": "Vim Vixen"
  }
}