Nexus Link Fixer

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

Qu'est-ce que Nexus Link Fixer ?

Nexus Link Fixer est une extension Chrome développée par agc93, et sa fonction principale est "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Nexus Link Fixer

Téléchargez les fichiers d'extension Nexus Link Fixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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 .                    

Informations de Base sur l'Extension

Nom Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
URL Officiel https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Description Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Taille du Fichier 19.01 KB
Nombre d'Installations 136
Version Actuelle 0.0.2
Dernière Mise à Jour 2020-11-03
Date de Publication 2020-11-03
Développeur agc93
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/agc93/chrome-nmr
URL de la Page d'Aide https://github.com/agc93/chrome-nmr/issues
Langues Prises en Charge 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"
        ]
    }
}