Google Music Ultimate Shortcuts&Player

Control your Google Music player from any tab with shortcuts or popup player from chrome toolbar!!!

Google Music Ultimate Shortcuts&Playerคืออะไร?

Google Music Ultimate Shortcuts&Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Francisco Javier Arribas Fernández และคุณลักษณะหลักของมันคือ "Control your Google Music player from any tab with shortcuts or popup player from chrome toolbar!!!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Music Ultimate Shortcuts&Player

ดาวน์โหลดไฟล์ส่วนขยาย Google Music Ultimate Shortcuts&Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Description:

This extension lets you control the Google Music player open at any tab or window from any tab or window with keyboard shortcuts and a music player at the toolbar.

Now you can customize the shortcuts and configure options in order to give a compacted look to Google Music player or to run Google Music Player when Chrome starts.

Now you can configure Chrome's commands for the extension to control the music player. This commands can run in the global scope, it means, out of Chrome too.
If you configure Chrome's commands, will have priority against the extension shortcuts.

In this version you can do a lot of new things at the toolbar player. You can see the 'Now Playing' list and you can play any song from it. You can navigate over song with the duration slider and also you can modify the "repeat none/one/all" and "random order" options. All of this in one place accesible from all your Google Chrome tabs and windows, no matter where do you open the Google Music Player.

The default shortcuts are:
 - Previous: CTRL+SHIFT+Z
 - Pause: CTRL+SHIFT+A
 - Next: CTRL+SHIFT+X

Shortcuts only work when you are focusing Chrome.

After install, you have to reopen Google Chrome in order to use the extension.

I developed this extension because I wanted this funcionality. If you have any ideas to improve this, please, don't hesitate to contact me.

I hope you find this extension useful, with all the love in the world by Francisco Javier Arribas Fernández.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Music Ultimate Shortcuts&Player Google Music Ultimate Shortcuts&Player
ID ifmcnmgiapoabmofmiejlmnjcolmjlmd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/google-music-ultimate-sho/ifmcnmgiapoabmofmiejlmnjcolmjlmd
คำอธิบาย Control your Google Music player from any tab with shortcuts or popup player from chrome toolbar!!!
ขนาดไฟล์ 1.09 MB
จำนวนการติดตั้ง 363
เวอร์ชันปัจจุบัน 2.1.2
อัปเดตครั้งล่าสุด 2014-09-01
วันที่เผยแพร่ 2014-09-01
คะแนน 4.33/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Francisco Javier Arribas Fernández
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Music Ultimate Shortcuts&Player",
    "short_name": "GMusic S&P",
    "description": "Control your Google Music player from any tab with shortcuts or popup player from chrome toolbar!!!",
    "version": "2.1.2",
    "icons": {
        "256": "icon256.png",
        "128": "icon128.png",
        "48": "icon48.png",
        "24": "icon24.png",
        "16": "icon16.png"
    },
    "permissions": [
        "tabs"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon24.png",
        "default_title": "Google Music Shortcut Player",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "player|play": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Play \/ Pause",
            "global": true
        },
        "player|next": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Next song",
            "global": true
        },
        "player|prev": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Previous song",
            "global": true
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/listen*"
            ],
            "js": [
                "player.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "key.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "page": "dispatch.html"
    },
    "web_accessible_resources": [
        "icon24.png"
    ]
}