y_Music
Control YouTube Music with a browser extension.
Apa itu y_Music?
y_Music adalah ekstensi Chrome yang dikembangkan oleh annoyingmouse, dan fitur utamanya adalah "Control YouTube Music with a browser extension.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi y_Music
Unduh file ekstensi y_Music 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
This is a simple Chrome extension which allows you to pause and resume music playing via YouTube music. Based upon a similar one created for Google Play Music, I've taken the opportunity to update the JS, and the images used more closely match the colour-scheme used by YouTube Music.
Informasi Dasar Ekstensi
Nama | |
ID | fcdclkoggpmcdchgijpgcmkacbmlkmhk |
URL Resmi | https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk |
Deskripsi | Control YouTube Music with a browser extension. |
Ukuran File | 46.82 KB |
Jumlah Instalasi | 84 |
Versi Saat Ini | 0.0.0.8 |
Terakhir Diperbarui | 2020-07-05 |
Tanggal Publikasi | 2020-07-05 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | annoyingmouse |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/annoyingmouse/gMusic |
URL Halaman Bantuan | https://github.com/annoyingmouse/gMusic/issues |
URL Halaman Kebijakan Privasi | https://github.com/annoyingmouse/gMusic/blob/master/privacy.md |
Bahasa yang Didukung | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "y_Music", "version": "0.0.0.8", "manifest_version": 2, "description": "Control YouTube Music with a browser extension.", "homepage_url": "https:\/\/github.com\/annoyingmouse\/gMusic", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/controller.js" ], "persistent": true }, "permissions": [ "tabs", "https:\/\/music.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/music.youtube.com\/*" ], "js": [ "js\/injected.js" ] } ], "browser_action": { "default_icon": "icons\/disabled.png" } } |