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
官方URL 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": [
                ""
            ]
        }
    ]
}