Once Upon Redirect

Redirect from Etherscan to Once Upon (onceupon.gg)

What is Once Upon Redirect?

Once Upon Redirect is a Chrome extension developed by Once Upon, and its main feature is "Redirect from Etherscan to Once Upon (onceupon.gg)".

Extension Screenshots

screenshot

Download Once Upon Redirect Extension CRX File

Download Once Upon Redirect 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

                        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.                    

Extension Basic Information

Name Once Upon Redirect Once Upon Redirect
ID ilgkbpafpibgnfldkfjffndefnklojcb
Official URL https://chromewebstore.google.com/detail/once-upon-redirect/ilgkbpafpibgnfldkfjffndefnklojcb
Description Redirect from Etherscan to Once Upon (onceupon.gg)
File Size 11.32 KB
Installation Count 238
Current Version 0.0.0.1
Last Updated 2022-11-29
Publish Date 2022-11-29
Rating 5.00/5 Total 2 Ratings
Developer Once Upon
Email [email protected]
Payment Type free
Extension Website https://onceupon.gg
Supported Languages 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"
    }
}