You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
As of the latest Edge Beta update, chrome.webRequest doesn't notify of ping requests. This breaks extension functionality for detecting tracking via the Beacon API.
Last known working version: Microsoft Edge 131.0.2903.51 beta
First known failing version: Microsoft Edge 132.0.2957.11 beta
To Reproduce
I created a mock extension that simply logs all webRequests: Mock-Extension.zip
The background script:
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
console.log("webRequest onBeforeRequest:", details);
console.log(`Request made to: ${details.url}`);
},
{urls: ["<all_urls>"]},
["requestBody"]
);
Upload the unpacked mock extension to Edge Beta
Inspect the mock extension's background page to see the webRequest console logs
Repeat above steps on Edge to see the correct behavior: the background page console should contain logs for "Request made to: https://privacybadger-tests.eff.org/"
The text was updated successfully, but these errors were encountered:
Describe the bug
As of the latest Edge Beta update, chrome.webRequest doesn't notify of ping requests. This breaks extension functionality for detecting tracking via the Beacon API.
Last known working version: Microsoft Edge 131.0.2903.51 beta
First known failing version: Microsoft Edge 132.0.2957.11 beta
To Reproduce
Expected behavior
The text was updated successfully, but these errors were encountered: