Youtube like-dislike ratio

It shows a whole number ratio of likes over dislikes of a youtube video

Youtube like-dislike ratio là gì?

Youtube like-dislike ratio là một tiện ích mở rộng Chrome được phát triển bởi CK Zero, và tính năng chính của nó là "It shows a whole number ratio of likes over dislikes of a youtube video".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube like-dislike ratio

Tải xuống các tệp mở rộng Youtube like-dislike ratio dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube like-dislike ratio Youtube like-dislike ratio
ID mgmmdklckabadidjlamdhjdclkmcifci
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-like-dislike-rati/mgmmdklckabadidjlamdhjdclkmcifci
Mô tả It shows a whole number ratio of likes over dislikes of a youtube video
Kích Thước Tệp 7.07 KB
Số Lần Cài Đặt 5,712
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2021-05-24
Ngày Phát Hành 2020-06-10
Đánh Giá 2.48/5 Tổng số 48 Đánh Giá
Nhà Phát Triển CK Zero
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}