TubeCount
Know how much you love a video by tracking your view count
什么是TubeCount?
TubeCount是由Consious Coder开发的Chrome扩展程序,该扩展的主要功能是“Know how much you love a video by tracking your view count”。
扩展截图
下载TubeCount扩展crx文件
下载TubeCount扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Minimal extension which count your youtube watch video watch count!
What's New?
- Fixed count doesn't show up on initial load. 扩展基本信息
| 名称 | |
| ID | momlemehnehhcbainhhopndejeickcam |
| 官方URL | https://chromewebstore.google.com/detail/tubecount/momlemehnehhcbainhhopndejeickcam |
| 简介 | Know how much you love a video by tracking your view count |
| 文件大小 | 22.42 KB |
| 安装次数 | 160 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2021-08-08 |
| 上架时间 | 2021-07-14 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | Consious Coder |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TubeCount",
"version": "1.0.2",
"manifest_version": 3,
"description": "Know how much you love a video by tracking your view count",
"icons": {
"128": ".\/icons\/128.png",
"48": ".\/icons\/48.png",
"16": ".\/icons\/16.png"
},
"action": {
"default_icon": {
"128": ".\/icons\/128.png",
"48": ".\/icons\/48.png",
"16": ".\/icons\/16.png"
}
},
"content_scripts": [
{
"js": [
".\/js\/content.js"
],
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
".\/content.css"
]
}
],
"background": {
"service_worker": "bg-wrapper.js"
},
"permissions": [
"storage",
"webNavigation"
],
"host_permissions": [
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
]
} | |