Comments Sidebar for Youtube
Allows you to watch videos and read comments at the same time on Youtube.
¿Qué es Comments Sidebar for Youtube?
Comments Sidebar for Youtube es una extensión de Chrome desarrollada por tberghuis, y su función principal es "Allows you to watch videos and read comments at the same time on Youtube.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Comments Sidebar for Youtube
Descarga archivos de extensión Comments Sidebar for Youtube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Comments Sidebar for Youtube |
ID | cgijphidahihhjphcfklefeknhemmdgh |
URL Oficial | https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh |
Descripción | Allows you to watch videos and read comments at the same time on Youtube. |
Tamaño del Archivo | 42.12 KB |
Cantidad de Instalaciones | 7,932 |
Versión Actual | 0.6.0 |
Última Actualización | 2023-07-24 |
Fecha de Publicación | 2019-09-24 |
Calificación | 4.60/5 Total de 57 Calificaciones |
Desarrollador | tberghuis |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/tberghuis/watch-and-read-comments-for-youtube |
URL de la Página de Ayuda | https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues |
Idiomas Soportados | 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\/*" ] } ] } |