Nexus Link Fixer
Fixes old Nexus Mods page and wiki links, redirecting to the newer format.
Что такое Nexus Link Fixer?
Nexus Link Fixer - это расширение Chrome, разработанное agc93, и его основная функция - "Fixes old Nexus Mods page and wiki links, redirecting to the newer format.".
Снимки экрана расширения
Скачать файл CRX расширения Nexus Link Fixer
Скачайте файлы расширений 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 . Основная информация о расширении
| Название | |
| ID | pdffafpnklflnobfjfobmnjkooakoedf |
| Официальный URL | 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"
]
}
} | |