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

css - Text drops down with smaller window -

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

ruby on rails - Authlogic - how to make a registration and don't log in the new account? -