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ファイルをダウンロード

Media Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}