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開發的Chrome擴展程式,該擴展的主要功能是“This extension provides tools to interface with Google Play Music in the web browser.”。

擴展截圖

screenshot
screenshot

下載Play Music: Tools擴展crx文件

下載Play Music: Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
        }
    }
}