Polygonscan Quick

Access polygonscan pages quickly

What is Polygonscan Quick?

Polygonscan Quick is a Chrome extension developed by dan, and its main feature is "Access polygonscan pages quickly".

Extension Screenshots

screenshot

Download Polygonscan Quick Extension CRX File

Download Polygonscan Quick 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

                        Polygonscan Quick.

Highlight the address bar, press p, then press tab, paste in an address or a transaction hash, then press enter.  The extension will take you to the Polygonscan page for the address or transaction.

You can prepend "m" onto the address or transaction to go to Mumbai Polygonscan.

Press p, then press tab, then type 'weth' and press enter to go to https://polygonscan.com/address/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619 or prepend 'weth' onto an address to go to https://polygonscan.com/token/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619?a=
. This extension adds links to OpenSea from Polygonscan transaction detail pages.

Extension Basic Information

Name Polygonscan Quick Polygonscan Quick
ID ndjlhileefmglagfehggdocdaklmadah
Official URL https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah
Description Access polygonscan pages quickly
File Size 12.28 KB
Installation Count 144
Current Version 1.0.0
Last Updated 2021-07-08
Publish Date 2021-07-07
Rating 5.00/5 Total 1 Ratings
Developer dan
Email [email protected]
Payment Type free
Privacy Policy Page URL http://danieljamesviau.com/scribe-extension-privacy-policy.html
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Polygonscan Quick",
    "description": "Access polygonscan pages quickly",
    "omnibox": {
        "keyword": "p"
    },
    "icons": {
        "16": "p.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/polygonscan.com\/tx\/*",
                "https:\/\/mumbai.polygonscan.com\/tx\/*"
            ]
        }
    ],
    "version": "1.0.0",
    "minimum_chrome_version": "9",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/api.opensea.io\/api\/v1\/asset_contract\/*"
    ]
}