YouTube Next

Use you media keys to control YouTube

What is YouTube Next?

YouTube Next is a Chrome extension developed by Team Encil, and its main feature is "Use you media keys to control YouTube".

Extension Screenshots

screenshot
screenshot
screenshot

Download YouTube Next Extension CRX File

Download YouTube Next extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Next YouTube Next
ID mojigipbndoflnjonbejgkehjdeajlmm
Official URL https://chrome.google.com/webstore/detail/youtube-next/mojigipbndoflnjonbejgkehjdeajlmm
Description Use you media keys to control YouTube
File Size 22.7 KB
Installation Count 379
Current Version 0.1
Last Updated 2016-11-11
Publish Date 2016-11-11
Rating 4.42/5 Total 19 Ratings
Developer Team Encil
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}