Nexus Link Fixer
Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
什麼是Nexus Link Fixer?
Nexus Link Fixer是由agc93開發的Chrome擴展程式,該擴展的主要功能是“Fixes old Nexus Mods page and wiki links, redirecting to the newer format.”。
擴展截圖
下載Nexus Link Fixer擴展crx文件
下載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 |
ID | pdffafpnklflnobfjfobmnjkooakoedf |
官方網址 | 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" ] } } |