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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}