Nexus Link Fixer

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

Vad är Nexus Link Fixer?

Nexus Link Fixer är en Chrome-tillägg utvecklad av agc93, och dess huvudfunktion är "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".

Tilläggsskärmbilder

screenshot

Ladda ner Nexus Link Fixer-förlängningens CRX-fil

Ladda ner Nexus Link Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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 .                    

Grundläggande Information om Tillägg

Namn Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
Officiell webbadress https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Beskrivning Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Filstorlek 19.01 KB
Antal Installationer 136
Aktuell Version 0.0.2
Senast Uppdaterad 2020-11-03
Publiceringsdatum 2020-11-03
Utvecklare agc93
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/agc93/chrome-nmr
Hjälpsida URL https://github.com/agc93/chrome-nmr/issues
Stödda Språk 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"
        ]
    }
}