Nexus Link Fixer

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

Nexus Link Fixer là gì?

Nexus Link Fixer là một tiện ích mở rộng Chrome được phát triển bởi agc93, và tính năng chính của nó là "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Nexus Link Fixer

Tải xuống các tệp mở rộng Nexus Link Fixer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 .                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Nexus Link Fixer Nexus Link Fixer
ID pdffafpnklflnobfjfobmnjkooakoedf
URL Chính Thức https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf
Mô tả Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Kích Thước Tệp 19.01 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2020-11-03
Ngày Phát Hành 2020-11-03
Nhà Phát Triển agc93
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/agc93/chrome-nmr
URL Trang Trợ Giúp https://github.com/agc93/chrome-nmr/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}