Skip to content

Instantly share code, notes, and snippets.

@just-jeb
Created June 30, 2022 07:49
Show Gist options
  • Save just-jeb/0a36f5e50deeb0abbc299ca5a81787d3 to your computer and use it in GitHub Desktop.
Save just-jeb/0a36f5e50deeb0abbc299ca5a81787d3 to your computer and use it in GitHub Desktop.
chrome.runtime.onInstalled.addListener(() => {
chrome.webNavigation.onCompleted.addListener(() => {
chrome.tabs.query({ active: true, currentWindow: true }, ([{ id }]) => {
if (id) {
chrome.action.disable(id);
}
});
}, { url: [{ hostContains: 'google.com' }] });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment