Comment Overlay
Read comments and watch Youtube videos at the same time.
¿Qué es Comment Overlay?
Comment Overlay es una extensión de Chrome desarrollada por Unknown, y su función principal es "Read comments and watch Youtube videos at the same time.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Comment Overlay
Descarga archivos de extensión Comment Overlay 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
Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button. Version 1.2 - Dark Mode added. Version 1.1: - Theater mode is now supported. Version 1.0: - Original release.
Información Básica de la Extensión
Nombre | Comment Overlay |
ID | mjkhjmibjakfenpldlgjogpiebkjliec |
URL Oficial | https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec |
Descripción | Read comments and watch Youtube videos at the same time. |
Tamaño del Archivo | 53.86 KB |
Cantidad de Instalaciones | 251 |
Versión Actual | 1.2 |
Última Actualización | 2018-11-21 |
Fecha de Publicación | 2018-11-20 |
Calificación | 3.83/5 Total de 6 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comment Overlay", "version": "1.2", "web_accessible_resources": [ "mypage.htm" ], "description": "Read comments and watch Youtube videos at the same time.", "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "https:\/\/www.youtube.com\/watch*?v=*", "https:\/\/www.youtube.com\/" ], "js": [ "jquery-3.3.1.min.js", "content.js", "popup.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/" ] } ], "browser_action": { "default_title": "Comment Overlay", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2 } |