Google Chrome Extension - Stop Browser Navigation

How to stop browser navigation with Google Chrome extension?

chrome.experimental.webRequest.onBeforeRequest.addListener(function(details) { alert("webRequest.onBeforeRequest -- Navigation blocked"); return {cancel: details.url.indexOf("bing.com") != -1}; }, null, ["blocking"]); 

The code above does not work!

+4
source share

Source: https://habr.com/ru/post/1386329/


All Articles