YouTube Timed Comments
Show comments with timestamps
什么是YouTube Timed Comments?
YouTube Timed Comments是由lerxst开发的Chrome扩展程序,该扩展的主要功能是“Show comments with timestamps”。
扩展截图
下载YouTube Timed Comments扩展crx文件
下载YouTube Timed Comments扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
See comments that have timestamps, show up at the appropriate time.
Note: Only comments that have loaded on the page will show up. 扩展基本信息
| 名称 | |
| ID | mfmjnhncafdcdegeiamnjpnjgmmkkaal |
| 官方URL | https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal |
| 简介 | Show comments with timestamps |
| 文件大小 | 96.02 KB |
| 安装次数 | 159 |
| 当前版本 | 0.0.0.1 |
| 更新时间 | 2019-09-03 |
| 上架时间 | 2019-09-03 |
| 评分 | 3.33/5 共3次评分 |
| 开发者 | lerxst |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Timed Comments",
"description": "Show comments with timestamps",
"version": "0.0.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"third-party-scripts\/jquery-3.3.1.js",
"third-party-scripts\/arrive.min.js",
"third-party-scripts\/clamp.min.js",
"content-script.js"
]
}
],
"permissions": [
"contextMenus",
"webNavigation",
"tabs"
],
"background": {
"scripts": [
"event-page.js"
],
"persistent": false
},
"web_accessible_resources": [
"third-party-scripts\/jquery-3.3.1.js",
"third-party-scripts\/mustache.min.js",
"third-party-scripts\/arrive.min.js",
"third-party-scripts\/clamp.min.js",
"page-script.js"
],
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"192": "icons\/icon-192.png"
}
} | |