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 |
公式URL | 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 |
Eメール | [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" } } |