YouTube Timed Comments

Show comments with timestamps

Wat is YouTube Timed Comments?

YouTube Timed Comments is een Chrome-extensie ontwikkeld door lerxst, en de belangrijkste functie is "Show comments with timestamps".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Timed Comments

Download YouTube Timed Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam YouTube Timed Comments YouTube Timed Comments
ID mfmjnhncafdcdegeiamnjpnjgmmkkaal
Officiële URL https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal
Beschrijving Show comments with timestamps
Bestandsgrootte 96.02 KB
Aantal Installaties 159
Huidige Versie 0.0.0.1
Laatst Bijgewerkt 2019-09-03
Publicatiedatum 2019-09-03
Beoordeling 3.33/5 Totaal 3 Beoordelingen
Ontwikkelaar lerxst
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}