Twitch PointTracker

Tracker for Stream Points by various bots on Twitch!

Τι είναι το Twitch PointTracker;

Το Twitch PointTracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kirdow, και η κύρια λειτουργία του είναι "Tracker for Stream Points by various bots on Twitch!".

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

screenshot

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

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

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

                        This extensions tracks points by bots* used on the Twitch platform. No need for user interaction after adding it to your browser. Displays the point count for supported channels in the search placeholder.

Features:
- Tracking for points stored by bots* by showing the value in the navigation search bar.
- Auto updates every 10 minutes.
- Can force update using the action button** every 60 seconds.
- No interaction required, automatically activates if channel is supported.
- Shows custom name for points if custom name is used.

Footnotes:
* Plan is to support StreamElements, Streamlabs and Nightbot in the long scope, but at the current time, only StreamElements had an open API allowing for easy implementation, thus that's the only supported bot at this point in time. Whenever possible, the other bots will be implemented too.
** In case the action button isn't visible, your browser might require you to pin it, in such case, open the action menu (usually a jigsaw puzzle icon) and pin the Twitch PointTracker action.                    

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

Όνομα Twitch PointTracker Twitch PointTracker
ID abadiofofcalmkdepnjmdmnobfkleoaj
Επίσημο URL https://chromewebstore.google.com/detail/twitch-pointtracker/abadiofofcalmkdepnjmdmnobfkleoaj
Περιγραφή Tracker for Stream Points by various bots on Twitch!
Μέγεθος Αρχείου 16.6 KB
Αριθμός Εγκαταστάσεων 105
Τρέχουσα Έκδοση 1.0.0.0
Τελευταία Ενημέρωση 2021-02-02
Ημερομηνία Δημοσίευσης 2021-02-02
Προγραμματιστής Kirdow
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch PointTracker",
    "description": "Tracker for Stream Points by various bots on Twitch!",
    "version": "1.0.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.twitch.tv\/*"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Twitch PointTracker"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/pointsTracker.js"
            ]
        }
    ]
}