From 1410ec2dff85f346e47b6b0651c9344a08a0c28b Mon Sep 17 00:00:00 2001 From: sienori Date: Sat, 2 May 2020 14:48:58 +0900 Subject: [PATCH] Allow content script to run on about:blank --- src/manifest-chrome.json | 1 + src/manifest-firefox.json | 1 + 2 files changed, 2 insertions(+) diff --git a/src/manifest-chrome.json b/src/manifest-chrome.json index 12029fb..a955aba 100644 --- a/src/manifest-chrome.json +++ b/src/manifest-chrome.json @@ -41,6 +41,7 @@ "content_scripts": [ { "all_frames": true, + "match_about_blank": true, "matches": [ "http://*/*", "https://*/*", diff --git a/src/manifest-firefox.json b/src/manifest-firefox.json index a4829d4..251d737 100644 --- a/src/manifest-firefox.json +++ b/src/manifest-firefox.json @@ -46,6 +46,7 @@ "content_scripts": [ { "all_frames": true, + "match_about_blank": true, "matches": [ "http://*/*", "https://*/*",