YouTube Comments
YouTube comments chrome extension
YouTube Comments란 무엇입니까?
YouTube Comments은(는) https://tomorrowapps.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YouTube comments chrome extension"입니다.
확장 프로그램 스크린샷
YouTube Comments 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
공식 URL | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
설명 | YouTube comments chrome extension |
파일 크기 | 924 KB |
설치 횟수 | 23 |
현재 버전 | 1.0 |
최근 업데이트 | 2018-07-08 |
출시 날짜 | 2018-07-08 |
평점 | 2.50/5 총 2 개의 평점 |
개발자 | https://tomorrowapps.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://tomorrowapps.com/ytc |
지원되는 언어 | 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 } } |