diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 14:34:49 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 21:46:13 -0500 |
commit | e173a71ba631533a2a0a64ffe4d8883d7300802e (patch) | |
tree | 4bb0a969d30a0cc1ad27759f9bc69a931d013e5f | |
parent | 3d27e80ae646bcc9c421cbc8aa281008f47c8992 (diff) |
Fix CSS injection on about:blank pages
-rw-r--r-- | ext/bg/js/backend.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index eeed841c..458ea483 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -512,13 +512,15 @@ class Backend { file: value, runAt: 'document_start', cssOrigin: 'author', - allFrames: false + allFrames: false, + matchAboutBlank: true } : { code: value, runAt: 'document_start', cssOrigin: 'user', - allFrames: false + allFrames: false, + matchAboutBlank: true } ); if (typeof frameId === 'number') { |