YouTube Timed Comments
Show comments with timestamps
Qu'est-ce que YouTube Timed Comments ?
YouTube Timed Comments est une extension Chrome développée par lerxst, et sa fonction principale est "Show comments with timestamps".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Timed Comments
Téléchargez les fichiers d'extension YouTube Timed Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
See comments that have timestamps, show up at the appropriate time. Note: Only comments that have loaded on the page will show up.
Informations de Base sur l'Extension
Nom | |
ID | mfmjnhncafdcdegeiamnjpnjgmmkkaal |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal |
Description | Show comments with timestamps |
Taille du Fichier | 96.02 KB |
Nombre d'Installations | 159 |
Version Actuelle | 0.0.0.1 |
Dernière Mise à Jour | 2019-09-03 |
Date de Publication | 2019-09-03 |
Évaluation | 3.33/5 Total 3 Évaluations |
Développeur | lerxst |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |