Media Controller

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

Apa itu Media Controller?

Media Controller adalah ekstensi Chrome yang dikembangkan oleh http://www.thundron.com, dan fitur utamanya adalah "An extension that gives you precise control of Chrome's native media player.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Media Controller

Unduh file ekstensi Media Controller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Media Controller Media Controller
ID igioighnenobjloojpkhplonhedajmfi
URL Resmi https://chrome.google.com/webstore/detail/media-controller/igioighnenobjloojpkhplonhedajmfi
Deskripsi An extension that gives you precise control of Chrome's native media player.
Ukuran File 22 KB
Jumlah Instalasi 1,388
Versi Saat Ini 0.22
Terakhir Diperbarui 2014-12-19
Tanggal Publikasi 2014-12-18
Penilaian 4.24/5 Total 21 Penilaian
Pengembang http://www.thundron.com
Tipe Pembayaran free
Situs Ekstensi http://www.thundron.com
URL Halaman Bantuan http://www.thundron.com
Bahasa yang Didukung 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"
    ]
}