diff options
| author | Stephen Blott | 2015-02-11 16:19:01 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2015-02-11 16:23:37 +0000 | 
| commit | 63d58874619e70f7975c1ee446efc8cc328a2608 (patch) | |
| tree | 570e0aebe2526805b6aa33f05605a1f129d099f9 | |
| parent | f0e0ccd17beb5dd99f85b212781d3aa9b84966c0 (diff) | |
| download | vimium-63d58874619e70f7975c1ee446efc8cc328a2608.tar.bz2 | |
Revert "More informative output for cake target package-custom-crx."
This reverts commit f0e0ccd17beb5dd99f85b212781d3aa9b84966c0.
Ooops.  Sorry.  I didn't spot that the package-custom-crx target
rewrites manifest.json.
This replaces manifest.json.  Unfortunately, it'll mess with any
existing PRs which change manifest.json, and generates git junk.
| -rw-r--r-- | manifest.json | 72 | 
1 files changed, 71 insertions, 1 deletions
| diff --git a/manifest.json b/manifest.json index 42271b5c..beb68530 100644 --- a/manifest.json +++ b/manifest.json @@ -1 +1,71 @@ -{"manifest_version":2,"name":"Vimium","version":"1.49","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"},"background":{"scripts":["lib/utils.js","background_scripts/commands.js","lib/clipboard.js","background_scripts/sync.js","background_scripts/settings.js","background_scripts/exclusions.js","background_scripts/completion.js","background_scripts/marks.js","background_scripts/main.js"]},"options_page":"pages/options.html","permissions":["tabs","bookmarks","history","clipboardRead","storage","sessions","<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/clipboard.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.js","content_scripts/mode_insert.js","content_scripts/mode_passkeys.js","content_scripts/mode_find.js","content_scripts/mode_visual_edit.js","content_scripts/vimium_frontend.js"],"css":["content_scripts/vimium.css"],"run_at":"document_start","all_frames":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"],"update_url":"http://philc.github.com/vimium/updates.xml"}
\ No newline at end of file +{ +  "manifest_version": 2, +  "name": "Vimium", +  "version": "1.49", +  "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" }, +  "background": { +    "scripts": [ +      "lib/utils.js", +      "background_scripts/commands.js", +      "lib/clipboard.js", +      "background_scripts/sync.js", +      "background_scripts/settings.js", +      "background_scripts/exclusions.js", +      "background_scripts/completion.js", +      "background_scripts/marks.js", +      "background_scripts/main.js" +    ] +  }, +  "options_page": "pages/options.html", +  "permissions": [ +    "tabs", +    "bookmarks", +    "history", +    "clipboardRead", +    "storage", +    "sessions", +    "<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/clipboard.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.js", +             "content_scripts/mode_insert.js", +             "content_scripts/mode_passkeys.js", +             "content_scripts/mode_find.js", +             "content_scripts/mode_visual_edit.js", +             "content_scripts/vimium_frontend.js" +            ], +      "css": ["content_scripts/vimium.css"], +      "run_at": "document_start", +      "all_frames": 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" +  ] +} | 
