ETH gas alerts
Keep track of gas prices easily and set up notifications when it goes below a certain threshold
Was ist ETH gas alerts?
ETH gas alerts ist eine Chrome-Erweiterung, die von ethgasalert entwickelt wurde, und ihr Hauptmerkmal ist "Keep track of gas prices easily and set up notifications when it goes below a certain threshold".
Erweiterungsscreenshots
ETH gas alerts-Erweiterungs-CRX-Datei herunterladen
Laden Sie ETH gas alerts-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
Keep track of Ethereum gas prices from the browser and set up notifications when it goes below a certain threshold (e.g. whenever gas is below 20gwei -you can pick a custom threshold-). Gas prices get updated every minute.
Powered by Etherscan.io APIs Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eiphjjopllhmdfikjnhgcgigmobbehnm |
| Offizielle URL | https://chromewebstore.google.com/detail/eth-gas-alerts/eiphjjopllhmdfikjnhgcgigmobbehnm |
| Beschreibung | Keep track of gas prices easily and set up notifications when it goes below a certain threshold |
| Dateigröße | 29.32 KB |
| Installationsanzahl | 4,139 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2020-11-28 |
| Veröffentlichungsdatum | 2020-11-24 |
| Bewertung | 4.00/5 Insgesamt 9 Bewertungen |
| Entwickler | ethgasalert |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ETH gas alerts",
"description": "Keep track of gas prices easily and set up notifications when it goes below a certain threshold",
"version": "0.0.1",
"manifest_version": 2,
"permissions": [
"alarms",
"notifications",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"16": "ethereum16.png",
"48": "ethereum48.png",
"128": "ethereum128.png"
},
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com\/ https:\/\/ssl.google-analytics.com; object-src 'self'"
} | |