Polygonscan Quick

Access polygonscan pages quickly

什麼是Polygonscan Quick?

Polygonscan Quick是由dan開發的Chrome擴展程式,該擴展的主要功能是“Access polygonscan pages quickly”。

擴展截圖

screenshot

下載Polygonscan Quick擴展crx文件

下載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
官方網址 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\/*"
    ]
}