forked from rinsuki/tst-change-close-tab-button-behavior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
52 lines (49 loc) · 1.63 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const TST_ID="[email protected]"
const sleep = msec => new Promise(resolve => setTimeout(resolve, msec))
async function submitToTST() {
var retryCount = 0
while (retryCount < 5) {
console.log("trying to submit addon information to TST...", retryCount)
await sleep(1000 * retryCount)
try {
await browser.runtime.sendMessage(TST_ID, {
type: "register-self",
name: browser.runtime.getManifest().name,
icons: browser.runtime.getManifest().icons,
listeningTypes: ["tab-clicked"]
})
console.log(["successful submit to TST"])
break
} catch(e) {
console.error(["Failed to connect with TST", e])
}
retryCount++
}
}
async function main() {
browser.runtime.onMessageExternal.addListener(async (message, sender) => {
if (sender.id !== TST_ID) return
console.log(message)
switch (message.type) {
case "tab-clicked":
if (message.closebox !== true) return
if (message.button !== 1) return
let tabIds = [message.tab.id]
// すべての子孫タブを閉じる
function loop(childrens) {
for (const childTab of childrens) {
tabIds.push(childTab.id)
loop(childTab.children)
}
}
loop(message.tab.children)
await browser.tabs.remove(tabIds)
return true
case "ready":
await submitToTST()
break
}
})
await submitToTST()
}
main()