ETH Gas Price

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

Was ist ETH Gas Price?

ETH Gas Price ist eine Chrome-Erweiterung, die von Pato entwickelt wurde, und ihr Hauptmerkmal ist "Displays the current gas price (in gwei and not in $) using your preferred gas price provider.".

Erweiterungsscreenshots

screenshot

ETH Gas Price-Erweiterungs-CRX-Datei herunterladen

Laden Sie ETH Gas Price-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name ETH Gas Price ETH Gas Price
ID aehhmeflgglnnipjijolgkjgcnhnnjfd
Offizielle URL https://chromewebstore.google.com/detail/eth-gas-price/aehhmeflgglnnipjijolgkjgcnhnnjfd
Beschreibung Displays the current gas price (in gwei and not in $) using your preferred gas price provider.
Dateigröße 79.78 KB
Installationsanzahl 159
Aktuelle Version 1.0
Letztes Update 2021-06-22
Veröffentlichungsdatum 2021-06-21
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Pato
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/patobiskoto/gas
Hilfeseite URL https://github.com/patobiskoto/gas
Unterstützte Sprachen 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
    }
}