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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย beccacrabb และคุณลักษณะหลักของมันคือ "Turns your media keys (previous, pause/play, and next) into global keyboard shortcuts for the YouTubes. Is this real life?"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DJ Controls for the YouTubes

ดาวน์โหลดไฟล์ส่วนขยาย DJ Controls for the YouTubes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}