Play Music: Tools

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

ما هو Play Music: Tools؟

Play Music: Tools هو إضافة Chrome تم تطويرها بواسطة lecklider.6، والميزة الرئيسية لها هي "This extension provides tools to interface with Google Play Music in the web browser.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Play Music: Tools

قم بتنزيل ملفات الامتداد Play Music: Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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'"
        }
    }
}