Nexus Link Fixer

Fixes old Nexus Mods page and wiki links, redirecting to the newer format.

Co je Nexus Link Fixer?

Nexus Link Fixer je rozšíření Chrome vyvinuté agc93, a jeho hlavní funkcí je „Fixes old Nexus Mods page and wiki links, redirecting to the newer format.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Nexus Link Fixer

Stáhněte si soubory rozšíření Nexus Link Fixer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        A simple extension that attempts to automatically redirect "old-style" Nexus Mods links to their newer counterparts. This should redirect URLs like https://skyrim.nexusmods.com/mods/ to the newer URL format (https://nexusmods.com/skyrim/). Older Wiki links (wiki.tesnexus.com) will also be redirected to the new more-secure Wiki (https://wiki.nexusmods.com/).

This extension is open-source and the extension code is available at https://github.com/agc93/chrome-nmr .                    

Základní Informace o Rozšíření

Název Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
Oficiální URL https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Popis Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Velikost souboru 19.01 KB
Počet instalací 136
Aktuální Verze 0.0.2
Poslední Aktualizace 2020-11-03
Datum Vydání 2020-11-03
Vývojář agc93
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/agc93/chrome-nmr
URL Stránky Nápovědy https://github.com/agc93/chrome-nmr/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nexus Link Fixer",
    "version": "0.0.2",
    "description": "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.",
    "icons": {
        "48": "nmr-48.png",
        "128": "nmr-128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "*:\/\/*.tesnexus.com\/*",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}