Polygonscan Quick
Access polygonscan pages quickly
Polygonscan Quick là gì?
Polygonscan Quick là một tiện ích mở rộng Chrome được phát triển bởi dan, và tính năng chính của nó là "Access polygonscan pages quickly".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Polygonscan Quick
Tải xuống các tệp mở rộng Polygonscan Quick dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Polygonscan Quick |
ID | ndjlhileefmglagfehggdocdaklmadah |
URL Chính Thức | https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah |
Mô tả | Access polygonscan pages quickly |
Kích Thước Tệp | 12.28 KB |
Số Lần Cài Đặt | 144 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-07-08 |
Ngày Phát Hành | 2021-07-07 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | dan |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | http://danieljamesviau.com/scribe-extension-privacy-policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |