YouTube video timestamps
Displays YouTube video timecodes from descriptions and comments.
YouTube video timestamps란 무엇입니까?
YouTube video timestamps은(는) Roman Sadovnikov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays YouTube video timecodes from descriptions and comments."입니다.
확장 프로그램 스크린샷
YouTube video timestamps 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If there are timecodes in the description or comments to a YouTube video, the extension catches them and displays them under the video. So far, the extension only shows the timecodes that you have opened on your computer.
확장 프로그램 기본 정보
이름 | YouTube video timestamps |
ID | fkcajpjelgilnhhadfpchooafgdjacpn |
공식 URL | https://chromewebstore.google.com/detail/youtube-video-timestamps/fkcajpjelgilnhhadfpchooafgdjacpn |
설명 | Displays YouTube video timecodes from descriptions and comments. |
파일 크기 | 25.97 KB |
설치 횟수 | 20 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-04-12 |
출시 날짜 | 2021-04-12 |
개발자 | Roman Sadovnikov |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,hu,pl,sk,sl,fi,sv,cs,el,sr,bg,iw,fa,mr,hi,bn,gu,ta,te,ml,th,am-ET,ar |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "128": "\/icon.png" }, "manifest_version": 2, "background": { "scripts": [ "\/js\/chrome.js" ] }, "permissions": [ "https:\/\/*.youtube.com\/*" ], "name": "YouTube video timestamps", "default_locale": "en", "description": "Displays YouTube video timecodes from descriptions and comments.", "browser_action": { "default_icon": "\/icon.png", "default_popup": "\/options.html" }, "content_scripts": [ { "all_frames": true, "css": [ "\/styles\/page_styles.css" ], "js": [ "\/js\/content.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "web_accessible_resources": [ "styles\/*.css", "*.js" ], "version": "1.0" } |