View-Like Ratio for YouTube

Add display to the YouTube watch page to show a view-to-like ratio or percentage.

View-Like Ratio for YouTube là gì?

View-Like Ratio for YouTube là một tiện ích mở rộng Chrome được phát triển bởi flootah, và tính năng chính của nó là "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng View-Like Ratio for YouTube

Tải xuống các tệp mở rộng View-Like Ratio for YouTube 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

                        With YouTube dislikes on the way out, there needs to be an alternative way to judge a video's quality. This extension brings a solution by showing how often viewers decide to like a video. This metric can be useful when comparing videos of similar content or by the same creator.                    

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

Tên View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
URL Chính Thức https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Mô tả Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Kích Thước Tệp 16.66 KB
Số Lần Cài Đặt 146
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2022-12-07
Ngày Phát Hành 2021-12-01
Đánh Giá 3.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển flootah
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://flootah.dev/about/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View-Like Ratio for YouTube",
    "description": "Add display to the YouTube watch page to show a view-to-like ratio or percentage.",
    "version": "0.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "viewlike.css"
            ],
            "js": [
                "viewlike.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "viewlike128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "viewlike.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}