YouTube Next

Use you media keys to control YouTube

YouTube Nextคืออะไร?

YouTube Next เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Team Encil และคุณลักษณะหลักของมันคือ "Use you media keys to control YouTube"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Next

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

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

                        Use your Media Keys to control YouTube. To Change a song, Click Next, Pause, Stop etc. from your Keyboard even without opening YouTube. 

It's a simple and easy tool, which will help you if you love to hear Music on Youtube.

This extension will be enabled only when you visit YouTube and will be disabled for everything else.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Next YouTube Next
ID mojigipbndoflnjonbejgkehjdeajlmm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-next/mojigipbndoflnjonbejgkehjdeajlmm
คำอธิบาย Use you media keys to control YouTube
ขนาดไฟล์ 22.7 KB
จำนวนการติดตั้ง 379
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2016-11-11
วันที่เผยแพร่ 2016-11-11
คะแนน 4.42/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Team Encil
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Next",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "description": "Use you media keys to control YouTube",
    "homepage_url": "http:\/\/youtube.com",
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "manifest_version": 2,
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "MediaPrevTrack",
                "mac": "MediaPrevTrack"
            },
            "description": "Play Previous Track",
            "global": true
        },
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause",
                "mac": "MediaPlayPause"
            },
            "description": "Play\/Pause Active Audio",
            "global": true
        },
        "next": {
            "suggested_key": {
                "default": "MediaNextTrack",
                "mac": "MediaNextTrack"
            },
            "description": "Play Next Track",
            "global": true
        },
        "stop": {
            "suggested_key": {
                "default": "MediaStop",
                "mac": "MediaStop"
            },
            "description": "Stop Audio",
            "global": true
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_title": "Use you media keys to control YouTube",
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "shared.js",
                "youtubenext.js"
            ]
        }
    ]
}