YouTube Comment Expander
This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.
¿Qué es YouTube Comment Expander?
YouTube Comment Expander es una extensión de Chrome desarrollada por Joel Henke, y su función principal es "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.".
Descargar Archivo CRX de la Extensión YouTube Comment Expander
Descarga archivos de extensión YouTube Comment Expander 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
The bug that this extension fixes happens when you start watching a YouTube video and enter full screen before the comments load. The 'Read More' link will be missing for the first several long comments. This extension allows you to read those longer comments without reloading the page or loading more comments.
Información Básica de la Extensión
Nombre | YouTube Comment Expander |
ID | bknceopjdngnciilahnddipmpjgmpfhe |
URL Oficial | https://chromewebstore.google.com/detail/youtube-comment-expander/bknceopjdngnciilahnddipmpjgmpfhe |
Descripción | This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers. |
Tamaño del Archivo | 4.99 KB |
Cantidad de Instalaciones | 88 |
Versión Actual | 1.0 |
Última Actualización | 2017-08-26 |
Fecha de Publicación | 2017-08-26 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Joel Henke |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Comment Expander", "version": "1.0", "description": "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.", "author": "Joel Henke", "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |