Easy Play Music Hotkeys
This extensions allows you to set hotkeys for controlling Google Play Music.
Easy Play Music Hotkeys क्या है?
Easy Play Music Hotkeys fergaljd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extensions allows you to set hotkeys for controlling Google Play Music."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Easy Play Music Hotkeys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This very lightweight extension adds hotkeys to control basic Google Play Music streaming features. Hotkeys are implemented for Play/Pause (Alt-P), Next Track (Alt-Right) and volume controls (Alt-Up/Down). Keyboard shortcuts can be customised on the chrome://extensions page, through the Keyboard Shortcuts link. Install this extension if you are looking for a simple way to control the Google Play Music streaming player with your keyboard. Update: version 0.2 fixes volume controls.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | akfgonaiibepjhbphlhadfiinkkibplg |
आधिकारिक URL | https://chrome.google.com/webstore/detail/easy-play-music-hotkeys/akfgonaiibepjhbphlhadfiinkkibplg |
विवरण | This extensions allows you to set hotkeys for controlling Google Play Music. |
फ़ाइल का आकार | 28.7 KB |
स्थापना संख्या | 34 |
वर्तमान संस्करण | 0.2 |
अंतिम अपडेट | 2014-01-30 |
प्रकाशन तिथि | 2014-01-30 |
डेवलपर | fergaljd |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Play Music Hotkeys", "description": "This extensions allows you to set hotkeys for controlling Google Play Music.", "version": "0.2", "browser_action": { "default_title": "Google Play Music Hotkeys", "default_icon": "play.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/*" ], "js": [ "controls.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ], "commands": { "next_track": { "suggested_key": { "default": "Alt+Right" }, "description": "Skip to next track" }, "play_pause": { "suggested_key": { "default": "Alt+P" }, "description": "Play\/Pause music" }, "volume_up": { "suggested_key": { "default": "Alt+Up" }, "description": "Raise volume" }, "volume_down": { "suggested_key": { "default": "Alt+Down" }, "description": "Lower volume" } } } |