Nexus Link Fixer

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

Was ist Nexus Link Fixer?

Nexus Link Fixer ist eine Chrome-Erweiterung, die von agc93 entwickelt wurde, und ihr Hauptmerkmal ist "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".

Erweiterungsscreenshots

screenshot

Nexus Link Fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Nexus Link Fixer-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

                        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 .                    

Grundlegende Informationen zur Erweiterung

Name Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
Offizielle URL https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Beschreibung Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Dateigröße 19.01 KB
Installationsanzahl 136
Aktuelle Version 0.0.2
Letztes Update 2020-11-03
Veröffentlichungsdatum 2020-11-03
Entwickler agc93
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/agc93/chrome-nmr
Hilfeseite URL https://github.com/agc93/chrome-nmr/issues
Unterstützte Sprachen 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"
        ]
    }
}