Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Τι είναι το Cryptocurrency Ticker;

Το Cryptocurrency Ticker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nongyehezuoshe, και η κύρια λειτουργία του είναι "Show the price of specified cryptocurrency in badge or tabs.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cryptocurrency Ticker

Λήψη αρχείων επέκτασης Cryptocurrency Ticker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Show the price of specified cryptocurrency in badge or tabs. You can customize which trading pairs are displayed from the options page. such as BTC-USDT, ETH-USDT, and so on.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
Επίσημο URL https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Περιγραφή Show the price of specified cryptocurrency in badge or tabs.
Μέγεθος Αρχείου 44.9 KB
Αριθμός Εγκαταστάσεων 41
Τρέχουσα Έκδοση 3.0.0.0
Τελευταία Ενημέρωση 2023-05-17
Ημερομηνία Δημοσίευσης 2022-09-07
Προγραμματιστής nongyehezuoshe
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/nongyehezuoshe/cointicker
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/nongyehezuoshe/cointicker/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "version": "3.0.0.0",
    "description": "__MSG_ext_des__",
    "default_locale": "en",
    "action": {
        "default_icon": {
            "16": "icons\/icon.png",
            "24": "icons\/icon.png",
            "32": "icons\/icon.png"
        },
        "default_title": "__MSG_ext_name__",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "128": "icons\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "html\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*",
                "icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/event.js"
            ],
            "css": [
                "css\/event.css"
            ]
        }
    ]
}