Personal YouTube Charts

Adds a ranking of your most viewed videos to the YouTube watch history

Τι είναι το Personal YouTube Charts;

Το Personal YouTube Charts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nik Haldimann, και η κύρια λειτουργία του είναι "Adds a ranking of your most viewed videos to the YouTube watch history".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Personal YouTube Charts

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

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

                        Discover your most viewed videos on YouTube!

After installation visit the YouTube watch history (https://www.youtube.com/feed/history) to see your top 3 most viewed videos.  Click on "show more" below them to see your top 20 videos by personal views.

Your personal chart ranking is based on the last 3000 videos in your watch history. You can change this history size in the extension's options.

Because the charts are purely based on your watch history there are some quirks:

- Each video is counted at most once per day - multiple views per day count as one view
- If you watch just part of a video on one day it counts as a view - so if you watch a video over multiple days, pausing and unpausing, this will count as one view of that video for each day
- Any video view that you remove from your watch history will also not appear in the charts

This extension works with Desktop Chrome and www.youtube.com only, mobile YouTube (m.youtube.com) is not supported.

Your privacy is important! The extension only requests access to www.youtube.com. It does not record or store any data from your YouTube account. It does not communicate with any server other than www.youtube.com itself.

The source code for this extension is freely available at https://github.com/nikhaldi/youtube-charts

This extension is not in any way affiliated with YouTube. ❤                    

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

Όνομα Personal YouTube Charts Personal YouTube Charts
ID beicockjhpniljmibgmmlhdkjjidccea
Επίσημο URL https://chrome.google.com/webstore/detail/personal-youtube-charts/beicockjhpniljmibgmmlhdkjjidccea
Περιγραφή Adds a ranking of your most viewed videos to the YouTube watch history
Μέγεθος Αρχείου 48.13 KB
Αριθμός Εγκαταστάσεων 456
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-04-29
Ημερομηνία Δημοσίευσης 2020-04-29
Αξιολόγηση 1.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Nik Haldimann
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Personal YouTube Charts",
    "version": "1.0",
    "description": "Adds a ranking of your most viewed videos to the YouTube watch history",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "content.css"
            ],
            "js": [
                "vendor\/jquery-3.5.0.min.js",
                "content_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}