YouTube Comments
YouTube comments chrome extension
Cos'è YouTube Comments?
YouTube Comments è un'estensione di Chrome sviluppata da https://tomorrowapps.com, e la sua funzione principale è "YouTube comments chrome extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Comments
Scarica i file di estensione YouTube 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
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!
Informazioni di Base sull'Estensione
Nome | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
Descrizione | YouTube comments chrome extension |
Dimensione del File | 924 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-07-08 |
Data di Pubblicazione | 2018-07-08 |
Valutazione | 2.50/5 Totale 2 Valutazioni |
Sviluppatore | https://tomorrowapps.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://tomorrowapps.com/ytc |
Lingue Supportate | 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 } } |