DJ Controls for the YouTubes

Turns your media keys (previous, pause/play, and next) into global keyboard shortcuts for the YouTubes. Is this real life?

DJ Controls for the YouTubes란 무엇입니까?

DJ Controls for the YouTubes은(는) beccacrabb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turns your media keys (previous, pause/play, and next) into global keyboard shortcuts for the YouTubes. Is this real life?"입니다.

확장 프로그램 스크린샷

screenshot

DJ Controls for the YouTubes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension to control YouTube playing in the background.  Use the media keys on your computer (F7 for previous song, F8 for play/pause, F9 for next song) to control playback from a different tab or even a different application.  Ctrl (Cmmd for mac) + Shift + 9 will shuffle and un-shuffle the playlist for you.

Known issues:
 - Play/pause only works with HTML5 player
 - This extension does not yet support multiple YouTube watch page tabs open at once in any smart way.  Currently, it just picks the leftmost YouTube tab and controls that tab.

Images used from iconfinder.com and youtube.com.

Because of trademark rules I can't use YouTube in the name so this has been renamed "for the YouTubes".  Enjoy!                    

확장 프로그램 기본 정보

이름 DJ Controls for the YouTubes DJ Controls for the YouTubes
ID ehfnoicanipodaggphbaleldaifiblhg
공식 URL https://chrome.google.com/webstore/detail/dj-controls-for-the-youtu/ehfnoicanipodaggphbaleldaifiblhg
설명 Turns your media keys (previous, pause/play, and next) into global keyboard shortcuts for the YouTubes. Is this real life?
파일 크기 43.29 KB
설치 횟수 119
현재 버전 0.2
최근 업데이트 2014-08-19
출시 날짜 2014-08-19
평점 3.67/5 총 3 개의 평점
개발자 beccacrabb
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DJ Controls for the YouTubes",
    "version": "0.2",
    "description": "Turns your media keys (previous, pause\/play, and next) into global keyboard shortcuts for the YouTubes.  Is this real life?",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ]
        }
    ],
    "commands": {
        "next": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Skip to next video",
            "global": true
        },
        "pause-or-play": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Pause or resume playback",
            "global": true
        },
        "shuffle": {
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "mac": "Command+Shift+9"
            },
            "description": "Shuffle video list",
            "global": true
        },
        "previous": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Play previous video",
            "global": true
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}