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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        ]
    }
}