Media Control

Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.

什麼是Media Control?

Media Control是由m.ryanmurphy開發的Chrome擴展程式,該擴展的主要功能是“Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.”。

擴展截圖

screenshot
screenshot

下載Media Control擴展crx文件

下載Media Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Media Control appears as a toolbar button, and is a simple dropdown to control media players from Amazon, Spotify, and YouTube (HTML player only).

For each you can play and pause, and if listening from a playlist, go forward and back within the list. Spotify allows additional control of repeat and shuffle. YouTube allows additional control of playlist autoplay and mute functionality. Amazon allows for all of the above. You can also click the external link button to go directly to the tab.

For each tab with a player you have open, a control will appear. If for some reason it is unable to control directly there appears a large button to go to the tab directly.                    

擴展基本資訊

名稱 Media Control Media Control
ID pncnfpeioeljgmelkbboabkefmccechp
官方網址 https://chrome.google.com/webstore/detail/media-control/pncnfpeioeljgmelkbboabkefmccechp
簡介 Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.
檔案大小 371 KB
安裝次數 96
目前版本 1.5
更新時間 2015-02-13
上架時間 2015-02-13
評分 1.00/5 共 2 次評分
開發者 m.ryanmurphy
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Media Control",
    "version": "1.5",
    "manifest_version": 2,
    "description": "Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.",
    "homepage_url": "https:\/\/bitbucket.org\/whote\/media-control",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.spotify.com\/*",
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.amazon.com\/*\/cloudplayer\/*"
            ],
            "js": [
                "page-inject.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "64": "images\/64.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_icon": "images\/38.png",
        "default_title": "Media Control",
        "default_popup": "popup\/control.html"
    }
}