Files
mue/manifest/background-firefox.js
2021-08-14 15:01:45 +01:00

11 lines
279 B
JavaScript

/* eslint-disable no-undef */
browser.runtime.setUninstallURL('https://muetab.com/uninstall');
browser.runtime.onInstalled.addListener((details) => {
if (details.reason === 'install') {
browser.tabs.create({
url: browser.runtime.getURL('index.html')
});
}
});