├── LICENSE ├── README.md ├── autogen_chrome ├── background.js ├── html │ ├── chrome.css │ ├── main.css │ ├── main.html │ ├── notifications.js │ ├── preferences.html │ └── preferences.js ├── icons │ ├── favicon.png │ └── kofilogo.png ├── main.js ├── manifest.json └── spigot.js ├── chrome ├── html │ ├── chrome.css │ ├── main.css │ ├── main.html │ └── preferences.html ├── icons │ ├── favicon.png │ └── kofilogo.png └── manifest.json ├── convert_chrome.py ├── firefox ├── background.js ├── html │ ├── chrome.css │ ├── main.css │ ├── main.html │ ├── notifications.js │ ├── preferences.html │ └── preferences.js ├── icons │ ├── favicon.png │ └── kofilogo.png ├── main.js ├── manifest.json └── spigot.js └── greasyfork ├── spigot.js └── userscript.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/README.md -------------------------------------------------------------------------------- /autogen_chrome/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/background.js -------------------------------------------------------------------------------- /autogen_chrome/html/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/html/chrome.css -------------------------------------------------------------------------------- /autogen_chrome/html/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/html/main.css -------------------------------------------------------------------------------- /autogen_chrome/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/html/main.html -------------------------------------------------------------------------------- /autogen_chrome/html/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/html/notifications.js -------------------------------------------------------------------------------- /autogen_chrome/html/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/html/preferences.html -------------------------------------------------------------------------------- /autogen_chrome/html/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/html/preferences.js -------------------------------------------------------------------------------- /autogen_chrome/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/icons/favicon.png -------------------------------------------------------------------------------- /autogen_chrome/icons/kofilogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/icons/kofilogo.png -------------------------------------------------------------------------------- /autogen_chrome/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/main.js -------------------------------------------------------------------------------- /autogen_chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/manifest.json -------------------------------------------------------------------------------- /autogen_chrome/spigot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/autogen_chrome/spigot.js -------------------------------------------------------------------------------- /chrome/html/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/chrome/html/chrome.css -------------------------------------------------------------------------------- /chrome/html/main.css: -------------------------------------------------------------------------------- 1 | ../../firefox/html/main.css -------------------------------------------------------------------------------- /chrome/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/chrome/html/main.html -------------------------------------------------------------------------------- /chrome/html/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/chrome/html/preferences.html -------------------------------------------------------------------------------- /chrome/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/chrome/icons/favicon.png -------------------------------------------------------------------------------- /chrome/icons/kofilogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/chrome/icons/kofilogo.png -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /convert_chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/convert_chrome.py -------------------------------------------------------------------------------- /firefox/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/background.js -------------------------------------------------------------------------------- /firefox/html/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/html/chrome.css -------------------------------------------------------------------------------- /firefox/html/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/html/main.css -------------------------------------------------------------------------------- /firefox/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/html/main.html -------------------------------------------------------------------------------- /firefox/html/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/html/notifications.js -------------------------------------------------------------------------------- /firefox/html/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/html/preferences.html -------------------------------------------------------------------------------- /firefox/html/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/html/preferences.js -------------------------------------------------------------------------------- /firefox/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/icons/favicon.png -------------------------------------------------------------------------------- /firefox/icons/kofilogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/icons/kofilogo.png -------------------------------------------------------------------------------- /firefox/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/main.js -------------------------------------------------------------------------------- /firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/manifest.json -------------------------------------------------------------------------------- /firefox/spigot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/firefox/spigot.js -------------------------------------------------------------------------------- /greasyfork/spigot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/greasyfork/spigot.js -------------------------------------------------------------------------------- /greasyfork/userscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devBoi76/modrinthify/HEAD/greasyfork/userscript.js --------------------------------------------------------------------------------