Video Commander

Video Commander provides keyboard shortcuts to loop, speed up, speed down, rewind time, advance time and other handy actions

Video Commander란 무엇입니까?

Video Commander은(는) noraworld에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Video Commander provides keyboard shortcuts to loop, speed up, speed down, rewind time, advance time and other handy actions"입니다.

확장 프로그램 스크린샷

screenshot

Video Commander 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        # Features
These shortcuts are available on the HTML5 video sites.

* P or space - toggle play and pause
* H or 0 - jump to beginning
* E - jump to end
* A or left arrow - rewind time
* S or right arrow - advance time
* D - speed down
* U - speed up
* R - reset speed
* F - toggle full screen
* L - partial loop
* 1 - jump to 10% playback position
* 2 - jump to 20% playback position
* 3 - jump to 30% playback position
* 4 - jump to 40% playback position
* 5 - jump to 50% playback position
* 6 - jump to 60% playback position
* 7 - jump to 70% playback position
* 8 - jump to 80% playback position
* 9 - jump to 90% playback position
* esc, ctrl-c - reset loop status
* esc - unfocus any elements

These shortcut keys are modifiable on options page. You can also change skip time amount(s) and whether scroll to player automatically or not.

For details, see https://github.com/noraworld/videocommander/blob/master/README.md


# Change Log
See https://github.com/noraworld/videocommander/blob/master/CHANGELOG.md


# Support
日本語もサポートしています。https://github.com/noraworld/videocommander/blob/master/README_jp.md を参照してください。                    

확장 프로그램 기본 정보

이름 Video Commander Video Commander
ID eadjicgcnpgfmklebobjkhlippgepdii
공식 URL https://chrome.google.com/webstore/detail/video-commander/eadjicgcnpgfmklebobjkhlippgepdii
설명 Video Commander provides keyboard shortcuts to loop, speed up, speed down, rewind time, advance time and other handy actions
파일 크기 1.08 MB
설치 횟수 479
현재 버전 0.4
최근 업데이트 2017-10-07
출시 날짜 2017-10-07
평점 3.82/5 총 17 개의 평점
개발자 noraworld
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/noraworld/videocommander
도움말 페이지 URL https://github.com/noraworld/videocommander/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Commander",
    "short_name": "videocommander",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Video Commander provides keyboard shortcuts to loop, speed up, speed down, rewind time, advance time and other handy actions",
    "homepage_url": "https:\/\/github.com\/noraworld\/videocommander",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "css": [
                "script.css"
            ],
            "js": [
                "jquery.js",
                "script.js"
            ]
        }
    ]
}