Nexus Link Fixer
Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
What is Nexus Link Fixer?
Nexus Link Fixer is a Chrome extension developed by agc93, and its main feature is "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".
Extension Screenshots
Download Nexus Link Fixer Extension CRX File
Download Nexus Link Fixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 .
Extension Basic Information
Name | Nexus Link Fixer |
ID | pdffafpnklflnobfjfobmnjkooakoedf |
Official URL | https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf |
Description | Fixes old Nexus Mods page and wiki links, redirecting to the newer format. |
File Size | 19.01 KB |
Installation Count | 136 |
Current Version | 0.0.2 |
Last Updated | 2020-11-03 |
Publish Date | 2020-11-03 |
Developer | agc93 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/agc93/chrome-nmr |
Help Page URL | https://github.com/agc93/chrome-nmr/issues |
Supported Languages | 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" ] } } |