YouTube Chapters In Player
Shows YouTube chapters right in the player
YouTube Chapters In Player란 무엇입니까?
YouTube Chapters In Player은(는) ris58h에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows YouTube chapters right in the player"입니다.
확장 프로그램 스크린샷
YouTube Chapters In Player 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just click on chapters button at the bottom of YouTube video player to show chapters list right in the player. Key features: - Shows chapters right in the player. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Previous/Next chapter buttons. - Key Moments support. - Chapters from pinned comment. - Open Source https://github.com/ris58h/youtube-chapters-in-player
확장 프로그램 기본 정보
이름 | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
공식 URL | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
설명 | Shows YouTube chapters right in the player |
파일 크기 | 14.15 KB |
설치 횟수 | 955 |
현재 버전 | 0.3.2 |
최근 업데이트 | 2023-11-27 |
출시 날짜 | 2022-10-13 |
평점 | 4.13/5 총 8 개의 평점 |
개발자 | ris58h |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://ris58h.github.io/youtube-chapters-in-player/ |
도움말 페이지 URL | https://github.com/ris58h/youtube-chapters-in-player/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Chapters In Player", "description": "Shows YouTube chapters right in the player", "version": "0.3.2", "applications": { "gecko": { "id": "youtube-chapters-in-player@ris58h" } }, "permissions": [ "webRequest", "declarativeNetRequest", "declarativeNetRequestWithHostAccess", "declarativeNetRequestFeedback" ], "host_permissions": [ "https:\/\/www.youtube.com\/" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ] } |