Reddit Comments for YouTube

Improve your YouTube experience by adding a Reddit comment section to the site!

¿Qué es Reddit Comments for YouTube?

Reddit Comments for YouTube es una extensión de Chrome desarrollada por Taylor O'Neill, y su función principal es "Improve your YouTube experience by adding a Reddit comment section to the site!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Reddit Comments for YouTube

Descarga archivos de extensión Reddit Comments 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

                        This extension:
- Works with the new YouTube layout
- Is actively being updated
- Supports voting and commenting
- Allows you to blacklist subreddits
- Is open source

This is a fork of Lucien Maloney's extension for Chromium-based browsers and is not affiliated in any way with Reddit Inc. or YouTube, LLC.                    

Información Básica de la Extensión

Nombre Reddit Comments for YouTube Reddit Comments for YouTube
ID oeehccpigolildhagkmlpofjplfajiam
URL Oficial https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam
Descripción Improve your YouTube experience by adding a Reddit comment section to the site!
Tamaño del Archivo 22.91 KB
Cantidad de Instalaciones 4,000
Versión Actual 2.5.3
Última Actualización 2022-03-10
Fecha de Publicación 2020-02-29
Calificación 4.71/5 Total de 21 Calificaciones
Desarrollador Taylor O'Neill
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/tayloroneill/Reddit-Comments-for-YouTube
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "2.5.3",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/",
        "https:\/\/api.reddit.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "thread.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "16px_icon.png",
        "48": "48px_icon.png",
        "128": "128px_icon.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "popup\/popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{cc2cbbd2-14d9-4260-b78d-ed166ca4e6cc}"
        }
    }
}