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
官方網址 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"
    ]
}