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是由Pato開發的Chrome擴展程式,該擴展的主要功能是“Displays the current gas price (in gwei and not in $) using your preferred gas price provider.”。
擴展截圖
下載ETH Gas Price擴展crx文件
下載ETH Gas Price擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
ETH Gas Price helps Ethereum blockchain users to display the current transaction price in gwei. 擴展基本資訊
| 名稱 | |
| ID | aehhmeflgglnnipjijolgkjgcnhnnjfd |
| 官方網址 | 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
}
} | |