Comments Sidebar for Youtube
Allows you to watch videos and read comments at the same time on Youtube.
Comments Sidebar for Youtubeとは何ですか?
Comments Sidebar for Youtubeはtberghuisによって開発されたChromeの拡張機能で、その主な機能は「Allows you to watch videos and read comments at the same time on Youtube.」です。
拡張機能のスクリーンショット
Comments Sidebar for Youtube拡張機能のCRXファイルをダウンロード
Comments Sidebar for Youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome Extension to watch and read comments at the same time on Youtube. Features a draggable divider to resize the player and the sidebar. Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube
拡張機能の基本情報
名前 | Comments Sidebar for Youtube |
ID | cgijphidahihhjphcfklefeknhemmdgh |
公式URL | https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh |
説明 | Allows you to watch videos and read comments at the same time on Youtube. |
ファイルサイズ | 42.12 KB |
インストール数 | 7,932 |
現在のバージョン | 0.6.0 |
最終更新日 | 2023-07-24 |
公開日 | 2019-09-24 |
評価 | 4.60/5 合計 57 レビュー |
開発者 | tberghuis |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tberghuis/watch-and-read-comments-for-youtube |
ヘルプページのURL | https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comments Sidebar for Youtube", "version": "0.6.0", "manifest_version": 3, "description": "Allows you to watch videos and read comments at the same time on Youtube.", "icons": { "16": "img\/icon.16.png", "32": "img\/icon.32.png", "48": "img\/icon.48.png", "128": "img\/icon.128.png" }, "author": "tberghuis", "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "content\/vite.css" ], "js": [ "content.js", "content\/vite.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "inject-vite.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |