Media Controller

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

Media Controller là gì?

Media Controller là một tiện ích mở rộng Chrome được phát triển bởi http://www.thundron.com, và tính năng chính của nó là "An extension that gives you precise control of Chrome's native media player.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Media Controller

Tải xuống các tệp mở rộng Media Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Media Controller Media Controller
ID igioighnenobjloojpkhplonhedajmfi
URL Chính Thức https://chrome.google.com/webstore/detail/media-controller/igioighnenobjloojpkhplonhedajmfi
Mô tả An extension that gives you precise control of Chrome's native media player.
Kích Thước Tệp 22 KB
Số Lần Cài Đặt 1,388
Phiên Bản Hiện Tại 0.22
Cập Nhật Lần Cuối 2014-12-19
Ngày Phát Hành 2014-12-18
Đánh Giá 4.24/5 Tổng số 21 Đánh Giá
Nhà Phát Triển http://www.thundron.com
Loại Thanh Toán free
Trang Web Mở Rộng http://www.thundron.com
URL Trang Trợ Giúp http://www.thundron.com
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}