Media Controller

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

Co to jest Media Controller?

Media Controller to rozszerzenie Chrome opracowane przez http://www.thundron.com, a jego główną funkcją jest „An extension that gives you precise control of Chrome's native media player.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Media Controller

Pobierz pliki rozszerzeń Media Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Media Controller Media Controller
ID igioighnenobjloojpkhplonhedajmfi
Oficjalny URL https://chrome.google.com/webstore/detail/media-controller/igioighnenobjloojpkhplonhedajmfi
Opis An extension that gives you precise control of Chrome's native media player.
Rozmiar pliku 22 KB
Liczba instalacji 1,388
Aktualna Wersja 0.22
Ostatnia Aktualizacja 2014-12-19
Data Publikacji 2014-12-18
Ocena 4.24/5 Łącznie 21 Oceny
Deweloper http://www.thundron.com
Typ Płatności free
Strona Rozszerzenia http://www.thundron.com
Adres URL Strony Pomocy http://www.thundron.com
Obsługiwane Języki 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"
    ]
}