TwitchWatchTime Tracker

Tracks the amount of time spent watching twitch live streams

Τι είναι το TwitchWatchTime Tracker;

Το TwitchWatchTime Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ohluccaca, και η κύρια λειτουργία του είναι "Tracks the amount of time spent watching twitch live streams".

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

screenshot
screenshot

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

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

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

                        Monitor viewing habits: Twitch Watch Time Tracker allows users to keep a close eye on their Twitch viewing habits, enabling them to see which channels they spend the most time watching. This can help users discover new favorite channels or identify when they might be spending too much time watching Twitch.

Breakdown of watch time: The extension breaks down the watch time data into different time frames, such as daily, weekly, and monthly. This provides users with a clear picture of their viewing habits over different periods, making it easier to understand how their Twitch consumption evolves over time.

User-friendly interface: The Twitch Watch Time Tracker has a clean and intuitive interface, making it simple for users to navigate and understand their watch time data. The extension's design is visually appealing and seamlessly integrates with the Twitch website's aesthetics.

Data management: Users can easily manage their watch time data by deleting or downloading it. They can also import previously downloaded data to continue tracking their watch time across different devices or browser installations.

Open-source and community-driven: The Twitch Watch Time Tracker is an open-source project, which means that users can contribute to its development, report issues, or suggest improvements. This ensures that the extension continuously evolves to meet the needs of the Twitch community.

Overall, the Twitch Watch Time Tracker is an invaluable tool for Twitch users who want to monitor their viewing habits and better understand their preferences. By providing detailed watch time statistics and a user-friendly interface, this extension offers a unique and engaging way to interact with Twitch content.                    

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

Όνομα TwitchWatchTime Tracker TwitchWatchTime Tracker
ID nhiofmohbhgelkmmljjnhfnlndljepoh
Επίσημο URL https://chromewebstore.google.com/detail/twitchwatchtime-tracker/nhiofmohbhgelkmmljjnhfnlndljepoh
Περιγραφή Tracks the amount of time spent watching twitch live streams
Μέγεθος Αρχείου 50.87 KB
Αριθμός Εγκαταστάσεων 97
Τρέχουσα Έκδοση 1.4
Τελευταία Ενημέρωση 2023-10-25
Ημερομηνία Δημοσίευσης 2023-04-20
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής ohluccaca
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.freeprivacypolicy.com/live/7fe5d39f-63d4-4661-897f-3e5bab07d462
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TwitchWatchTime Tracker",
    "version": "1.4",
    "description": "Tracks the amount of time spent watching twitch live streams",
    "permissions": [
        "tabs",
        "storage",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background-script.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup.html"
    }
}