Media Controller

An extension that gives you precise control of Chrome's native media player.

Media Controller란 무엇입니까?

Media Controller은(는) http://www.thundron.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that gives you precise control of Chrome's native media player."입니다.

확장 프로그램 스크린샷

screenshot

Media Controller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Chrome browser includes native support for several media formats, such as mp3 audio and webm video. This is very useful as it allows for streaming of audio and video in the browser without the need to download the whole file, and without using a plugin.

However, the built in media controls can be very imprecise, especially with longer files such as podcasts. Media Controller solves this issue by providing buttons and keyboard shortcuts that skip by increments of five seconds and up.

Donations of any size are appreciated:
Bitcoin (BTC): 1CtxexJouagAiSPRjjZRQBG91QgsRyLpkq
Primecoin (XPM): AXajTCLJEBbvGCazX74QWjEiRxbizteTPN

Note: To enable the extension when playing local files, check the "Allow access to file URLs" checkbox in the extensions manager.

Please rate and review!


Changes:

10/20/13 v0.21: Added default volume level setting.
10/1/13 v0.2: Added keyboard shortcuts.
8/3/13 v0.1: Initial publish.                    

확장 프로그램 기본 정보

이름 Media Controller Media Controller
ID igioighnenobjloojpkhplonhedajmfi
공식 URL https://chrome.google.com/webstore/detail/media-controller/igioighnenobjloojpkhplonhedajmfi
설명 An extension that gives you precise control of Chrome's native media player.
파일 크기 22 KB
설치 횟수 1,388
현재 버전 0.22
최근 업데이트 2014-12-19
출시 날짜 2014-12-18
평점 4.24/5 총 21 개의 평점
개발자 http://www.thundron.com
결제 유형 free
확장 프로그램 웹 사이트 http://www.thundron.com
도움말 페이지 URL http://www.thundron.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Media Controller",
    "version": "0.22",
    "manifest_version": 2,
    "description": "An extension that gives you precise control of Chrome's native media player.",
    "offline_enabled": true,
    "icons": {
        "128": "128.png"
    },
    "page_action": {
        "default_icon": "128.png",
        "default_title": "Precisely control media playback",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ]
}