1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00

Done extension UI and basic interactions

This commit is contained in:
Michael Gordeev
2020-03-10 19:41:05 +03:00
commit 1480e88081
30 changed files with 559 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
chrome.tabs.query({ active: true, currentWindow: true }, function(tabs)
{
chrome.tabs.sendMessage(
tabs[0].id,
{ },
function()
{
window.close();
}
);
});