YouTube Sidebar Ratings
See ratings on YouTube's sidebar
Qu'est-ce que YouTube Sidebar Ratings ?
YouTube Sidebar Ratings est une extension Chrome développée par https://umer936.com, et sa fonction principale est "See ratings on YouTube's sidebar".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Sidebar Ratings
Téléchargez les fichiers d'extension YouTube Sidebar Ratings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | YouTube Sidebar Ratings |
ID | jdlibcekhoebiiclnfomaikejhjhofki |
URL Officiel | https://chromewebstore.google.com/detail/youtube-sidebar-ratings/jdlibcekhoebiiclnfomaikejhjhofki |
Description | See ratings on YouTube's sidebar |
Taille du Fichier | 37.79 KB |
Nombre d'Installations | 24 |
Version Actuelle | 2.6 |
Dernière Mise à Jour | 2016-10-08 |
Date de Publication | 2016-10-08 |
Évaluation | 1.75/5 Total 4 Évaluations |
Développeur | https://umer936.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |