Polygonscan Quick

Access polygonscan pages quickly

Qu'est-ce que Polygonscan Quick ?

Polygonscan Quick est une extension Chrome développée par dan, et sa fonction principale est "Access polygonscan pages quickly".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Polygonscan Quick

Téléchargez les fichiers d'extension Polygonscan Quick au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.

Informations de Base sur l'Extension

Nom Polygonscan Quick Polygonscan Quick
ID ndjlhileefmglagfehggdocdaklmadah
URL Officiel https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah
Description Access polygonscan pages quickly
Taille du Fichier 12.28 KB
Nombre d'Installations 144
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-07-08
Date de Publication 2021-07-07
Évaluation 5.00/5 Total 1 Évaluations
Développeur dan
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité http://danieljamesviau.com/scribe-extension-privacy-policy.html
Langues Prises en Charge 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\/*"
    ]
}