Media Controller

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

What is Media Controller?

Media Controller is a Chrome extension developed by http://www.thundron.com, and its main feature is "An extension that gives you precise control of Chrome's native media player.".

Extension Screenshots

screenshot

Download Media Controller Extension CRX File

Download Media Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Media Controller Media Controller
ID igioighnenobjloojpkhplonhedajmfi
Official URL https://chrome.google.com/webstore/detail/media-controller/igioighnenobjloojpkhplonhedajmfi
Description An extension that gives you precise control of Chrome's native media player.
File Size 22 KB
Installation Count 1,388
Current Version 0.22
Last Updated 2014-12-19
Publish Date 2014-12-18
Rating 4.24/5 Total 21 Ratings
Developer http://www.thundron.com
Payment Type free
Extension Website http://www.thundron.com
Help Page URL http://www.thundron.com
Supported Languages 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"
    ]
}