YouTube Comments
YouTube comments chrome extension
Vad är YouTube Comments?
YouTube Comments är en Chrome-tillägg utvecklad av https://tomorrowapps.com, och dess huvudfunktion är "YouTube comments chrome extension".
Tilläggsskärmbilder
Ladda ner YouTube Comments-förlängningens CRX-fil
Ladda ner YouTube Comments-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
Beskrivning | YouTube comments chrome extension |
Filstorlek | 924 KB |
Antal Installationer | 23 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2018-07-08 |
Publiceringsdatum | 2018-07-08 |
Betyg | 2.50/5 Totalt 2 Betyg |
Utvecklare | https://tomorrowapps.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://tomorrowapps.com/ytc |
Stödda Språk | 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 } } |