YouTube Sidebar Ratings
See ratings on YouTube's sidebar
YouTube Sidebar Ratingsとは何ですか?
YouTube Sidebar Ratingsはhttps://umer936.comによって開発されたChromeの拡張機能で、その主な機能は「See ratings on YouTube's sidebar」です。
拡張機能のスクリーンショット
YouTube Sidebar Ratings拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } ] } |