-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-worker.js
41 lines (36 loc) · 1.02 KB
/
service-worker.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
function log(...rest) {
return console.log(...rest)
}
async function getCurrentTab() {
let queryOptions = { active: true, currentWindow: true }
let [tab] = await chrome.tabs.query(queryOptions)
return tab
}
chrome.runtime.onInstalled.addListener(async () => {
log('extension installed')
// const tab = await getCurrentTab()
// log(tab)
})
chrome.tabs.onUpdated.addListener(async (...rest) => {
log('tab update', rest)
const [tabId, changeInfo, tab] = rest
if (/https:\/\/www.tiktok.com\/.+\/video\//.test(tab.url)) {
log('onUpdate match')
chrome.scripting.executeScript({
target: { tabId: tab.id },
function: autoNext,
})
}
})
function autoNext() {
if (!window.autoNextFn) {
window.autoNextFn = e => {
const nextArrow = document.querySelector('[data-e2e="arrow-right"]')
console.log('next', nextArrow, e)
if (e.target.tagName === 'VIDEO' && nextArrow) {
nextArrow.click()
}
}
}
document.addEventListener('ended', window.autoNextFn, true)
}