Files
gcal-no-alert/background.js
2026-02-27 13:25:04 -05:00

11 lines
357 B
JavaScript

chrome.runtime.onInstalled.addListener(async () => {
await chrome.scripting.unregisterContentScripts({ ids: ["suppress-alert"] }).catch(() => {});
await chrome.scripting.registerContentScripts([{
id: "suppress-alert",
matches: ["https://calendar.google.com/*"],
js: ["suppress.js"],
runAt: "document_start",
world: "MAIN"
}]);
});