CurseForge Download Replacer

Replaces download links from CurseForge.

Was ist CurseForge Download Replacer?

CurseForge Download Replacer ist eine Chrome-Erweiterung, die von Matt Worzala entwickelt wurde, und ihr Hauptmerkmal ist "Replaces download links from CurseForge.".

Erweiterungsscreenshots

screenshot

CurseForge Download Replacer-Erweiterungs-CRX-Datei herunterladen

Laden Sie CurseForge Download Replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CurseForge Download Replacer CurseForge Download Replacer
ID lncojpmlgohapoccgdognpfjjnaflelm
Offizielle URL https://chromewebstore.google.com/detail/curseforge-download-repla/lncojpmlgohapoccgdognpfjjnaflelm
Beschreibung Replaces download links from CurseForge.
Dateigröße 13.68 KB
Installationsanzahl 305
Aktuelle Version 1.0.2
Letztes Update 2019-07-07
Veröffentlichungsdatum 2019-07-06
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Matt Worzala
Zahlungsart free
Unterstützte Sprachen 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"
    }
}