Files
mue/manifest/background-chrome.js
2021-08-20 19:20:59 +01:00

11 lines
275 B
JavaScript

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