ETH Gas Price

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

Co to jest ETH Gas Price?

ETH Gas Price to rozszerzenie Chrome opracowane przez Pato, a jego główną funkcją jest „Displays the current gas price (in gwei and not in $) using your preferred gas price provider.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ETH Gas Price

Pobierz pliki rozszerzeń ETH Gas Price w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa ETH Gas Price ETH Gas Price
ID aehhmeflgglnnipjijolgkjgcnhnnjfd
Oficjalny URL https://chromewebstore.google.com/detail/eth-gas-price/aehhmeflgglnnipjijolgkjgcnhnnjfd
Opis Displays the current gas price (in gwei and not in $) using your preferred gas price provider.
Rozmiar pliku 79.78 KB
Liczba instalacji 159
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-06-22
Data Publikacji 2021-06-21
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Pato
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/patobiskoto/gas
Adres URL Strony Pomocy https://github.com/patobiskoto/gas
Obsługiwane Języki 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
    }
}