YouTube Views
Track your YouTube viewing activity
什么是YouTube Views?
YouTube Views是由yagrawl2开发的Chrome扩展程序,该扩展的主要功能是“Track your YouTube viewing activity”。
扩展截图
下载YouTube Views扩展crx文件
下载YouTube Views扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension to track your viewing activity on YouTube. It tracks metrics like 'number of videos watched', 'total number of views' and 'top 5 most watched videos'. Future iterations of the extension would include more tracking. All the data is stored on your browser and guarantees complete privacy. 扩展基本信息
| 名称 | |
| ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
| 官方URL | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
| 简介 | Track your YouTube viewing activity |
| 文件大小 | 186 KB |
| 安装次数 | 342 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2020-07-12 |
| 上架时间 | 2020-07-12 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | yagrawl2 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Views",
"version": "1.0.0",
"description": "Track your YouTube viewing activity",
"icons": {
"128": "assets\/icons\/icon_128.png",
"48": "assets\/icons\/icon_48.png",
"16": "assets\/icons\/icon_16.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"scripts": [
"app\/background.js"
],
"persistent": true
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"app\/content.js"
],
"css": [
"styles\/content.css"
]
}
]
} | |