YouTube Next
Use you media keys to control YouTube
Cos'è YouTube Next?
YouTube Next è un'estensione di Chrome sviluppata da Team Encil, e la sua funzione principale è "Use you media keys to control YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Next
Scarica i file di estensione YouTube Next in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | mojigipbndoflnjonbejgkehjdeajlmm |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-next/mojigipbndoflnjonbejgkehjdeajlmm |
Descrizione | Use you media keys to control YouTube |
Dimensione del File | 22.7 KB |
Conteggio Installazioni | 379 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2016-11-11 |
Data di Pubblicazione | 2016-11-11 |
Valutazione | 4.42/5 Totale 19 Valutazioni |
Sviluppatore | Team Encil |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |