diff options
| author | Stephen Blott | 2017-12-15 12:44:42 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2017-12-15 12:44:44 +0000 | 
| commit | 14f755cecdd548ba9fb82a04d3b708c75982a786 (patch) | |
| tree | a96fe70b2b98f3861513ed82a104799f42963906 | |
| parent | 1812e5928ddd104c58352c36906ae37e912ea1b0 (diff) | |
| download | vimium-14f755cecdd548ba9fb82a04d3b708c75982a786.tar.bz2 | |
Fix #2871.
This omission was causing link hints not to work on Google's Inbox (and
presumably elsewhere, too).
| -rw-r--r-- | manifest.json | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/manifest.json b/manifest.json index 99333549..7b2b9dd8 100644 --- a/manifest.json +++ b/manifest.json @@ -73,7 +73,8 @@        "matches": ["<all_urls>"],        "js": ["content_scripts/injected.js"],        "run_at": "document_start", -      "all_frames": true +      "all_frames": true, +      "match_about_blank": true      },      {        "matches": ["file:///", "file:///*/"], | 
