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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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'" } } } |