Once Upon Redirect
Redirect from Etherscan to Once Upon (onceupon.gg)
Что такое Once Upon Redirect?
Once Upon Redirect - это расширение Chrome, разработанное Once Upon, и его основная функция - "Redirect from Etherscan to Once Upon (onceupon.gg)".
Снимки экрана расширения
Скачать файл CRX расширения Once Upon Redirect
Скачайте файлы расширений Once Upon Redirect в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Redirects the browser when landing on Etherscan (etherscan.io) to Once Upon. Ensure Once Upon is used as your block explorer of choice. Forces all etherscan.io links to onceupon.gg, including links from any project that sends you to Etherscan for pending transactions. Once Upon Redirect is free and open-source software. The code is available at https://github.com/Once-Upon/onceupon-extension-chrome. Pull requests are more than welcome.
Основная информация о расширении
Название | Once Upon Redirect |
ID | ilgkbpafpibgnfldkfjffndefnklojcb |
Официальный URL | https://chromewebstore.google.com/detail/once-upon-redirect/ilgkbpafpibgnfldkfjffndefnklojcb |
Описание | Redirect from Etherscan to Once Upon (onceupon.gg) |
Размер файла | 11.32 KB |
Количество установок | 238 |
Текущая Версия | 0.0.0.1 |
Последнее Обновление | 2022-11-29 |
Дата публикации | 2022-11-29 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Once Upon |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://onceupon.gg |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Once Upon Redirect", "description": "Redirect from Etherscan to Once Upon (onceupon.gg)", "version": "0.0.0.1", "manifest_version": 3, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/etherscan.io\/*" ], "js": [ "redirect.js" ] } ], "icons": { "16": "\/images\/ou16.png", "32": "\/images\/ou32.png", "48": "\/images\/ou48.png", "128": "\/images\/ou128.png" } } |