CurseForge Download Replacer
Replaces download links from CurseForge.
Что такое CurseForge Download Replacer?
CurseForge Download Replacer - это расширение Chrome, разработанное Matt Worzala, и его основная функция - "Replaces download links from CurseForge.".
Снимки экрана расширения
Скачать файл CRX расширения CurseForge Download Replacer
Скачайте файлы расширений CurseForge Download Replacer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This package will do two things: It will change the `Install` url from loading the Twitch client to simply downloading the zip archive of the modpack. It will also make two passes in an attempt to remove ads from modpack pages. Note: The ad removal is done by removing `iframe` elements from the dom, so if curseforge ever starts using `iframe`s for anything besides ads, this will cause an issue.
Основная информация о расширении
Название | CurseForge Download Replacer |
ID | lncojpmlgohapoccgdognpfjjnaflelm |
Официальный URL | https://chromewebstore.google.com/detail/curseforge-download-repla/lncojpmlgohapoccgdognpfjjnaflelm |
Описание | Replaces download links from CurseForge. |
Размер файла | 13.68 KB |
Количество установок | 305 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2019-07-07 |
Дата публикации | 2019-07-06 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | Matt Worzala |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CurseForge Download Replacer", "version": "1.0.2", "description": "Replaces download links from CurseForge.", "content_scripts": [ { "matches": [ "https:\/\/www.curseforge.com\/minecraft\/modpacks\/*" ], "js": [ "replacer.js" ] } ], "icons": { "512": "img\/logo.png" } } |