mirror of
https://github.com/QuentinFuxa/WhisperLiveKit.git
synced 2026-03-07 14:23:18 +00:00
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
chrome.runtime.onInstalled.addListener((details) => {
|
|
if (details.reason.search(/install/g) === -1) {
|
|
return
|
|
}
|
|
chrome.tabs.create({
|
|
url: chrome.runtime.getURL("welcome.html"),
|
|
active: true
|
|
})
|
|
}) |