YouTube Next

Use you media keys to control YouTube

YouTube Next란 무엇입니까?

YouTube Next은(는) Team Encil에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use you media keys to control YouTube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YouTube Next 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}