YouTube Timed Comments

Show comments with timestamps

Was ist YouTube Timed Comments?

YouTube Timed Comments ist eine Chrome-Erweiterung, die von lerxst entwickelt wurde, und ihr Hauptmerkmal ist "Show comments with timestamps".

Erweiterungsscreenshots

screenshot

YouTube Timed Comments-Erweiterungs-CRX-Datei herunterladen

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

                        See comments that have timestamps, show up at the appropriate time.

Note: Only comments that have loaded on the page will show up.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Timed Comments YouTube Timed Comments
ID mfmjnhncafdcdegeiamnjpnjgmmkkaal
Offizielle URL https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal
Beschreibung Show comments with timestamps
Dateigröße 96.02 KB
Installationsanzahl 159
Aktuelle Version 0.0.0.1
Letztes Update 2019-09-03
Veröffentlichungsdatum 2019-09-03
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler lerxst
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Timed Comments",
    "description": "Show comments with timestamps",
    "version": "0.0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "third-party-scripts\/jquery-3.3.1.js",
                "third-party-scripts\/arrive.min.js",
                "third-party-scripts\/clamp.min.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "webNavigation",
        "tabs"
    ],
    "background": {
        "scripts": [
            "event-page.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "third-party-scripts\/jquery-3.3.1.js",
        "third-party-scripts\/mustache.min.js",
        "third-party-scripts\/arrive.min.js",
        "third-party-scripts\/clamp.min.js",
        "page-script.js"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "192": "icons\/icon-192.png"
    }
}