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 |
| 官方網址 | 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"
}
]
} | |