aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: da08fd59c54a2c63dcd252b3a8a9696a4c5b4067 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
  "manifest_version": 2,
  "name": "Vimium",
  "version": "1.63.3",
  "description": "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.",
  "icons": {  "16": "icons/icon16.png",
              "48": "icons/icon48.png",
             "128": "icons/icon128.png" },
  "minimum_chrome_version": "51.0",
  "background": {
    "scripts": [
      "lib/utils.js",
      "lib/settings.js",
      "background_scripts/bg_utils.js",
      "background_scripts/commands.js",
      "background_scripts/exclusions.js",
      "background_scripts/completion_engines.js",
      "background_scripts/completion_search.js",
      "background_scripts/completion.js",
      "background_scripts/marks.js",
      "background_scripts/main.js"
    ]
  },
  "options_ui": {
    "page": "pages/options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "history",
    "clipboardRead",
    "clipboardWrite",
    "storage",
    "sessions",
    "notifications",
    "webNavigation",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["lib/utils.js",
             "lib/keyboard_utils.js",
             "lib/dom_utils.js",
             "lib/rect.js",
             "lib/handler_stack.js",
             "lib/settings.js",
             "lib/find_mode_history.js",
             "content_scripts/mode.js",
             "content_scripts/ui_component.js",
             "content_scripts/link_hints.js",
             "content_scripts/vomnibar.js",
             "content_scripts/scroller.js",
             "content_scripts/marks.js",
             "content_scripts/mode_insert.js",
             "content_scripts/mode_find.js",
             "content_scripts/mode_key_handler.js",
             "content_scripts/mode_visual.js",
             "content_scripts/hud.js",
             "content_scripts/mode_normal.js",
             "content_scripts/vimium_frontend.js"
            ],
      "css": ["content_scripts/vimium.css"],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": ["<all_urls>"],
      "js": ["content_scripts/injected.js"],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": ["file:///", "file:///*/"],
      "css": ["content_scripts/file_urls.css"],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "icons/browser_action_disabled.png",
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    "pages/vomnibar.html",
    "content_scripts/vimium.css",
    "pages/hud.html",
    "pages/help_dialog.html",
    "pages/completion_engines.html"
  ]
}