YouTube Next

Use you media keys to control YouTube

Was ist YouTube Next?

YouTube Next ist eine Chrome-Erweiterung, die von Team Encil entwickelt wurde, und ihr Hauptmerkmal ist "Use you media keys to control YouTube".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube Next-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Next-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Next YouTube Next
ID mojigipbndoflnjonbejgkehjdeajlmm
Offizielle URL https://chrome.google.com/webstore/detail/youtube-next/mojigipbndoflnjonbejgkehjdeajlmm
Beschreibung Use you media keys to control YouTube
Dateigröße 22.7 KB
Installationsanzahl 379
Aktuelle Version 0.1
Letztes Update 2016-11-11
Veröffentlichungsdatum 2016-11-11
Bewertung 4.42/5 Insgesamt 19 Bewertungen
Entwickler Team Encil
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}