mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
function reddenPage() {
|
|
document.body.style.backgroundColor = 'red';
|
|
}
|
|
|
|
chrome.action.onClicked.addListener((tab) => {
|
|
if (!tab.url.includes('chrome://')) {
|
|
chrome.scripting.executeScript({
|
|
target: { tabId: tab.id },
|
|
function: reddenPage
|
|
});
|
|
}
|
|
});
|