Play Music: Tools

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

Play Music: Tools क्या है?

Play Music: Tools lecklider.6 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension provides tools to interface with Google Play Music in the web browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Play Music: Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Play Music: Tools Play Music: Tools
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'"
        }
    }
}