Is it possible to prevent closing the "EXT_NAME started debugging this browser" bar when using chrome.debugger
API? I'm developing an enterprise security extension to prevent navigation to certain websites and attach specific headers to all requests. declarativeNetRequest
and webNavigation
do not have all functionality I need for my use cases, so trying to use the debugger
API. End users though should not be able to turn it off.
The bar appears after I attach to a tab with the code below:
chrome.debugger.attach({ tabId }, '1.3');
Thanks.