Google Music Media Keys

This extension allows control of Google Music through media keys

Τι είναι το Google Music Media Keys;

Το Google Music Media Keys είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jean-Lou Dupont (systemical), και η κύρια λειτουργία του είναι "This extension allows control of Google Music through media keys".

Λήψη αρχείου CRX της επέκτασης Google Music Media Keys

Λήψη αρχείων επέκτασης Google Music Media Keys σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Use the mediakeys to control Google Music.

This simple extension supports the "play/pause", "previous track" & "next track" mediakeys of your keyboard as well as 2 configurable keys for the "thumb up" and "thumb down" buttons.

No more clicking around your browser tabs to quickly control your Google Music!

The keyboard keys configuration can be accessed through the menu (More Tools -> Extensions -> Keyboard Shortcuts (bottom of the screen).

Press the "play/pause" on the Google Music UI to activate the extension. This tells the extension which tab to focus on when multiple Google Music tabs are currently loaded.

Version 0.0.2: better play/pause status discovery when multiple google music tabs are present.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Music Media Keys Google Music Media Keys
ID mjaohgecokhjlhhlcndcocmjollihmle
Επίσημο URL https://chromewebstore.google.com/detail/google-music-media-keys/mjaohgecokhjlhhlcndcocmjollihmle
Περιγραφή This extension allows control of Google Music through media keys
Μέγεθος Αρχείου 19.7 KB
Αριθμός Εγκαταστάσεων 73
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2017-09-04
Ημερομηνία Δημοσίευσης 2017-09-04
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Jean-Lou Dupont (systemical)
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Music Media Keys",
    "description": "This extension allows control of Google Music through media keys",
    "version": "0.0.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "https:\/\/play.google.com\/music\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "doNextTrack": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Next track",
            "global": true
        },
        "doPreviousTrack": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Previous track",
            "global": true
        },
        "doPlayPause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Play \/ Pause",
            "global": true
        },
        "doStop": {
            "suggested_key": {
                "default": "MediaStop"
            },
            "description": "Stop",
            "global": true
        },
        "doThumbUp": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "Thumb-Up current track",
            "global": true
        },
        "doThumbDown": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Thumb-Down current track",
            "global": true
        }
    }
}