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
Eメール [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\/*"
    ]
}