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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } ] } |