YouTube Sidebar Ratings

See ratings on YouTube's sidebar

Τι είναι το YouTube Sidebar Ratings;

Το YouTube Sidebar Ratings είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://umer936.com, και η κύρια λειτουργία του είναι "See ratings on YouTube's sidebar".

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

screenshot
screenshot

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

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

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

                        YouTube Ratings for Sidebar 

Why is this useful? 
You can see the ratings for related videos and better decide if you want to watch one. 

Why doesn't YouTube do this by default? 
I don't actually know, but my assumption is that having it would lessen the number of viewers since it would be extremely easy to spot "clickbait" videos.  

How'd you decide to make this extension? 
So I was browsing old GitHub projects and I found one that added the ratings to the sidebar of YouTube. 

I forked it and got to work to bring it up to date from it's "last updated in 2012" version. 

After rewriting what Git tells me is 98% of the code, I finished it. 

-----------------------------------

Possible bug: Sometimes an adblocker will make the like/dislike bars not show up. Simply refresh the page. (It's only happened to me once in 3 days). 

-----------------------------------

Possible TODO if demand, 
- Show the actual likes/dislikes numbers underneath 
- Show like/dislike images 
- Customizations of locations options                    

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

Όνομα YouTube Sidebar Ratings YouTube Sidebar Ratings
ID jdlibcekhoebiiclnfomaikejhjhofki
Επίσημο URL https://chromewebstore.google.com/detail/youtube-sidebar-ratings/jdlibcekhoebiiclnfomaikejhjhofki
Περιγραφή See ratings on YouTube's sidebar
Μέγεθος Αρχείου 37.79 KB
Αριθμός Εγκαταστάσεων 24
Τρέχουσα Έκδοση 2.6
Τελευταία Ενημέρωση 2016-10-08
Ημερομηνία Δημοσίευσης 2016-10-08
Αξιολόγηση 1.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://umer936.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Sidebar Ratings",
    "version": "2.6",
    "manifest_version": 2,
    "description": "See ratings on YouTube's sidebar",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?v=*"
            ],
            "js": [
                "jquery.js",
                "ratings.js"
            ],
            "run_at": "document_end"
        }
    ]
}