Youtube Likes / Views
Simple youtubeLikes / Views ratio ( percentage )
什么是Youtube Likes / Views?
Youtube Likes / Views是由cosmin.serboteiu开发的Chrome扩展程序,该扩展的主要功能是“Simple youtubeLikes / Views ratio ( percentage )”。
扩展截图
下载Youtube Likes / Views扩展crx文件
下载Youtube Likes / Views扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension that will display the ratio of likes / views as a percentage. This is quite useful in the current context in which there is no dislike counter. 扩展基本信息
| 名称 | |
| ID | hpllifddocjegddmfhpknnncbciekpfe |
| 官方URL | https://chrome.google.com/webstore/detail/youtube-likes-views/hpllifddocjegddmfhpknnncbciekpfe |
| 简介 | Simple youtubeLikes / Views ratio ( percentage ) |
| 文件大小 | 10.56 KB |
| 安装次数 | 99 |
| 当前版本 | 0.2 |
| 更新时间 | 2021-11-23 |
| 上架时间 | 2021-11-23 |
| 评分 | 4.00/5 共6次评分 |
| 开发者 | cosmin.serboteiu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Likes \/ Views",
"description": "Simple youtubeLikes \/ Views ratio ( percentage )",
"version": "0.2",
"manifest_version": 3,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/watch*"
],
"js": [
"content-script.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs"
]
} | |