mirror of
https://github.com/mue/mue.git
synced 2026-06-08 14:10:42 +02:00
11 lines
274 B
JavaScript
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')
|
|
});
|
|
}
|
|
});
|