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