Skip to content

Instantly share code, notes, and snippets.

@AshikNesin
Created July 19, 2017 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshikNesin/1574fc5bfdcc404a1376e4f661710329 to your computer and use it in GitHub Desktop.
Save AshikNesin/1574fc5bfdcc404a1376e4f661710329 to your computer and use it in GitHub Desktop.
Chrome Extension Close Current Page
chrome.tabs.query({ active: true, currentWindow: true }, tabs => {
chrome.tabs.remove(tabs[0].id);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment