ComOn com!
Show coms in YouTube videos in realtime by retrieving timestamps
什么是ComOn com!?
ComOn com!是由https://slals.io开发的Chrome扩展程序,该扩展的主要功能是“Show coms in YouTube videos in realtime by retrieving timestamps”。
扩展截图
下载ComOn com!扩展crx文件
下载ComOn com!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Show YouTube comments in the video while watching.
It's a prototype, feel free to bring some ideas for this project here :
https://github.com/Slaals/comoncom
How to :
- Install it,
- Watch You Tube videos,
- Enjoy
Issue / Todo :
- Doesn't work in full screen,
- Doesn't have any waiting list, it only shows the first comments it found,
- Only get 100 comments (API limitation). 扩展基本信息
| 名称 | |
| ID | nfmkbcjacdnbdnedcbnmecdcedoijpna |
| 官方URL | https://chromewebstore.google.com/detail/comon-com/nfmkbcjacdnbdnedcbnmecdcedoijpna |
| 简介 | Show coms in YouTube videos in realtime by retrieving timestamps |
| 文件大小 | 32.63 KB |
| 安装次数 | 46 |
| 当前版本 | 1.3.3 |
| 更新时间 | 2017-02-07 |
| 上架时间 | 2017-02-07 |
| 评分 | 3.00/5 共2次评分 |
| 开发者 | https://slals.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.youtube.com/watch?v=S_P2noWHyzo |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ComOn com!",
"description": "Show coms in YouTube videos in realtime by retrieving timestamps",
"version": "1.3.3",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "comon_on.png",
"default_title": "Comon"
},
"content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"permissions": [
"tabs",
"activeTab",
"https:\/\/www.youtube.com\/watch*",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"com.js"
],
"css": [
"style.css"
],
"run_at": "document_idle"
}
]
} | |