YouTube Comments

YouTube comments chrome extension

Was ist YouTube Comments?

YouTube Comments ist eine Chrome-Erweiterung, die von https://tomorrowapps.com entwickelt wurde, und ihr Hauptmerkmal ist "YouTube comments chrome extension".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube Comments-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Comments-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

                        YTC Extension makes youtube comments reading easier. This allows users to go directly to the comment section and read them right away. Most users who already watched a certain video want to read comments right away but waiting for the video to load so they can pause it is a hassle. YTC automates that process and makes it easier for the user. YTC is very useful for youtubers, channels owners, subscibers and even for trolls who are looking for jokes in the comment section.

Have fun!                    

Grundlegende Informationen zur Erweiterung

Name YouTube Comments YouTube Comments
ID egbebnjiaigjekepcalpcjeckiepebgl
Offizielle URL https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl
Beschreibung YouTube comments chrome extension
Dateigröße 924 KB
Installationsanzahl 23
Aktuelle Version 1.0
Letztes Update 2018-07-08
Veröffentlichungsdatum 2018-07-08
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler https://tomorrowapps.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://tomorrowapps.com/ytc
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Comments",
    "short_name": "YTC Extension",
    "version": "1.0",
    "description": "YouTube comments chrome extension",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage",
        "webRequest",
        "*:\/\/*.youtube.com\/*",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "libs\/jquery.min.js",
                "content.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/i16f.png",
            "32": "images\/i32f.png",
            "48": "images\/i48f.png",
            "128": "images\/i128f.png"
        }
    },
    "icons": {
        "16": "images\/i16f.png",
        "32": "images\/i32f.png",
        "48": "images\/i48f.png",
        "128": "images\/i128f.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}