Nexus Link Fixer

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

Wat is Nexus Link Fixer?

Nexus Link Fixer is een Chrome-extensie ontwikkeld door agc93, en de belangrijkste functie is "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Nexus Link Fixer

Download Nexus Link Fixer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 .                    

Basisinformatie over de Extensie

Naam Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
Officiële URL https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Beschrijving Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Bestandsgrootte 19.01 KB
Aantal Installaties 136
Huidige Versie 0.0.2
Laatst Bijgewerkt 2020-11-03
Publicatiedatum 2020-11-03
Ontwikkelaar agc93
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/agc93/chrome-nmr
Help Pagina-URL https://github.com/agc93/chrome-nmr/issues
Ondersteunde Talen 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"
        ]
    }
}