Timestamped YouTube Comments
Allows users to see timestamped comments as they watch YouTube
Timestamped YouTube Comments란 무엇입니까?
Timestamped YouTube Comments은(는) kenny에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows users to see timestamped comments as they watch YouTube"입니다.
확장 프로그램 스크린샷
Timestamped YouTube Comments 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: - Pause to persist a comment - Hover over a comment to see its replies - Click the Comments icon in the video bar to toggle comments on/off - Click on a comment to open a new tab with that comment at the top of the comment section (useful for replying to comments) - Use your own YouTube Data API key (pin the extension to your toolbar and open the popup to access) 9/30/23 update: You must now create and enter your own YouTube Data API key. The extension will default to use my key but YouTube has cut down my quota drastically so the extension will probably not work if you don't use your own :( Contact support at [email protected] or leave a review if you like it!
확장 프로그램 기본 정보
이름 | Timestamped YouTube Comments |
ID | gnpppldhfbbagiaalkddddajadhlgofm |
공식 URL | https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm |
설명 | Allows users to see timestamped comments as they watch YouTube |
파일 크기 | 884 KB |
설치 횟수 | 2,313 |
현재 버전 | 1.23.0 |
최근 업데이트 | 2023-10-01 |
출시 날짜 | 2020-02-06 |
평점 | 4.27/5 총 75 개의 평점 |
개발자 | kenny |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "Timestamped YouTube Comments", "name": "Timestamped YouTube Comments", "manifest_version": 3, "action": { "default_title": "Timestamped YouTube Comments", "default_popup": "popup.html" }, "description": "Allows users to see timestamped comments as they watch YouTube", "version": "1.23.0", "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "\/static\/js\/main.js" ], "css": [ "\/static\/css\/main.css" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "icons": { "16": "chat16.png", "32": "chat32.png", "48": "chat512.png", "128": "chat128.png" }, "web_accessible_resources": [ { "resources": [ "*.svg", "*.png", "*.wav" ], "matches": [ "https:\/\/*\/*" ] } ] } |