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