mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-05-04 18:48:36 +00:00
8 lines
216 B
TypeScript
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") })
|
|
}
|
|
})
|