Shortcuts for video acceleration

Allows to natively specify shortcuts for speed up or slow down active video

Shortcuts for video acceleration란 무엇입니까?

Shortcuts for video acceleration은(는) ABrill에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to natively specify shortcuts for speed up or slow down active video"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Shortcuts for video acceleration 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The extension allows to natively specify shortcuts for video acceleration in Chrome:
 - Speed up/slow down
 - Play video on max possible playback speed
 - Reset speed to usual 

1. Open source
2. Uses native shortcuts manager for extensions in Chrome
3. Almost no-code extension (less than 100 lines)
4. Pure and clean                    

확장 프로그램 기본 정보

이름 Shortcuts for video acceleration Shortcuts for video acceleration
ID chaknloimoaeonfpfkdoielpnhdfleaf
공식 URL https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf
설명 Allows to natively specify shortcuts for speed up or slow down active video
파일 크기 41.69 KB
설치 횟수 83
현재 버전 1.0
최근 업데이트 2020-04-29
출시 날짜 2020-04-26
개발자 ABrill
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator
도움말 페이지 URL https://github.com/andrey-brill/a-chrome-extensions/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortcuts for video acceleration",
    "description": "Allows to natively specify shortcuts for speed up or slow down active video",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "images\/video-accelerator-16px.png",
        "32": "images\/video-accelerator-32px.png",
        "64": "images\/video-accelerator-64px.png",
        "128": "images\/video-accelerator-128px.png",
        "256": "images\/video-accelerator-256px.png",
        "512": "images\/video-accelerator-512px.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Open hotkeys bindings"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "video-speed-up": {
            "description": "Speed up active video",
            "suggested_key": {
                "default": "Alt+Up"
            }
        },
        "video-slow-down": {
            "description": "Slow down active video",
            "suggested_key": {
                "default": "Alt+Down"
            }
        },
        "video-reset-speed": {
            "description": "Reset playback speed",
            "suggested_key": {
                "default": "Alt+Shift+Down"
            }
        },
        "video-max-speed": {
            "description": "Maximize playback speed",
            "suggested_key": {
                "default": "Alt+Shift+Up"
            }
        }
    }
}