Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lamrongol/b3941613a49fdb7d26128434ff8c6f90 to your computer and use it in GitHub Desktop.
Save lamrongol/b3941613a49fdb7d26128434ff8c6f90 to your computer and use it in GitHub Desktop.
chrome.windows.getAll({populate: true, windowTypes: ['normal']}, (windows) => {
const tabId = windows[0].tabs[0].id;
chrome.debugger.attach({ tabId: tabId }, '1.2', () => {
chrome.debugger.sendCommand(
{ tabId: tabId },
'Browser.close'
);
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment