mirror of
https://github.com/cupcakearmy/ora.git
synced 2025-09-05 15:50:40 +00:00
wrap in try and update more often
This commit is contained in:
@@ -5,10 +5,10 @@ import { insertLog, normalizeTimestamp } from '../shared/db'
|
||||
|
||||
browser.browserAction.onClicked.addListener(() => browser.tabs.create({ url: dashboard, active: true }))
|
||||
|
||||
const frequency = 3000
|
||||
const frequency = 1000
|
||||
|
||||
async function getAllTabs() {
|
||||
console.log('Checking...')
|
||||
try {
|
||||
const tabs = await browser.tabs.query({})
|
||||
const windows = await browser.windows.getAll()
|
||||
const active = tabs
|
||||
@@ -31,6 +31,7 @@ async function getAllTabs() {
|
||||
})
|
||||
})
|
||||
)
|
||||
} catch {}
|
||||
}
|
||||
|
||||
setInterval(() => {
|
||||
|
Reference in New Issue
Block a user