Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
Co to jest Play Music: Tools?
Play Music: Tools to rozszerzenie Chrome opracowane przez lecklider.6, a jego główną funkcją jest „This extension provides tools to interface with Google Play Music in the web browser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Play Music: Tools
Pobierz pliki rozszerzeń Play Music: Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Oficjalny URL | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Opis | This extension provides tools to interface with Google Play Music in the web browser. |
Rozmiar pliku | 101 KB |
Liczba instalacji | 106 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-11-03 |
Data Publikacji | 2017-11-03 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | lecklider.6 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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'" } } } |