Nexus Link Fixer

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

Co to jest Nexus Link Fixer?

Nexus Link Fixer to rozszerzenie Chrome opracowane przez agc93, a jego główną funkcją jest „Fixes old Nexus Mods page and wiki links, redirecting to the newer format.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Nexus Link Fixer

Pobierz pliki rozszerzeń Nexus Link Fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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 .                    

Podstawowe informacje o rozszerzeniu

Nazwa Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
Oficjalny URL https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Opis Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Rozmiar pliku 19.01 KB
Liczba instalacji 136
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2020-11-03
Data Publikacji 2020-11-03
Deweloper agc93
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/agc93/chrome-nmr
Adres URL Strony Pomocy https://github.com/agc93/chrome-nmr/issues
Obsługiwane Języki 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"
        ]
    }
}