Plauser
A Chrome extension that allows you to play/pause your current playing track from any tab.
O que é Plauser?
Plauser é uma extensão do Chrome desenvolvida por Kieran O'Neill, e sua principal característica é "A Chrome extension that allows you to play/pause your current playing track from any tab.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Plauser
Baixe arquivos de extensão Plauser 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
Simplex Sigillum Veri... Plauser simply adds a browser button that allows you to play/pause (plause) your current playing music track. You can plause your current track from any browser tab. Plauser supports the following music services: - Google Music - Spotify - YouTube - Grooveshark - SoundCloud - ...more coming soon! What's new in 0.9.1! - Plauser now allows you to bind a keystroke through the options menu. Try it out and start plausing, using the keyboard, from any tab! Source available on GitHub: https://github.com/kieranroneill/plauser
Informações Básicas da Extensão
Nome | Plauser |
ID | knhcbcbmbdififpcffkphaianpojnpai |
URL Oficial | https://chromewebstore.google.com/detail/plauser/knhcbcbmbdififpcffkphaianpojnpai |
Descrição | A Chrome extension that allows you to play/pause your current playing track from any tab. |
Tamanho do Arquivo | 62.78 KB |
Contagem de Instalações | 83 |
Versão Atual | 0.9.1 |
Última Atualização | 2014-10-29 |
Data de Publicação | 2014-10-29 |
Classificação | 5.00/5 Total de 7 Avaliações |
Desenvolvedor | Kieran O'Neill |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kieranroneill/plauser |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Plauser", "short_name": "Plauser", "description": "A Chrome extension that allows you to play\/pause your current playing track from any tab.", "version": "0.9.1", "author": "Kieran O'Neill", "permissions": [ "tabs", "storage", "https:\/\/play.google.com\/music\/*", "https:\/\/play.spotify.com\/*", "https:\/\/www.youtube.com\/*", "http:\/\/grooveshark.com\/*", "https:\/\/soundcloud.com\/*" ], "icons": { "16": "images\/icon-plauser-16.png", "48": "images\/icon-plauser-48.png", "128": "images\/icon-plauser-128.png" }, "background": { "page": "background.html" }, "options_page": "options.html", "browser_action": { "default_icon": "images\/icon-plauser-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content-scripts\/content-script-key-event.js", "js\/global.js" ], "run_at": "document_start" } ] } |