Modrinthify
Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Modrinthify là gì?
Modrinthify là một tiện ích mở rộng Chrome được phát triển bởi jboi76coolmail, và tính năng chính của nó là "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Modrinthify
Tải xuống các tệp mở rộng Modrinthify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Modrinthify |
ID | gjjlcbppchpjacimpkjhoancdbdmpcoc |
URL Chính Thức | https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc |
Mô tả | Redirect Curseforge mod pages to Modrinth and show Modrinth notifications |
Kích Thước Tệp | 41.27 KB |
Số Lần Cài Đặt | 257 |
Phiên Bản Hiện Tại | 1.7.1 |
Cập Nhật Lần Cuối | 2023-08-13 |
Ngày Phát Hành | 2022-06-06 |
Đánh Giá | 4.86/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | jboi76coolmail |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/devBoi76/modrinthify |
URL Trang Trợ Giúp | https://github.com/devBoi76/modrinthify/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |