Gas Buddy
Show the latest gas prices whenever your web3 wallet is connected to a website.
Was ist Gas Buddy?
Gas Buddy ist eine Chrome-Erweiterung, die von https://tokenpage.xyz entwickelt wurde, und ihr Hauptmerkmal ist "Show the latest gas prices whenever your web3 wallet is connected to a website.".
Erweiterungsscreenshots
Gas Buddy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gas Buddy-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
Show the latest gas prices whenever your web3 wallet is connected to a website. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nhpelcoaigkkfpcgfhoabajohafpanin |
| Offizielle URL | https://chromewebstore.google.com/detail/gas-buddy/nhpelcoaigkkfpcgfhoabajohafpanin |
| Beschreibung | Show the latest gas prices whenever your web3 wallet is connected to a website. |
| Dateigröße | 1.6 MB |
| Installationsanzahl | 120 |
| Aktuelle Version | 0.2.1 |
| Letztes Update | 2023-01-19 |
| Veröffentlichungsdatum | 2022-12-25 |
| Bewertung | 4.91/5 Insgesamt 11 Bewertungen |
| Entwickler | https://tokenpage.xyz |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://gasbuddy.tokenpage.xyz |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Gas Buddy",
"description": "Show the latest gas prices whenever your web3 wallet is connected to a website.",
"version": "0.2.1",
"icons": {
"16": "\/assets\/logo16.png",
"48": "\/assets\/logo48.png",
"128": "\/assets\/logo128.png"
},
"action": {
"default_popup": "index.html",
"default_title": "Open me"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"foreground.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"foreground-injection.js"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |