ETH Gas Price

Displays the current gas price (in gwei and not in $) using your preferred gas price provider.

Что такое ETH Gas Price?

ETH Gas Price - это расширение Chrome, разработанное Pato, и его основная функция - "Displays the current gas price (in gwei and not in $) using your preferred gas price provider.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ETH Gas Price

Скачайте файлы расширений ETH Gas Price в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        ETH Gas Price helps Ethereum blockchain users to display the current transaction price in gwei.                    

Основная информация о расширении

Название ETH Gas Price ETH Gas Price
ID aehhmeflgglnnipjijolgkjgcnhnnjfd
Официальный URL https://chromewebstore.google.com/detail/eth-gas-price/aehhmeflgglnnipjijolgkjgcnhnnjfd
Описание Displays the current gas price (in gwei and not in $) using your preferred gas price provider.
Размер файла 79.78 KB
Количество установок 159
Текущая Версия 1.0
Последнее Обновление 2021-06-22
Дата публикации 2021-06-21
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Pato
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/patobiskoto/gas
URL страницы помощи https://github.com/patobiskoto/gas
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ETH Gas Price",
    "version": "1.0",
    "description": "Displays the current gas price (in gwei and not in $) using your preferred gas price provider.",
    "manifest_version": 2,
    "background": {
        "page": "src\/background.html",
        "persistent": false
    },
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "128": "static\/icon128.png"
    },
    "browser_action": {
        "default_icon": "static\/icon.png",
        "default_title": "ETH Gas Price",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": true
    }
}