Youtube like-dislike ratio
It shows a whole number ratio of likes over dislikes of a youtube video
Youtube like-dislike ratio란 무엇입니까?
Youtube like-dislike ratio은(는) CK Zero에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It shows a whole number ratio of likes over dislikes of a youtube video"입니다.
확장 프로그램 스크린샷
Youtube like-dislike ratio 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Real likability of a YouTube video is defined mostly by how less number of people actually disliked it. YouTube also has a 'Sentiment Bar' to show the ratio. But most of the time it looks like a thin underline bar below Like-Dislike buttons. The reason being the fact that this ratio is almost always greater than 10. And a 100/1 ratio video doesn't stand out from a crowd of tonnes of average 10/1 videos, because the bar looks almost same for all of them. This extension shows a ratio of 'Number of likes' over 'Number of dislikes' of the video in a neat intuitive design. *************************************************************** VERSION 2.0 - Fixes the issue where the ratio was not showing at all for YouTube in languages other than English. *************************************************************** DISCLAIMER: 1. This extension DOES NOT refreshes the ratio when you like or dislike a video and want to see the updated value. This is because the data (from YouTube page) on which this extension relies doesn't get updated immediately by YouTube when you like or dislike a video. You have to refresh the page to see the updated ratio. 2. This extension DOES NOT work in live streaming video.
확장 프로그램 기본 정보
이름 | |
ID | mgmmdklckabadidjlamdhjdclkmcifci |
공식 URL | https://chrome.google.com/webstore/detail/youtube-like-dislike-rati/mgmmdklckabadidjlamdhjdclkmcifci |
설명 | It shows a whole number ratio of likes over dislikes of a youtube video |
파일 크기 | 7.07 KB |
설치 횟수 | 5,712 |
현재 버전 | 2.0 |
최근 업데이트 | 2021-05-24 |
출시 날짜 | 2020-06-10 |
평점 | 2.48/5 총 48 개의 평점 |
개발자 | CK Zero |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube like-dislike ratio", "description": "It shows a whole number ratio of likes over dislikes of a youtube video", "version": "2.0", "icons": { "64": "yt-like-dislike64.png" }, "content_scripts": [ { "run_at": "document_idle", "js": [ "main.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |