From c78b9ade06b5e52fb44762a276ed8ad68deec249 Mon Sep 17 00:00:00 2001 From: tophf Date: Sat, 19 Dec 2020 12:33:35 +0300 Subject: [PATCH] fixup! use executeScript for early data injection --- background/background.js | 3 +-- background/style-via-webrequest.js | 16 ++++++++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/background/background.js b/background/background.js index 91b472ea..5cc16fd5 100644 --- a/background/background.js +++ b/background/background.js @@ -5,6 +5,7 @@ define(require => { const {API, msg} = require('/js/msg'); const styleManager = require('./style-manager'); require('./background-api'); + require('./style-via-webrequest'); // These are loaded conditionally. // Each item uses `require` individually so IDE can jump to the source and track usage. @@ -15,8 +16,6 @@ define(require => { require(['./browser-cmd-hotkeys']), !FIREFOX && require(['./content-scripts']), - !FIREFOX && - require(['./style-via-webrequest']), chrome.contextMenus && require(['./context-menus']), styleManager.ready, diff --git a/background/style-via-webrequest.js b/background/style-via-webrequest.js index 0cf6e7cd..d5af7297 100644 --- a/background/style-via-webrequest.js +++ b/background/style-via-webrequest.js @@ -2,6 +2,7 @@ define(async require => { const {API} = require('/js/msg'); + const {CHROME} = require('/js/toolbox'); const prefs = require('/js/prefs'); const idCSP = 'patchCsp'; @@ -12,6 +13,11 @@ define(async require => { /** @type {Object} */ const stylesToPass = {}; const state = {}; + const injectedCode = CHROME && `${data => { + if (self.INJECTED !== 1) { // storing data only if apply.js hasn't run yet + window[Symbol.for('styles')] = data; + } + }}`; toggle(); prefs.subscribe([idXHR, idOFF, idCSP], toggle); @@ -38,8 +44,10 @@ define(async require => { xhr && chrome.webRequest.OnHeadersReceivedOptions.EXTRA_HEADERS, ].filter(Boolean)); } - if (!off) { + if (CHROME ? !off : xhr || csp) { chrome.webRequest.onBeforeRequest.addListener(prepareStyles, reqFilter); + } + if (CHROME && !off) { chrome.webNavigation.onCommitted.addListener(injectData, {url: [{urlPrefix: 'http'}]}); } state.csp = csp; @@ -63,11 +71,7 @@ define(async require => { chrome.tabs.executeScript(req.tabId, { frameId: req.frameId, runAt: 'document_start', - code: `(${data => { - if (self.INJECTED !== 1) { // storing data only if apply.js hasn't run yet - window[Symbol.for('styles')] = data; - } - }})(${str})`, + code: `(${injectedCode})(${str})`, }); if (!state.xhr) cleanUp(req); }