Polygonscan Quick
Access polygonscan pages quickly
Cos'è Polygonscan Quick?
Polygonscan Quick è un'estensione di Chrome sviluppata da dan, e la sua funzione principale è "Access polygonscan pages quickly".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Polygonscan Quick
Scarica i file di estensione Polygonscan Quick in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Polygonscan Quick |
ID | ndjlhileefmglagfehggdocdaklmadah |
URL Ufficiale | https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah |
Descrizione | Access polygonscan pages quickly |
Dimensione del File | 12.28 KB |
Conteggio Installazioni | 144 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-07-08 |
Data di Pubblicazione | 2021-07-07 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | dan |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | http://danieljamesviau.com/scribe-extension-privacy-policy.html |
Lingue Supportate | 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\/*" ] } |