Netflix Viewing Stats

Shows viewing stats dashboard to know how you spend your time on Netflix.

Τι είναι το Netflix Viewing Stats;

Το Netflix Viewing Stats είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hmartos, και η κύρια λειτουργία του είναι "Shows viewing stats dashboard to know how you spend your time on Netflix.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Netflix Viewing Stats

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

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

                        This extension displays statistics about your Netflix viewing activity in a dashboard fully integrated into its official website. Through the information in the different sections of the dashboard you can better understand how you spend your time on Netflix.

- Discover valuable information in the viewing summary, such as the number of titles played, the total viewing time, or if you spend more time watching movies or series, among many other data.
- Filter, sort, or search your viewing activity to find out which is the longest movie you have watched, or how many times you have watched an episode of your favourite series.
- Download your complete viewing activity in a CSV file to do your own data analysis.
- Get the "Series Killer" achievement for watching 100 series or the "I am Legend" achievement for watching 5,000 titles. Can you get the "Mission Impossible" achievement?
- Switch between Netflix profiles to compare your results with those of your friends and family.                    

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

Όνομα Netflix Viewing Stats Netflix Viewing Stats
ID bckfpnenhimfckndcceonmkhheinmkob
Επίσημο URL https://chromewebstore.google.com/detail/netflix-viewing-stats/bckfpnenhimfckndcceonmkhheinmkob
Περιγραφή Shows viewing stats dashboard to know how you spend your time on Netflix.
Μέγεθος Αρχείου 177 KB
Αριθμός Εγκαταστάσεων 10,074
Τρέχουσα Έκδοση 2.4.0
Τελευταία Ενημέρωση 2022-04-11
Ημερομηνία Δημοσίευσης 2020-05-23
Αξιολόγηση 4.18/5 Συνολικά 22 Αξιολογήσεις
Προγραμματιστής hmartos
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/hmartos/netflix-usage-stats
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/hmartos/netflix-usage-stats/issues
Υποστηριζόμενες Γλώσσες en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionTitle__",
    "version": "2.4.0",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "permissions": [
        "https:\/\/*.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/settings\/viewed?stats=true"
            ],
            "js": [
                "vendor\/js\/lodash.min.js",
                "vendor\/js\/chart.min.js",
                "vendor\/js\/json2csv.min.js",
                "vendor\/js\/jquery.min.js",
                "vendor\/js\/purify.min.js",
                "utils\/template.js",
                "utils\/loader.js",
                "utils\/db.js",
                "utils\/activity.js",
                "utils\/stats.js",
                "utils\/achievements.js",
                "utils\/chart.js",
                "utils\/viewing.js",
                "utils\/format.js",
                "utils\/debug.js",
                "dashboard\/dashboard.js"
            ],
            "css": [
                "vendor\/css\/material-icons.css",
                "dashboard\/dashboard.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "dashboard\/dashboard.html",
        "empty.html",
        "error.html",
        "images\/tv.svg",
        "images\/movie.svg",
        "images\/ani_netflix_stats.gif"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 2
}