bc100-autofill/bg.js

20 lines
679 B
JavaScript
Raw Normal View History

2024-05-01 15:35:24 +02:00
browser.runtime.onInstalled.addListener((ev) => {
if (ev.reason == "update") {
2024-05-03 23:23:33 +02:00
updateIsSignificant(ev.previousVersion).then(
v => {
if (v) launchInfoPage();
}
)
2024-05-01 15:35:24 +02:00
} else if (ev.reason == "install") {
browser.runtime.openOptionsPage()
}
})
async function updateIsSignificant(previousVersion) {
const significantUpdates = ["0.1.0", "0.2.0", "0.3.0"];
let currentVersion = (await browser.management.getSelf()).version;
2024-05-03 23:23:33 +02:00
return (currentVersion in significantUpdates) || currentVersion.endsWith('0');
2024-05-01 15:35:24 +02:00
}
function launchInfoPage(){
browser.tabs.create({url: "/changelog.htm", active: false})
}