Audio/Video Playback Speed Controller
A simple interface to control the playback speed of audio and video elements in a webpage.
Audio/Video Playback Speed Controller란 무엇입니까?
Audio/Video Playback Speed Controller은(는) Chris Gallegos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple interface to control the playback speed of audio and video elements in a webpage."입니다.
확장 프로그램 스크린샷
Audio/Video Playback Speed Controller 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Controls the playback speed of all audio and video elements on a webpage. Features: - No permissions required - 5 preset speeds - Custom speed slider color coded to indicate fast-forward/slow-motion: - Green means normal speed - Cyan means fast-forward - Red means slow-motion - Custom speed slider snaps into place for common speeds - Speed setting is automatically saved for each individual webpage
확장 프로그램 기본 정보
이름 | Audio/Video Playback Speed Controller |
ID | adibdjpkkmpgfidnjngnfdpcghohhbmm |
공식 URL | https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm |
설명 | A simple interface to control the playback speed of audio and video elements in a webpage. |
파일 크기 | 450 KB |
설치 횟수 | 15,128 |
현재 버전 | 1.1 |
최근 업데이트 | 2022-01-10 |
출시 날짜 | 2020-04-30 |
평점 | 4.44/5 총 27 개의 평점 |
개발자 | Chris Gallegos |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | http://gallegosaudio.com/Extensions-Privacy-Policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Audio\/Video Playback Speed Controller", "short_name": "Playback Controller", "version": "1.1", "description": "A simple interface to control the playback speed of audio and video elements in a webpage.", "browser_action": { "default_title": "Playback Controller", "default_popup": "popup.html", "default_icon": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab" ], "icons": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } } |