One-Click Controls for Google Music

Control Google Music from your address bar.

One-Click Controls for Google Musicとは何ですか?

One-Click Controls for Google MusicはProcrastinating Studentによって開発されたChromeの拡張機能で、その主な機能は「Control Google Music from your address bar.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

One-Click Controls for Google Music拡張機能のCRXファイルをダウンロード

One-Click Controls for Google Music拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Simply click the icon in the address bar to play and pause Google Music, no matter what tab you're in!

Upon installation, reload any open Google Music tabs and you'll be all set.

Update:
 - Added options to change default account and auto-shuffle behavior, plus general bug fixes.

Get the rewind button here:
https://chrome.google.com/webstore/detail/jecmhknpaakaljaahcpjpojlomilfcbk

Get the skip button here:
https://chrome.google.com/webstore/detail/bbeefcjnjicgkpjbhdnbegckifhooeeo                    

拡張機能の基本情報

名前 One-Click Controls for Google Music One-Click Controls for Google Music
ID iplcnndnkaahamcojidocbfdagapbcal
公式URL https://chrome.google.com/webstore/detail/one-click-controls-for-go/iplcnndnkaahamcojidocbfdagapbcal
説明 Control Google Music from your address bar.
ファイルサイズ 52.2 KB
インストール数 42
現在のバージョン 0.0.5
最終更新日 2017-12-06
公開日 2017-12-06
評価 5.00/5 合計 1 レビュー
開発者 Procrastinating Student
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "One-Click Controls for Google Music",
    "description": "Control Google Music from your address bar.",
    "version": "0.0.5",
    "permissions": [
        "http:\/\/play.google.com\/music\/",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/no_song_19.png",
            "38": "images\/no_song_38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.google.com\/music*"
            ],
            "js": [
                "third-party\/jquery-1.12.0.min.js",
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "images\/no_song_19.png",
        "images\/no_song_38.png",
        "images\/play_19.png",
        "images\/play_38.png",
        "images\/pause_19.png",
        "images\/pause_38.png"
    ],
    "manifest_version": 2
}