Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
Что такое Play Music: Tools?
Play Music: Tools - это расширение Chrome, разработанное lecklider.6, и его основная функция - "This extension provides tools to interface with Google Play Music in the web browser.".
Снимки экрана расширения
Скачать файл CRX расширения Play Music: Tools
Скачайте файлы расширений Play Music: Tools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Официальный URL | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Описание | This extension provides tools to interface with Google Play Music in the web browser. |
Размер файла | 101 KB |
Количество установок | 106 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-11-03 |
Дата публикации | 2017-11-03 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | lecklider.6 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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'" } } } |