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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
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
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"
    ]
}