We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b0e87 commit ea11a7aCopy full SHA for ea11a7a
background.js
@@ -228,8 +228,8 @@ function notify(message) {
228
* Make it "blocking" so we can modify the headers.
229
*/
230
function addListener() {
231
- let target = config.target_page;
232
- if ((target === "*") || (target === "") || (target === " ")) target = "<all_urls>";
+ let target = config.target_page.replace(' ','');
+ if ((target === "*") || (target === "")) target = "<all_urls>";
233
234
// need to had "extraHeaders" option for chrome https://developer.chrome.com/extensions/webRequest#life_cycle_footnote
235
if (isChrome) {
0 commit comments