This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.

8 lines
364 B
JavaScript
Raw Normal View History

chrome.browserAction.setBadgeText({text: "on"});
//При нажатии иконки расширения вызывается данная функция
chrome.browserAction.onClicked.addListener(function() {
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, {command: "show"});
});
});