Gas Buddy
Show the latest gas prices whenever your web3 wallet is connected to a website.
什麼是Gas Buddy?
Gas Buddy是由https://tokenpage.xyz開發的Chrome擴展程式,該擴展的主要功能是“Show the latest gas prices whenever your web3 wallet is connected to a website.”。
擴展截圖
下載Gas Buddy擴展crx文件
下載Gas Buddy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Show the latest gas prices whenever your web3 wallet is connected to a website. 擴展基本資訊
| 名稱 | |
| ID | nhpelcoaigkkfpcgfhoabajohafpanin |
| 官方網址 | https://chromewebstore.google.com/detail/gas-buddy/nhpelcoaigkkfpcgfhoabajohafpanin |
| 簡介 | Show the latest gas prices whenever your web3 wallet is connected to a website. |
| 檔案大小 | 1.6 MB |
| 安裝次數 | 120 |
| 目前版本 | 0.2.1 |
| 更新時間 | 2023-01-19 |
| 上架時間 | 2022-12-25 |
| 評分 | 4.91/5 共 11 次評分 |
| 開發者 | https://tokenpage.xyz |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://gasbuddy.tokenpage.xyz |
| 支援的語言 | 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": [
"*:\/\/*\/*"
]
}
]
} | |