Files
code-box/background.ts
2024-07-15 08:59:21 +08:00

8 lines
216 B
TypeScript

export {}
chrome.runtime.onInstalled.addListener(function (object) {
if (object.reason === chrome.runtime.OnInstalledReason.INSTALL) {
chrome.tabs.create({ url: chrome.runtime.getURL("options.html") })
}
})