| Index: ext/background.js | 
| =================================================================== | 
| --- a/ext/background.js | 
| +++ b/ext/background.js | 
| @@ -588,17 +588,17 @@ | 
| type.toUpperCase(), | 
| new Page({id: details.tabId}), | 
| frame | 
| ); | 
| if (results.indexOf(false) != -1) | 
| return {cancel: true}; | 
| } | 
| - }, {urls: ["<all_urls>"]}, ["blocking"]); | 
| + }, {urls: ["https://*/*", "http://*/*", "ws://*/*", "wss://*/*"]}, ["blocking"]); | 
| /* Message passing */ | 
| chrome.runtime.onMessage.addListener((message, rawSender, sendResponse) => | 
| { | 
| let sender = {}; |