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ファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}