Simple Video Skipper
Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.
Simple Video Skipper란 무엇입니까?
Simple Video Skipper은(는) qifen.pocket에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s."입니다.
확장 프로그램 스크린샷
Simple Video Skipper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
To save your time to do more things. Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.
확장 프로그램 기본 정보
이름 | Simple Video Skipper |
ID | biofolodkgjpmiokhifjifhkjdifdopp |
공식 URL | https://chromewebstore.google.com/detail/simple-video-skipper/biofolodkgjpmiokhifjifhkjdifdopp |
설명 | Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s. |
파일 크기 | 4.37 KB |
설치 횟수 | 46 |
현재 버전 | 1.2 |
최근 업데이트 | 2021-02-07 |
출시 날짜 | 2021-01-28 |
개발자 | qifen.pocket |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Video Skipper", "description": "Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.", "version": "1.2", "manifest_version": 2, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "commands": { "skip-forward-5": { "suggested_key": { "default": "Ctrl+Left" }, "description": "skip forward 5s" }, "skip-5": { "suggested_key": { "default": "Ctrl+Right" }, "description": "skip forward 5s" }, "skip-forward-10": { "suggested_key": { "default": "Ctrl+Shift+Left" }, "description": "skip forward 10s" }, "skip-10": { "suggested_key": { "default": "Ctrl+Shift+Right" }, "description": "skip forward 10s" } } } |