Nexus Link Fixer
Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
O que é Nexus Link Fixer?
Nexus Link Fixer é uma extensão do Chrome desenvolvida por agc93, e sua principal característica é "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Nexus Link Fixer
Baixe arquivos de extensão Nexus Link Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 .
Informações Básicas da Extensão
Nome | Nexus Link Fixer |
ID | pdffafpnklflnobfjfobmnjkooakoedf |
URL Oficial | https://chromewebstore.google.com/detail/nexus-link-fixer/pdffafpnklflnobfjfobmnjkooakoedf |
Descrição | Fixes old Nexus Mods page and wiki links, redirecting to the newer format. |
Tamanho do Arquivo | 19.01 KB |
Contagem de Instalações | 136 |
Versão Atual | 0.0.2 |
Última Atualização | 2020-11-03 |
Data de Publicação | 2020-11-03 |
Desenvolvedor | agc93 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/agc93/chrome-nmr |
URL da Página de Ajuda | https://github.com/agc93/chrome-nmr/issues |
Idiomas Suportados | 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" ] } } |