ETH gas alerts
Keep track of gas prices easily and set up notifications when it goes below a certain threshold
什麼是ETH gas alerts?
ETH gas alerts是由ethgasalert開發的Chrome擴展程式,該擴展的主要功能是“Keep track of gas prices easily and set up notifications when it goes below a certain threshold”。
擴展截圖
下載ETH gas alerts擴展crx文件
下載ETH gas alerts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | eiphjjopllhmdfikjnhgcgigmobbehnm |
| 官方網址 | https://chromewebstore.google.com/detail/eth-gas-alerts/eiphjjopllhmdfikjnhgcgigmobbehnm |
| 簡介 | Keep track of gas prices easily and set up notifications when it goes below a certain threshold |
| 檔案大小 | 29.32 KB |
| 安裝次數 | 4,139 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2020-11-28 |
| 上架時間 | 2020-11-24 |
| 評分 | 4.00/5 共 9 次評分 |
| 開發者 | ethgasalert |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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'"
} | |