mirror of
https://github.com/mue/mue.git
synced 2026-06-08 14:10:42 +02:00
- Make author div not load if quote is empty - photoinformation taking too much of the screen - more transitions and consistent transitions - running prettier across all files Co-authored-by: David Ralph <me@davidcralph.co.uk>
11 lines
276 B
JavaScript
11 lines
276 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'),
|
|
});
|
|
}
|
|
});
|