CurseForge Download Replacer

Replaces download links from CurseForge.

Vad är CurseForge Download Replacer?

CurseForge Download Replacer är en Chrome-tillägg utvecklad av Matt Worzala, och dess huvudfunktion är "Replaces download links from CurseForge.".

Tilläggsskärmbilder

screenshot

Ladda ner CurseForge Download Replacer-förlängningens CRX-fil

Ladda ner CurseForge Download Replacer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CurseForge Download Replacer CurseForge Download Replacer
ID lncojpmlgohapoccgdognpfjjnaflelm
Officiell webbadress https://chromewebstore.google.com/detail/curseforge-download-repla/lncojpmlgohapoccgdognpfjjnaflelm
Beskrivning Replaces download links from CurseForge.
Filstorlek 13.68 KB
Antal Installationer 305
Aktuell Version 1.0.2
Senast Uppdaterad 2019-07-07
Publiceringsdatum 2019-07-06
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Matt Worzala
Betalningssätt free
Stödda Språk 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"
    }
}