Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
O que é Play Music: Tools?
Play Music: Tools é uma extensão do Chrome desenvolvida por lecklider.6, e sua principal característica é "This extension provides tools to interface with Google Play Music in the web browser.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Play Music: Tools
Baixe arquivos de extensão Play Music: Tools 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
Quickly and easily add music to "My Library" through keyboard shortcut or by the extension popup. Current Command(s): -Add to Library: Default: Ctrl + Shift + L License (MIT): Copyright (c) 2017 Daniel Lecklider under the MIT license. Credits: Icon made by Freepik & Vectors Market from www.flaticon.com
Informações Básicas da Extensão
Nome | |
ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
URL Oficial | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Descrição | This extension provides tools to interface with Google Play Music in the web browser. |
Tamanho do Arquivo | 101 KB |
Contagem de Instalações | 106 |
Versão Atual | 1.0 |
Última Atualização | 2017-11-03 |
Data de Publicação | 2017-11-03 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | lecklider.6 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Play Music: Tools", "description": "This extension provides tools to interface with Google Play Music in the web browser.", "version": "1.0", "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/*" ], "js": [ "js\/content.js" ] } ], "browser_action": { "default_title": "Play Music: Tools", "default_popup": "html\/popup.html", "default_icon": "img\/icon38.png" }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs" ], "commands": { "add_to_library": { "suggested_key": { "default": "Ctrl+Shift+L" }, "global": true, "description": "Add current song to 'My Library'" } } } |