Polygonscan Quick
Access polygonscan pages quickly
Wat is Polygonscan Quick?
Polygonscan Quick is een Chrome-extensie ontwikkeld door dan, en de belangrijkste functie is "Access polygonscan pages quickly".
Extensie Screenshots
Download het CRX-bestand van de extensie Polygonscan Quick
Download Polygonscan Quick-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Polygonscan Quick |
ID | ndjlhileefmglagfehggdocdaklmadah |
Officiële URL | https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah |
Beschrijving | Access polygonscan pages quickly |
Bestandsgrootte | 12.28 KB |
Aantal Installaties | 144 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-07-08 |
Publicatiedatum | 2021-07-07 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | dan |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | http://danieljamesviau.com/scribe-extension-privacy-policy.html |
Ondersteunde Talen | 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\/*" ] } |