Gas Buddy

Show the latest gas prices whenever your web3 wallet is connected to a website.

Vad är Gas Buddy?

Gas Buddy är en Chrome-tillägg utvecklad av https://tokenpage.xyz, och dess huvudfunktion är "Show the latest gas prices whenever your web3 wallet is connected to a website.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Gas Buddy-förlängningens CRX-fil

Ladda ner Gas Buddy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Show the latest gas prices whenever your web3 wallet is connected to a website.                    

Grundläggande Information om Tillägg

Namn Gas Buddy Gas Buddy
ID nhpelcoaigkkfpcgfhoabajohafpanin
Officiell webbadress https://chromewebstore.google.com/detail/gas-buddy/nhpelcoaigkkfpcgfhoabajohafpanin
Beskrivning Show the latest gas prices whenever your web3 wallet is connected to a website.
Filstorlek 1.6 MB
Antal Installationer 120
Aktuell Version 0.2.1
Senast Uppdaterad 2023-01-19
Publiceringsdatum 2022-12-25
Betyg 4.91/5 Totalt 11 Betyg
Utvecklare https://tokenpage.xyz
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://gasbuddy.tokenpage.xyz
Stödda Språk 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}