Mixradio Web Player Hotkeys
Add keyboard shortcuts to control Mixrad.io music player from your browser
Wat is Mixradio Web Player Hotkeys?
Mixradio Web Player Hotkeys is een Chrome-extensie ontwikkeld door Bill Hedworth, en de belangrijkste functie is "Add keyboard shortcuts to control Mixrad.io music player from your browser".
Extensie Screenshots
Download het CRX-bestand van de extensie Mixradio Web Player Hotkeys
Download Mixradio Web Player Hotkeys-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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) Basisinformatie over de Extensie
| Naam | |
| ID | pmpjmciakkfogdpnohofddaedpdlebka |
| Officiële URL | https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka |
| Beschrijving | Add keyboard shortcuts to control Mixrad.io music player from your browser |
| Bestandsgrootte | 76.31 KB |
| Aantal Installaties | 27 |
| Huidige Versie | 0.1.6 |
| Laatst Bijgewerkt | 2016-02-09 |
| Publicatiedatum | 2016-02-08 |
| Beoordeling | 4.83/5 Totaal 6 Beoordelingen |
| Ontwikkelaar | Bill Hedworth |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/Bigsy/mixradio-chrome-hotkeys |
| Ondersteunde Talen | 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\/*"
]
} | |