Video Stream Shortcuts
Add some YouTube-like shortcuts to video streaming services
Video Stream Shortcuts란 무엇입니까?
Video Stream Shortcuts은(는) Masaki Kobayashi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add some YouTube-like shortcuts to video streaming services"입니다.
확장 프로그램 스크린샷
Video Stream Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Want YouTube-like shortcut keys in other streaming services? This extension enables you to use some shortcuts below. k: Pause/Resume the video j: Move 10 seconds backward l: Move 10 seconds forward f: Enable/Disable fullscreen m: Mute/Unmute Shift+, / <: Decrease playback speed Shift+. / >: Increase playback speed 0–9: Jump to percentages of the video, except for DAZN. Supported services - Prime Video - TED - Microsoft Stream - DAZN - OPENREC This extension is open source. Suggestions and pull requests are welcomed! https://github.com/mkobayashime/video-stream-shortcuts
확장 프로그램 기본 정보
이름 | Video Stream Shortcuts |
ID | jkclfjpmbcenbmmheenahiglgkefekim |
공식 URL | https://chromewebstore.google.com/detail/video-stream-shortcuts/jkclfjpmbcenbmmheenahiglgkefekim |
설명 | Add some YouTube-like shortcuts to video streaming services |
파일 크기 | 32.35 KB |
설치 횟수 | 750 |
현재 버전 | 4.1.0 |
최근 업데이트 | 2023-09-10 |
출시 날짜 | 2020-06-25 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Masaki Kobayashi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mkobayashime/video-stream-shortcuts |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Stream Shortcuts", "version": "4.1.0", "description": "Add some YouTube-like shortcuts to video streaming services", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/web.microsoftstream.com\/*" ], "js": [ "msStream.js" ] }, { "matches": [ "https:\/\/www.amazon.co.jp\/gp\/video\/*" ], "js": [ "primeVideo.js" ] }, { "matches": [ "https:\/\/www.ted.com\/talks\/*" ], "run_at": "document_end", "js": [ "ted.js" ] }, { "matches": [ "https:\/\/www.dazn.com\/*" ], "run_at": "document_end", "js": [ "dazn.js" ] }, { "matches": [ "https:\/\/www.openrec.tv\/live\/*" ], "run_at": "document_end", "js": [ "openrec.js" ] } ], "permissions": [ "storage" ], "web_accessible_resources": [ "svg\/*", "*.css" ] } |