aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json14
1 files changed, 10 insertions, 4 deletions
diff --git a/manifest.json b/manifest.json
index beb68530..f0c51117 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Vimium",
- "version": "1.49",
+ "version": "1.51",
"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",
@@ -9,11 +9,12 @@
"background": {
"scripts": [
"lib/utils.js",
+ "lib/settings.js",
"background_scripts/commands.js",
"lib/clipboard.js",
- "background_scripts/sync.js",
- "background_scripts/settings.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"
@@ -27,6 +28,8 @@
"clipboardRead",
"storage",
"sessions",
+ "notifications",
+ "webNavigation",
"<all_urls>"
],
"content_scripts": [
@@ -48,6 +51,7 @@
"content_scripts/mode_passkeys.js",
"content_scripts/mode_find.js",
"content_scripts/mode_visual_edit.js",
+ "content_scripts/hud.js",
"content_scripts/vimium_frontend.js"
],
"css": ["content_scripts/vimium.css"],
@@ -66,6 +70,8 @@
"default_popup": "pages/popup.html"
},
"web_accessible_resources": [
- "pages/vomnibar.html"
+ "pages/vomnibar.html",
+ "content_scripts/vimium.css",
+ "pages/hud.html"
]
}