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?

View-Like Ratio for YouTube是由flootah開發的Chrome擴展程式,該擴展的主要功能是“Add display to the YouTube watch page to show a view-to-like ratio or percentage.”。

擴展截圖

screenshot
screenshot

下載View-Like Ratio for YouTube擴展crx文件

下載View-Like Ratio for YouTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
官方網址 https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
簡介 Add display to the YouTube watch page to show a view-to-like ratio or percentage.
檔案大小 16.66 KB
安裝次數 146
目前版本 0.4
更新時間 2022-12-07
上架時間 2021-12-01
評分 3.29/5 共 7 次評分
開發者 flootah
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://flootah.dev/about/privacy
支援的語言 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": [
                ""
            ]
        }
    ]
}