y_Music
Control YouTube Music with a browser extension.
什麼是y_Music?
y_Music是由annoyingmouse開發的Chrome擴展程式,該擴展的主要功能是“Control YouTube Music with a browser extension.”。
擴展截圖
下載y_Music擴展crx文件
下載y_Music擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | fcdclkoggpmcdchgijpgcmkacbmlkmhk |
官方網址 | https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk |
簡介 | Control YouTube Music with a browser extension. |
檔案大小 | 46.82 KB |
安裝次數 | 84 |
目前版本 | 0.0.0.8 |
更新時間 | 2020-07-05 |
上架時間 | 2020-07-05 |
評分 | 5.00/5 共 1 次評分 |
開發者 | annoyingmouse |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/annoyingmouse/gMusic |
說明頁面URL | https://github.com/annoyingmouse/gMusic/issues |
隱私政策頁面URL | https://github.com/annoyingmouse/gMusic/blob/master/privacy.md |
支援的語言 | 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" } } |