Youtube like to view ratio

Displays the percentage of likes to views, more popular videos have a higher ratio.

什麼是Youtube like to view ratio?

Youtube like to view ratio是由@amnrst開發的Chrome擴展程式,該擴展的主要功能是“Displays the percentage of likes to views, more popular videos have a higher ratio.”。

擴展截圖

screenshot

下載Youtube like to view ratio擴展crx文件

下載Youtube like to view ratio擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Youtube recently removed the dislike to like ratio.  
A video with 1M views and 100 likes for example has a low ratio (0.1%), and probably means the video is not popular.

Any video with a like to view ratio greater than 2 or 3 percent, should be all right.
However the correct ratio depends on the type of content you are watching.                    

擴展基本資訊

名稱 Youtube like to view ratio Youtube like to view ratio
ID pjkjdnlpbfcociacjalpklkpebephmha
官方網址 https://chromewebstore.google.com/detail/youtube-like-to-view-rati/pjkjdnlpbfcociacjalpklkpebephmha
簡介 Displays the percentage of likes to views, more popular videos have a higher ratio.
檔案大小 328 KB
安裝次數 728
目前版本 0.0.1.0
更新時間 2022-11-02
上架時間 2021-12-04
評分 3.58/5 共 19 次評分
開發者 @amnrst
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/amnrst/youtube-like-to-view-ratio
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube like to view ratio",
    "description": "Displays the percentage of likes to views, more popular videos have a higher ratio.",
    "version": "0.0.1.0",
    "manifest_version": 2,
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/amnrst\/youtube-like-to-view-ratio",
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}