Mixradio Web Player Hotkeys
Add keyboard shortcuts to control Mixrad.io music player from your browser
Mixradio Web Player Hotkeys क्या है?
Mixradio Web Player Hotkeys Bill Hedworth द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add keyboard shortcuts to control Mixrad.io music player from your browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mixradio Web Player Hotkeys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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)
एक्सटेंशन की मूल जानकारी
नाम | |
ID | pmpjmciakkfogdpnohofddaedpdlebka |
आधिकारिक URL | https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka |
विवरण | Add keyboard shortcuts to control Mixrad.io music player from your browser |
फ़ाइल का आकार | 76.31 KB |
स्थापना संख्या | 27 |
वर्तमान संस्करण | 0.1.6 |
अंतिम अपडेट | 2016-02-09 |
प्रकाशन तिथि | 2016-02-08 |
रेटिंग | 4.83/5 कुल 6 रेटिंग्स |
डेवलपर | Bill Hedworth |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Bigsy/mixradio-chrome-hotkeys |
समर्थित भाषाएँ | 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\/*" ] } |