Polygonscan Quick
Access polygonscan pages quickly
Was ist Polygonscan Quick?
Polygonscan Quick ist eine Chrome-Erweiterung, die von dan entwickelt wurde, und ihr Hauptmerkmal ist "Access polygonscan pages quickly".
Erweiterungsscreenshots
Polygonscan Quick-Erweiterungs-CRX-Datei herunterladen
Laden Sie Polygonscan Quick-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Polygonscan Quick |
ID | ndjlhileefmglagfehggdocdaklmadah |
Offizielle URL | https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah |
Beschreibung | Access polygonscan pages quickly |
Dateigröße | 12.28 KB |
Installationsanzahl | 144 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2021-07-08 |
Veröffentlichungsdatum | 2021-07-07 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | dan |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | http://danieljamesviau.com/scribe-extension-privacy-policy.html |
Unterstützte Sprachen | 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\/*" ] } |