Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
Apa itu Play Music: Tools?
Play Music: Tools adalah ekstensi Chrome yang dikembangkan oleh lecklider.6, dan fitur utamanya adalah "This extension provides tools to interface with Google Play Music in the web browser.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Play Music: Tools
Unduh file ekstensi Play Music: Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
URL Resmi | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
Deskripsi | This extension provides tools to interface with Google Play Music in the web browser. |
Ukuran File | 101 KB |
Jumlah Instalasi | 106 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2017-11-03 |
Tanggal Publikasi | 2017-11-03 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | lecklider.6 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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'" } } } |