Media Control
Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.
O que é Media Control?
Media Control é uma extensão do Chrome desenvolvida por m.ryanmurphy, e sua principal característica é "Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Media Control
Baixe arquivos de extensão Media Control no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Media Control appears as a toolbar button, and is a simple dropdown to control media players from Amazon, Spotify, and YouTube (HTML player only). For each you can play and pause, and if listening from a playlist, go forward and back within the list. Spotify allows additional control of repeat and shuffle. YouTube allows additional control of playlist autoplay and mute functionality. Amazon allows for all of the above. You can also click the external link button to go directly to the tab. For each tab with a player you have open, a control will appear. If for some reason it is unable to control directly there appears a large button to go to the tab directly.
Informações Básicas da Extensão
Nome | |
ID | pncnfpeioeljgmelkbboabkefmccechp |
URL Oficial | https://chrome.google.com/webstore/detail/media-control/pncnfpeioeljgmelkbboabkefmccechp |
Descrição | Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs. |
Tamanho do Arquivo | 371 KB |
Contagem de Instalações | 96 |
Versão Atual | 1.5 |
Última Atualização | 2015-02-13 |
Data de Publicação | 2015-02-13 |
Classificação | 1.00/5 Total de 2 Avaliações |
Desenvolvedor | m.ryanmurphy |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Media Control", "version": "1.5", "manifest_version": 2, "description": "Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.", "homepage_url": "https:\/\/bitbucket.org\/whote\/media-control", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/play.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.amazon.com\/*\/cloudplayer\/*" ], "js": [ "page-inject.js" ] } ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "64": "images\/64.png", "128": "images\/128.png" }, "browser_action": { "default_icon": "images\/38.png", "default_title": "Media Control", "default_popup": "popup\/control.html" } } |