YouTube TimeSlider
Set persistent start and end times for any YouTube video.
YouTube TimeSlider란 무엇입니까?
YouTube TimeSlider은(는) Paul Berry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set persistent start and end times for any YouTube video."입니다.
확장 프로그램 스크린샷
YouTube TimeSlider 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Set start and end times for any YouTube video with a simple slider. Useful for music videos where you want to skip the beginning/end of the video (annoying intros, outros etc.). Instructions: - Drag to set the sliders to the desired positions. - Click the 'Save' button below the slider to save the positions for the current video. - Next time you load up the video, it will automatically start and end at the times you specified. - The 'Reset' button will remove the saved times from that video. - The 'End here' button will set the end time to the current video time. Extra Features: - Automatic syncing of times between devices - Optional Import/Export/Delete options in popup menu Works with: - Single videos - Playlists - Looped videos - Autoplay
확장 프로그램 기본 정보
이름 | YouTube TimeSlider |
ID | gmohlfoielefdlnemadaomfpegpengjn |
공식 URL | https://chromewebstore.google.com/detail/youtube-timeslider/gmohlfoielefdlnemadaomfpegpengjn |
설명 | Set persistent start and end times for any YouTube video. |
파일 크기 | 27.08 KB |
설치 횟수 | 45 |
현재 버전 | 3.3 |
최근 업데이트 | 2022-05-16 |
출시 날짜 | 2017-12-31 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Paul Berry |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube TimeSlider", "description": "Set persistent start and end times for any YouTube video.", "version": "3.3", "manifest_version": 3, "permissions": [ "storage" ], "optional_permissions": [ "downloads" ], "background": { "service_worker": "\/background\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_start", "css": [ "\/content\/content.css", "\/res\/nouislider.min.css" ], "js": [ "\/content\/content.js", "\/res\/nouislider.min.js" ] } ], "action": { "default_popup": "\/popup\/popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |