gMusic
Control Google Play Music with a browser extension.
gMusicとは何ですか?
gMusicはannoyingmouseによって開発されたChromeの拡張機能で、その主な機能は「Control Google Play Music with a browser extension.」です。
拡張機能のスクリーンショット
gMusic拡張機能のCRXファイルをダウンロード
gMusic拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
I love music, I really do. I also love coding and the two together are a little like Strawberries and Cream, Chocolate and Cherries, Cheese and Pineapple, Rhubarb and Custard or Marmite and Cheese (Hey, before you start: some people who hate Marmite like Marmite and Cheese on toast... or Marmite, Peanut Butter, Coleslaw and Cheese on toast (YUM)). Sometimes other things get in the way though and I'll need to drag myself away from the coding and music fairies to talk to someone, go to a meeting or attend a scrum... in the meantime I've got more tabs open than God and I can't find the Google Music tab for love nor money. What I needed was a simple button that just pauses and plays Google Music - so I made one! I thought that others might want the same thing - here you go. UPDATE - fixed an issue with chrome.browserAction.enable()
拡張機能の基本情報
名前 | |
ID | aiceljnooekdohpfkopeaojkkgebolli |
公式URL | https://chrome.google.com/webstore/detail/gmusic/aiceljnooekdohpfkopeaojkkgebolli |
説明 | Control Google Play Music with a browser extension. |
ファイルサイズ | 2.36 MB |
インストール数 | 431 |
現在のバージョン | 0.0.0.9 |
最終更新日 | 2014-09-26 |
公開日 | 2014-09-26 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | annoyingmouse |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/annoyingmouse/gMusic |
プライバシーポリシーページのURL | https://github.com/annoyingmouse/gMusic/blob/master/privacy.md |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gMusic", "version": "0.0.0.9", "manifest_version": 2, "description": "Control Google Play 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:\/\/play.google.com\/music\/listen*" ], "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/listen*" ], "js": [ "js\/injected.js" ] } ], "browser_action": { "default_icon": "icons\/disabled.png" } } |