diff --git a/README.md b/README.md index 82d0cbe9..de30ea05 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ - +![Logo](assets/logo/logo_horizontal.png) # Mue -[![Codacy Badge](https://api.codacy.com/project/badge/Grade/fba7ad7fc6e14fe0bc2a8d53dbf0bb41)](https://www.codacy.com/app/ohlookitsderpy/Mue?utm_source=github.com&utm_medium=referral&utm_content=ohlookitsderpy/Mue&utm_campaign=Badge_Grade) [![Discord Badge](https://discordapp.com/api/guilds/336039472250748928/widget.png)](https://discord.gg/HJmmmTB) -Buy me a coffee at ko-fi.com -Become a patron on patreon.com - Fast, open and free-to-use new tab page for most modern browsers. *This is the code for the extension. If you are looking for the website code, please go [here](https://github.com/TurboMarshmello/muetab.xyz).* @@ -20,17 +16,17 @@ Fast, open and free-to-use new tab page for most modern browsers. * ~~Settings feature - enable/disable features!~~ * Search bar, ~~update modal, copy button and more!~~ -* Mue has been recently rewritten with React and is missing the features that are crossed out * +*Mue has been recently rewritten with React and is missing the features that are crossed out* ## Installation ### Chrome - +[![Chrome Web Store Logo](assets/chrome.png)](https://chrome.google.com/webstore/detail/mue/bngmbednanpcfochchhgbkookpiaiaid) Link: [Chrome Web Store](https://chrome.google.com/webstore/detail/mue/bngmbednanpcfochchhgbkookpiaiaid) Development: Read the [Development](#development) section. ### Firefox - +[![Firefox Add-ons Logo](assets/firefox.png)](https://addons.mozilla.org/firefox/addon/mue) Link: [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/mue) @@ -103,7 +99,7 @@ Once I find a method to do it automatically, I will update this section accordin ## Screenshot *Will be updated if needed* - +![Screenshot](assets/screenshot.jpg) ## Credits ### Maintainers @@ -140,6 +136,6 @@ Candystick - Portuguese (Some Quotes) and all the contributors <3 # License -Code, Documentation - MIT +Code, Documentation - [MIT](LICENSE) -Logos - CC-BY-4.0 +Logos - [CC-BY-4.0](assets/logo/LICENSE) diff --git a/assets/kofi.png b/assets/kofi.png deleted file mode 100644 index 0ee97776..00000000 Binary files a/assets/kofi.png and /dev/null differ diff --git a/assets/patreon.png b/assets/patreon.png deleted file mode 100644 index da911f2f..00000000 Binary files a/assets/patreon.png and /dev/null differ diff --git a/manifest/background-opera.js b/manifest/background-opera.js index 8883cef7..52809ac0 100644 --- a/manifest/background-opera.js +++ b/manifest/background-opera.js @@ -1,9 +1,14 @@ +/* eslint-disable no-undef */ // Original code sourced from https://forums.opera.com/topic/25046/how-to-disable-completely-the-speed-dial/14 chrome.tabs.onCreated.addListener((tab) => { - if (tab.status === 'complete' && tab.url === 'chrome://startpage/') chrome.tabs.update(tab.id, { url: chrome.extension.getURL('index.html') }); + if (tab.status === 'complete' && tab.url === 'chrome://startpage/') chrome.tabs.update(tab.id, { + url: chrome.extension.getURL('index.html') + }); }); -chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => { - if (changeInfo.status === 'complete' && tab.url === 'chrome://startpage/') chrome.tabs.update(tabId, { url: chrome.extension.getURL('index.html') }); +chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => { + if (changeInfo.status === 'complete' && tab.url === 'chrome://startpage/') chrome.tabs.update(tabId, { + url: chrome.extension.getURL('index.html') + }); }); \ No newline at end of file