YouTube Comments
YouTube comments chrome extension
¿Qué es YouTube Comments?
YouTube Comments es una extensión de Chrome desarrollada por https://tomorrowapps.com, y su función principal es "YouTube comments chrome extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Comments
Descarga archivos de extensión YouTube Comments 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
YTC Extension makes youtube comments reading easier. This allows users to go directly to the comment section and read them right away. Most users who already watched a certain video want to read comments right away but waiting for the video to load so they can pause it is a hassle. YTC automates that process and makes it easier for the user. YTC is very useful for youtubers, channels owners, subscibers and even for trolls who are looking for jokes in the comment section. Have fun!
Información Básica de la Extensión
Nombre | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
URL Oficial | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
Descripción | YouTube comments chrome extension |
Tamaño del Archivo | 924 KB |
Cantidad de Instalaciones | 23 |
Versión Actual | 1.0 |
Última Actualización | 2018-07-08 |
Fecha de Publicación | 2018-07-08 |
Calificación | 2.50/5 Total de 2 Calificaciones |
Desarrollador | https://tomorrowapps.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://tomorrowapps.com/ytc |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Comments", "short_name": "YTC Extension", "version": "1.0", "description": "YouTube comments chrome extension", "manifest_version": 2, "permissions": [ "tabs", "activeTab", "declarativeContent", "storage", "webRequest", "*:\/\/*.youtube.com\/*", "webRequestBlocking" ], "content_scripts": [ { "all_frames": true, "js": [ "libs\/jquery.min.js", "content.js" ], "match_about_blank": true, "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/i16f.png", "32": "images\/i32f.png", "48": "images\/i48f.png", "128": "images\/i128f.png" } }, "icons": { "16": "images\/i16f.png", "32": "images\/i32f.png", "48": "images\/i48f.png", "128": "images\/i128f.png" }, "background": { "scripts": [ "background.js" ], "persistent": true } } |