Skip to content

Instantly share code, notes, and snippets.

@alejandrocoding
Created June 12, 2020 17:59
Show Gist options
  • Save alejandrocoding/7be37306c1a98d9a9b52a022fd756e9d to your computer and use it in GitHub Desktop.
Save alejandrocoding/7be37306c1a98d9a9b52a022fd756e9d to your computer and use it in GitHub Desktop.
Chrome extension background.ts sample to filter out by github.com domain
chrome.runtime.onInstalled.addListener(() => {
chrome.webNavigation.onCompleted.addListener(() => {
chrome.tabs.query({ active: true, currentWindow: true }, ([{ id }]) => {
chrome.pageAction.show(id);
});
}, { url: [{ urlMatches: 'https://github.com/' }] });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment