Media Controller

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

ما هو Media Controller؟

Media Controller هو إضافة Chrome تم تطويرها بواسطة http://www.thundron.com، والميزة الرئيسية لها هي "An extension that gives you precise control of Chrome's native media player.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Media Controller

قم بتنزيل ملفات الامتداد Media Controller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}