Nexus Link Fixer

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

Τι είναι το Nexus Link Fixer;

Το Nexus Link Fixer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον agc93, και η κύρια λειτουργία του είναι "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Nexus Link Fixer

Λήψη αρχείων επέκτασης Nexus Link Fixer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 .                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
Επίσημο URL https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Περιγραφή Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Μέγεθος Αρχείου 19.01 KB
Αριθμός Εγκαταστάσεων 136
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2020-11-03
Ημερομηνία Δημοσίευσης 2020-11-03
Προγραμματιστής agc93
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/agc93/chrome-nmr
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/agc93/chrome-nmr/issues
Υποστηριζόμενες Γλώσσες 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"
        ]
    }
}