YouTube Comments
YouTube comments chrome extension
Qu'est-ce que YouTube Comments ?
YouTube Comments est une extension Chrome développée par https://tomorrowapps.com, et sa fonction principale est "YouTube comments chrome extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Comments
Téléchargez les fichiers d'extension YouTube 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
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!
Informations de Base sur l'Extension
Nom | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
URL Officiel | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
Description | YouTube comments chrome extension |
Taille du Fichier | 924 KB |
Nombre d'Installations | 23 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2018-07-08 |
Date de Publication | 2018-07-08 |
Évaluation | 2.50/5 Total 2 Évaluations |
Développeur | https://tomorrowapps.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://tomorrowapps.com/ytc |
Langues Prises en Charge | 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 } } |