Modrinthify
Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Что такое Modrinthify?
Modrinthify - это расширение Chrome, разработанное jboi76coolmail, и его основная функция - "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".
Снимки экрана расширения
Скачать файл CRX расширения Modrinthify
Скачайте файлы расширений Modrinthify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When looking at Minecraft mods on curseforge.com, Modrinthify automatically searches modrinth.com for the mod and shows you a redirect button if it finds it. If you click on that button you will be taken to the mod's Modrinth project page It also does the same on spigotmc.org The extension also show modrinth notifications in the browser toolbar
Основная информация о расширении
Название | Modrinthify |
ID | gjjlcbppchpjacimpkjhoancdbdmpcoc |
Официальный URL | https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc |
Описание | Redirect Curseforge mod pages to Modrinth and show Modrinth notifications |
Размер файла | 41.27 KB |
Количество установок | 257 |
Текущая Версия | 1.7.1 |
Последнее Обновление | 2023-08-13 |
Дата публикации | 2022-06-06 |
Рейтинг | 4.86/5 Всего 7 оценок |
Разработчик | jboi76coolmail |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/devBoi76/modrinthify |
URL страницы помощи | https://github.com/devBoi76/modrinthify/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Modrinthify", "version": "1.7.1", "description": "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications", "icons": { "48": "icons\/favicon.png" }, "host_permissions": [ "https:\/\/api.modrinth.com\/v2\/*" ], "permissions": [ "storage", "alarms" ], "content_scripts": [ { "matches": [ "*:\/\/*.curseforge.com\/minecraft\/*" ], "js": [ "main.js" ] }, { "matches": [ "*:\/\/*.spigotmc.org\/*" ], "js": [ "spigot.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/kofilogo.png" ], "matches": [ "https:\/\/*.curseforge.com\/*", "https:\/\/*.spigotmc.org\/*" ] } ], "action": { "default_icon": "icons\/favicon.png", "default_title": "Modrinthify", "default_popup": "html\/main.html" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "html\/preferences.html" } } |