diff options
| author | Phil Crosby | 2014-08-16 10:27:16 -0700 |
|---|---|---|
| committer | Phil Crosby | 2014-08-16 10:27:16 -0700 |
| commit | 491f4b18ab841cb3f5a61661fb457281e9d4a3ee (patch) | |
| tree | be4441f8a8c8e2d9985473c72c485780f72eb061 | |
| parent | 39dbeaa9b70c59d4da1a8278c57e778757fe59a8 (diff) | |
| parent | 9784b4d8f4a18e794a78c083653e9b00cb3cb332 (diff) | |
| download | vimium-491f4b18ab841cb3f5a61661fb457281e9d4a3ee.tar.bz2 | |
Merge pull request #1102 from mrmr1993/fixFileUrlSelection
Apply search fix on file:// directory entries
| -rw-r--r-- | manifest.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifest.json b/manifest.json index b134ceaa..9a4e0167 100644 --- a/manifest.json +++ b/manifest.json @@ -46,9 +46,10 @@ "all_frames": true }, { - "matches": ["file://*"], + "matches": ["file:///", "file:///*/"], "css": ["content_scripts/file_urls.css"], - "run_at": "document_start" + "run_at": "document_start", + "all_frames": true } ], "browser_action": { |
