Polygonscan Quick

Access polygonscan pages quickly

Polygonscan Quick란 무엇입니까?

Polygonscan Quick은(는) dan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Access polygonscan pages quickly"입니다.

확장 프로그램 스크린샷

screenshot

Polygonscan Quick 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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