DevCamp Video Player Enhancer

Improves upon the default video player that is built into the DevCamp website

DevCamp Video Player Enhancer란 무엇입니까?

DevCamp Video Player Enhancer은(는) https://andrewsumsion.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improves upon the default video player that is built into the DevCamp website"입니다.

DevCamp Video Player Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        DevCamp Video Player is a Chrome and Firefox extension built by someone who, like you, has had to deal with the default DevCamp video player.

There are a number of limitations including no way to change the playback speed of the video, and no keyboard controls at all.

The goal of this extension is to fix those limitations and make you spend less time focusing on the video player, and more time on the actual video.                    

확장 프로그램 기본 정보

이름 DevCamp Video Player Enhancer DevCamp Video Player Enhancer
ID mkljnifggpnpaniaokhiaobfocgaiejb
공식 URL https://chromewebstore.google.com/detail/devcamp-video-player-enha/mkljnifggpnpaniaokhiaobfocgaiejb
설명 Improves upon the default video player that is built into the DevCamp website
파일 크기 48.56 KB
설치 횟수 29
현재 버전 0.2
최근 업데이트 2018-06-19
출시 날짜 2018-06-18
평점 5.00/5 총 4 개의 평점
개발자 https://andrewsumsion.github.io
결제 유형 free
확장 프로그램 웹 사이트 http://andrewsumsion.github.io/devcamp-video-player-enhancer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DevCamp Video Player Enhancer",
    "version": "0.2",
    "description": "Improves upon the default video player that is built into the DevCamp website",
    "icons": {
        "16": "logos\/icon-16.png",
        "32": "logos\/icon-32.png",
        "48": "logos\/icon-48.png",
        "128": "logos\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.devcamp.com\/*\/guide\/*",
                "https:\/\/*.devcamp.com\/*\/guide\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js",
                "spacebar.js",
                "video-speed.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "manifest_version": 2
}