mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
6 lines
148 B
JavaScript
6 lines
148 B
JavaScript
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
|
|
if (!tab.url.match(/^about:/)) {
|
|
chrome.pageAction.show(tab.id);
|
|
}
|
|
});
|