From 9837397a89b985647416551cfe8b7da578fda1ad Mon Sep 17 00:00:00 2001 From: mrmr1993 Date: Sat, 26 Jul 2014 23:45:53 +0100 Subject: Apply search fix on file:// directory entries --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index b134ceaa..f1206bd8 100644 --- a/manifest.json +++ b/manifest.json @@ -46,7 +46,7 @@ "all_frames": true }, { - "matches": ["file://*"], + "matches": ["file:///", "file:///*/"], "css": ["content_scripts/file_urls.css"], "run_at": "document_start" } -- cgit v1.2.3 From 9784b4d8f4a18e794a78c083653e9b00cb3cb332 Mon Sep 17 00:00:00 2001 From: mrmr1993 Date: Sun, 27 Jul 2014 00:01:13 +0100 Subject: Run file:// search fix on directory listings in all frames --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index f1206bd8..9a4e0167 100644 --- a/manifest.json +++ b/manifest.json @@ -48,7 +48,8 @@ { "matches": ["file:///", "file:///*/"], "css": ["content_scripts/file_urls.css"], - "run_at": "document_start" + "run_at": "document_start", + "all_frames": true } ], "browser_action": { -- cgit v1.2.3