| Index: lib/devtools.js |
| =================================================================== |
| --- a/lib/devtools.js |
| +++ b/lib/devtools.js |
| @@ -341,17 +341,17 @@ |
| return; |
| let inspectedTabId = parseInt(match[1], 10); |
| let localOnBeforeRequest = onBeforeRequest.bind(); |
| chrome.webRequest.onBeforeRequest.addListener( |
| localOnBeforeRequest, |
| { |
| - urls: ["<all_urls>"], |
| + urls: ["http://*/*", "https://*/*"], |
| types: ["main_frame"], |
| tabId: inspectedTabId |
| } |
| ); |
| if (!hasPanels()) |
| { |
| ext.pages.onLoading.addListener(onLoading); |