Show YouTube comments while watching
Show YouTube comments on the right of the video. Read comments while you watch!
Show YouTube comments while watching란 무엇입니까?
Show YouTube comments while watching은(는) Tanguy Kurylo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show YouTube comments on the right of the video. Read comments while you watch!"입니다.
확장 프로그램 스크린샷
Show YouTube comments while watching 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
---------- Want to read comments while you watch a YouTube video? Tired of scrolling or pausing just to read comments? We got you. Comments now appear to the right of the video player, and suggested videos are moved underneath the video player. ---------- [Updates] Thank you so much for your comments! I do read all of them and appreciate your feedback. 1.0.4 * Fixed the extension breaking due to YouTube layout changes. Thank you all for your quick bug reports. 1.0.3 * Fixed a bug where comments would only swap after refreshing the page. * Migrated to Manifest V3 (new thingies from Google) before it becomes mandatory. Will be monitoring closely for bugs.
확장 프로그램 기본 정보
이름 | Show YouTube comments while watching |
ID | gonknbphdaoahjnamfjpaincammofgae |
공식 URL | https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae |
설명 | Show YouTube comments on the right of the video. Read comments while you watch! |
파일 크기 | 7.54 KB |
설치 횟수 | 13,391 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2022-08-03 |
출시 날짜 | 2019-04-06 |
평점 | 4.48/5 총 91 개의 평점 |
개발자 | Tanguy Kurylo |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tanguykurylo/show-youtube-comments |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show YouTube comments while watching", "version": "1.0.4", "description": "Show YouTube comments on the right of the video. Read comments while you watch!", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "showYoutubeComments.js" ], "css": [ "showYoutubeComments.css" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/watch*" ], "permissions": [ "scripting", "webNavigation", "storage" ], "background": { "service_worker": "detectPageChange.js" }, "action": { "default_popup": "popup.html", "default_icons": { "128": "128.png" } }, "icons": { "128": "128.png" } } |