Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
Was ist Play Music: Tools?
Play Music: Tools ist eine Chrome-Erweiterung, die von lecklider.6 entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides tools to interface with Google Play Music in the web browser.".
Erweiterungsscreenshots
Play Music: Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Play Music: Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
| Offizielle URL | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
| Beschreibung | This extension provides tools to interface with Google Play Music in the web browser. |
| Dateigröße | 101 KB |
| Installationsanzahl | 106 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2017-11-03 |
| Veröffentlichungsdatum | 2017-11-03 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | lecklider.6 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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'"
}
}
} | |