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.”。
扩展截图
下载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 |
ID | pjkjdnlpbfcociacjalpklkpebephmha |
官方URL | 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" } ] } |