Nexus Link Fixer
Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Apa itu Nexus Link Fixer?
Nexus Link Fixer adalah ekstensi Chrome yang dikembangkan oleh agc93, dan fitur utamanya adalah "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Nexus Link Fixer
Unduh file ekstensi Nexus Link Fixer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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 .
Informasi Dasar Ekstensi
Nama | Nexus Link Fixer |
ID | pdffafpnklflnobfjfobmnjkooakoedf |
URL Resmi | https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf |
Deskripsi | Fixes old Nexus Mods page and wiki links, redirecting to the newer format. |
Ukuran File | 19.01 KB |
Jumlah Instalasi | 136 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2020-11-03 |
Tanggal Publikasi | 2020-11-03 |
Pengembang | agc93 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/agc93/chrome-nmr |
URL Halaman Bantuan | https://github.com/agc93/chrome-nmr/issues |
Bahasa yang Didukung | 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" ] } } |