Play Music: Tools

This extension provides tools to interface with Google Play Music in the web browser.

Qu'est-ce que Play Music: Tools ?

Play Music: Tools est une extension Chrome développée par lecklider.6, et sa fonction principale est "This extension provides tools to interface with Google Play Music in the web browser.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Play Music: Tools

Téléchargez les fichiers d'extension Play Music: Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Play Music: Tools Play Music: Tools
ID pjdmlkmcedbbbcbibaedjhbmcnnakohb
URL Officiel https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb
Description This extension provides tools to interface with Google Play Music in the web browser.
Taille du Fichier 101 KB
Nombre d'Installations 106
Version Actuelle 1.0
Dernière Mise à Jour 2017-11-03
Date de Publication 2017-11-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur lecklider.6
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
        }
    }
}