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.」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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'"
}
}
} | |