Polygonscan Quick

Access polygonscan pages quickly

Polygonscan Quickคืออะไร?

Polygonscan Quick เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dan และคุณลักษณะหลักของมันคือ "Access polygonscan pages quickly"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Polygonscan Quick

ดาวน์โหลดไฟล์ส่วนขยาย Polygonscan Quick ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Polygonscan Quick Polygonscan Quick
ID ndjlhileefmglagfehggdocdaklmadah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah
คำอธิบาย Access polygonscan pages quickly
ขนาดไฟล์ 12.28 KB
จำนวนการติดตั้ง 144
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-07-08
วันที่เผยแพร่ 2021-07-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา dan
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://danieljamesviau.com/scribe-extension-privacy-policy.html
ภาษาที่รองรับ 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\/*"
    ]
}