mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
chrome.tabs.query({ active: true, currentWindow: true }, function(tabs)
|
|
{
|
|
chrome.tabs.sendMessage(
|
|
tabs[0].id,
|
|
{ },
|
|
function()
|
|
{
|
|
window.close();
|
|
}
|
|
);
|
|
}); |