Reddit Comments for YouTube

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

Was ist Reddit Comments for YouTube?

Reddit Comments for YouTube ist eine Chrome-Erweiterung, die von Taylor O'Neill entwickelt wurde, und ihr Hauptmerkmal ist "Improve your YouTube experience by adding a Reddit comment section to the site!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Reddit Comments for YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reddit Comments for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Reddit Comments for YouTube Reddit Comments for YouTube
ID oeehccpigolildhagkmlpofjplfajiam
Offizielle URL https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam
Beschreibung Improve your YouTube experience by adding a Reddit comment section to the site!
Dateigröße 22.91 KB
Installationsanzahl 4,000
Aktuelle Version 2.5.3
Letztes Update 2022-03-10
Veröffentlichungsdatum 2020-02-29
Bewertung 4.71/5 Insgesamt 21 Bewertungen
Entwickler Taylor O'Neill
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tayloroneill/Reddit-Comments-for-YouTube
Unterstützte Sprachen 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}"
        }
    }
}