Karamel: View Reddit comments on YouTube™

Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.

¿Qué es Karamel: View Reddit comments on YouTube™?

Karamel: View Reddit comments on YouTube™ es una extensión de Chrome desarrollada por odensc, y su función principal es "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Karamel: View Reddit comments on YouTube™

Descarga archivos de extensión Karamel: View Reddit comments on 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

                        Karamel is an open-source extension that adds Reddit comments to any YouTube videos you watch.

- View the comments for all posts on Reddit of the video you're watching
- Switch between YouTube and Reddit comments with a conveniently placed button 
- Upvote, reply to, and save comments on the same page!
- Supports dark and light theme
- Change the default comment mode and sort methods in the options
- Open-Source on GitHub: https://github.com/odensc/karamel

NOTE: This extension is in no way affiliated with YouTube, LLC; Google LLC; Reddit Inc.; or any company mentioned on this page.                    

Información Básica de la Extensión

Nombre Karamel: View Reddit comments on YouTube™ Karamel: View Reddit comments on YouTube™
ID halllmdjninjohpckldgkaolbhgkfnpe
URL Oficial https://chromewebstore.google.com/detail/karamel-view-reddit-comme/halllmdjninjohpckldgkaolbhgkfnpe
Descripción Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.
Tamaño del Archivo 135 KB
Cantidad de Instalaciones 5,391
Versión Actual 1.5.0
Última Actualización 2021-10-09
Fecha de Publicación 2019-06-03
Calificación 4.77/5 Total de 47 Calificaciones
Desarrollador odensc
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/odensc/karamel
URL de la Página de Ayuda https://github.com/odensc/karamel/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Karamel: View Reddit comments on YouTube\u2122",
    "short_name": "Karamel",
    "description": "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.",
    "version": "1.5.0",
    "browser_action": {
        "default_icon": "icon-48.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "https:\/\/www.reddit.com\/",
        "storage"
    ]
}