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

11 lines
274 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: chromeruntime.getURL('index.html')
});
}
});