YouTube Timed Comments
Show comments with timestamps
Cos'è YouTube Timed Comments?
YouTube Timed Comments è un'estensione di Chrome sviluppata da lerxst, e la sua funzione principale è "Show comments with timestamps".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Timed Comments
Scarica i file di estensione YouTube Timed Comments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
See comments that have timestamps, show up at the appropriate time. Note: Only comments that have loaded on the page will show up.
Informazioni di Base sull'Estensione
Nome | |
ID | mfmjnhncafdcdegeiamnjpnjgmmkkaal |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal |
Descrizione | Show comments with timestamps |
Dimensione del File | 96.02 KB |
Conteggio Installazioni | 159 |
Versione Corrente | 0.0.0.1 |
Ultimo Aggiornamento | 2019-09-03 |
Data di Pubblicazione | 2019-09-03 |
Valutazione | 3.33/5 Totale 3 Valutazioni |
Sviluppatore | lerxst |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |