Mixradio Web Player Hotkeys
Add keyboard shortcuts to control Mixrad.io music player from your browser
Cos'è Mixradio Web Player Hotkeys?
Mixradio Web Player Hotkeys è un'estensione di Chrome sviluppata da Bill Hedworth, e la sua funzione principale è "Add keyboard shortcuts to control Mixrad.io music player from your browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mixradio Web Player Hotkeys
Scarica i file di estensione Mixradio Web Player Hotkeys in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Keyboard shortcuts to control Mixrad.io music player from your browser.
To configure: Extensions > Mixradio extension > Options > Configure HotKeys (You can also set them globally from this menu, if a shortcut isn't working it might already configured in your OS for something else)
Current defaults are:
* Play/Pause: "Media Play Pause"
* Next track: "Media Next"
* Like track: "Alt+Shift+P"
* Dislike track: "Alt+Shift+O"
* Toast Notification of currently playing track: No default
* Open mixrad.io in pinned tab: No default
* Start Mymix: No default (you need a logged in account) Informazioni di Base sull'Estensione
| Nome | |
| ID | pmpjmciakkfogdpnohofddaedpdlebka |
| URL Ufficiale | https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka |
| Descrizione | Add keyboard shortcuts to control Mixrad.io music player from your browser |
| Dimensione del File | 76.31 KB |
| Conteggio Installazioni | 27 |
| Versione Corrente | 0.1.6 |
| Ultimo Aggiornamento | 2016-02-09 |
| Data di Pubblicazione | 2016-02-08 |
| Valutazione | 4.83/5 Totale 6 Valutazioni |
| Sviluppatore | Bill Hedworth |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Bigsy/mixradio-chrome-hotkeys |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mixradio Web Player Hotkeys",
"description": "Add keyboard shortcuts to control Mixrad.io music player from your browser",
"version": "0.1.6",
"manifest_version": 2,
"icons": {
"128": "icon.png"
},
"incognito": "split",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/mixrad.io\/*"
],
"js": [
"content.js",
"jquery-2.2.0.min.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"commands": {
"next": {
"description": "Next track",
"suggested_key": "MediaNextTrack"
},
"play-pause": {
"description": "Play\/Pause",
"suggested_key": "MediaPlayPause"
},
"like": {
"description": "Like track",
"suggested_key": "Alt+Shift+P"
},
"dislike": {
"description": "Dislike track",
"suggested_key": "Alt+Shift+O"
},
"pinned": {
"description": "Open mixradio in pinned tab"
},
"mymix": {
"description": "Start Mymix"
},
"current-toast": {
"description": "Current playing track popup"
}
},
"permissions": [
"https:\/\/mixrad.io\/*",
"notifications",
"https:\/\/assets.mixrad.io\/*"
]
} | |