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).
拡張機能の基本情報
名前 | ComOn com! |
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 |
Eメール | [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" } ] } |