diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 1 | ||||
| -rw-r--r-- | manifest.json | 2 | 
3 files changed, 3 insertions, 1 deletions
| @@ -193,6 +193,7 @@ map Y Marks.activateGotoMode swap  - Other minor versions:      - 1.62.2: Fixes [#2868](https://github.com/philc/vimium/issues/2868) (`createTab` with multiple URLs). +    - 1.62.4: Fixes bug affecting the enabled state, and really fix `createTab`.  1.61 (2017-10-27) diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 432fa7a2..3a9e182d 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -146,6 +146,7 @@ initializePreDomReady = ->      linkHintsMessage: (request) -> HintCoordinator[request.messageType] request    chrome.runtime.onMessage.addListener (request, sender, sendResponse) -> +    request.isTrusted = true      # Some requests intended for the background page are delivered to the options page too; ignore them.      unless request.handler and not request.name        # Some request are handled elsewhere; ignore them too. diff --git a/manifest.json b/manifest.json index 86223848..ce760d2e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@  {    "manifest_version": 2,    "name": "Vimium", -  "version": "1.62.3", +  "version": "1.62.4",    "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", | 
