5 Speed Options for HTML5 videos

Allows users to store 5 different speed options and access them with keyboard shortcuts

5 Speed Options for HTML5 videos란 무엇입니까?

5 Speed Options for HTML5 videos은(는) h-1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows users to store 5 different speed options and access them with keyboard shortcuts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

5 Speed Options for HTML5 videos 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows users to store 5 different speed options and access them with keyboard shortcuts.

5SpeedOptions is heavily influenced by Video Speed Controller
Developer: https://github.com/igrigorik
Video Speed Controller code: https://github.com/igrigorik/videospeed
Chrome extension: https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk

Icon made by Freepik from www.flaticon.com
http://www.flaticon.com/free-icon/number-5_1875                    

확장 프로그램 기본 정보

이름 5 Speed Options for HTML5 videos 5 Speed Options for HTML5 videos
ID jgcledljkklfpfbidpfogmcihiphjibn
공식 URL https://chrome.google.com/webstore/detail/5-speed-options-for-html5/jgcledljkklfpfbidpfogmcihiphjibn
설명 Allows users to store 5 different speed options and access them with keyboard shortcuts
파일 크기 12.54 KB
설치 횟수 341
현재 버전 1.3
최근 업데이트 2018-10-03
출시 날짜 2018-10-03
평점 4.56/5 총 9 개의 평점
개발자 h-1
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/h-1/5SpeedOptions
도움말 페이지 URL https://github.com/h-1/5SpeedOptions
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "5 Speed Options for HTML5 videos",
    "description": "Allows users to store 5 different speed options and access them with keyboard shortcuts",
    "version": "1.3",
    "homepage_url": "https:\/\/github.com\/h-1\/5SpeedOptions",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/Number_5_16.png",
        "48": "icons\/Number_5_64.png",
        "128": "icons\/Number_5_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/Number_5_16.png",
            "48": "icons\/Number_5_64.png"
        },
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ]
}