Play Music: Tools

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

What is Play Music: Tools?

Play Music: Tools is a Chrome extension developed by lecklider.6, and its main feature is "This extension provides tools to interface with Google Play Music in the web browser.".

Extension Screenshots

screenshot
screenshot

Download Play Music: Tools Extension CRX File

Download Play Music: Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Play Music: Tools Play Music: Tools
ID pjdmlkmcedbbbcbibaedjhbmcnnakohb
Official URL https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb
Description This extension provides tools to interface with Google Play Music in the web browser.
File Size 101 KB
Installation Count 106
Current Version 1.0
Last Updated 2017-11-03
Publish Date 2017-11-03
Rating 5.00/5 Total 1 Ratings
Developer lecklider.6
Email [email protected]
Payment Type free
Supported Languages 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'"
        }
    }
}