javascript - Is there a way to disable chrome_url_override via a Chrome Extension? -


here's background on question: have chrome extension overrides user's new tab extension. using chrome_url_overrides permission override newtab extension.

i need way disable feature since of our users want show our extension when choose to.

i looked through google chrome extension apis , not find programmatic way of doing it.

you use local setting detect if user wants see new tab page or not. if don't want new experience, redirect newtab internal newtab via:

chrome.tabs.update({   url: 'chrome-internal://newtab/' }); 

see: https://stackoverflow.com/a/15016689/76734


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -