Gas Buddy
Show the latest gas prices whenever your web3 wallet is connected to a website.
Что такое Gas Buddy?
Gas Buddy - это расширение Chrome, разработанное https://tokenpage.xyz, и его основная функция - "Show the latest gas prices whenever your web3 wallet is connected to a website.".
Снимки экрана расширения
Скачать файл CRX расширения Gas Buddy
Скачайте файлы расширений Gas Buddy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Show the latest gas prices whenever your web3 wallet is connected to a website.
Основная информация о расширении
Название | Gas Buddy |
ID | nhpelcoaigkkfpcgfhoabajohafpanin |
Официальный URL | 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": [ "*:\/\/*\/*" ] } ] } |