mue/manifest/background.js

16 lines
387 B
JavaScript
Raw Permalink Normal View History

/* eslint-disable no-use-before-define */
/* eslint-disable no-undef */
2024-03-19 21:45:17 +00:00
if (typeof browser === 'undefined') {
var browser = chrome;
}
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'),
});
}
});