Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
Wat is Play Music: Tools?
Play Music: Tools is een Chrome-extensie ontwikkeld door lecklider.6, en de belangrijkste functie is "This extension provides tools to interface with Google Play Music in the web browser.".
Extensie Screenshots
Download het CRX-bestand van de extensie Play Music: Tools
Download Play Music: Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Officiële URL | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Beschrijving | This extension provides tools to interface with Google Play Music in the web browser. |
Bestandsgrootte | 101 KB |
Aantal Installaties | 106 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-11-03 |
Publicatiedatum | 2017-11-03 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | lecklider.6 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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'" } } } |