Threads for YouTube

Reddit comments on YouTube.

¿Qué es Threads for YouTube?

Threads for YouTube es una extensión de Chrome desarrollada por a-bravo, y su función principal es "Reddit comments on YouTube.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Threads for YouTube

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

                        You can switch between a YouTube video's related Reddit posts, Reddit comments, and YouTube comments.

Features:
    - Works for all YT videos (private, deleted, etc)
    - List all Reddit posts related to the current video
        - Sort posts
        - Easily go to each post's linked timestamp (if present)
        - Blacklist subreddits
    - View each post's comments 
        - Sort comments
        - Easily collapse comments
        - Hide/Show all child comments
        - Option to auto collapse 'stickied' u/AutoModerator comments
    - Compatible with YouTube's dark mode
    - Switches to Youtube comments if no reddit comments are found
    - Change any default settings in the options
    - Available on Chrome & Firefox

Upcoming Features:
    - Log in to save, upvote, post, comment
    - Internationalize extension and store listings

Threads for YouTube doesn't show ads and doesn't send user's data anywhere (it does use the YouTube video ID to get Reddit posts/comments). It is fully open-source (https://github.com/a-bravo/threads-for-youtube). Contributions are welcome!

*** If you have any problems or feature requests, submit them to the bug tracker (https://github.com/a-bravo/threads-for-youtube/issues). ***

----------

Permissions explained:
    - youtube.com: required in order to add Reddit comments to YouTube pages
    - reddit.com: required in order to access Reddit's api                    

Información Básica de la Extensión

Nombre Threads for YouTube Threads for YouTube
ID npbmhogimiolmklafhlpbifkjinoadkh
URL Oficial https://chromewebstore.google.com/detail/threads-for-youtube/npbmhogimiolmklafhlpbifkjinoadkh
Descripción Reddit comments on YouTube.
Tamaño del Archivo 103 KB
Cantidad de Instalaciones 26
Versión Actual 0.13.0
Última Actualización 2023-10-12
Fecha de Publicación 2020-04-20
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador a-bravo
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/a-bravo/threads-for-youtube#readme
URL de la Página de Ayuda https://github.com/a-bravo/threads-for-youtube/issues
URL de la Página de Política de Privacidad https://github.com/a-bravo/threads-for-youtube/blob/master/PRIVACY.md
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Threads for YouTube",
    "short_name": "TFY",
    "version": "0.13.0",
    "description": "Reddit comments on YouTube.",
    "homepage_url": "https:\/\/github.com\/a-bravo\/threads-for-youtube#readme",
    "icons": {
        "16": "icons\/[email protected]",
        "32": "icons\/[email protected]",
        "48": "icons\/[email protected]",
        "96": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "minimum_chrome_version": "43",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "53.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "permissions": [
        "storage",
        "https:\/\/*.reddit.com\/*"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    }
}