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 |
电子邮箱 | [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\/*" ] } ] } |