Spotify Controller
Control Spotify Web Player from any window/tab.
Spotify Controller क्या है?
Spotify Controller Joe Warren द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control Spotify Web Player from any window/tab."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spotify Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Control the web Spotify Player(https://play.spotify.com) from any Chrome window/tab. Play/pause: Ctrl + Shift + P Next song: Ctrl + Shift + N Previous song: Ctrl + Shift + B
एक्सटेंशन की मूल जानकारी
नाम | |
ID | celedfadbfmnehggekllhcbpgokjkknf |
आधिकारिक URL | https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf |
विवरण | Control Spotify Web Player from any window/tab. |
फ़ाइल का आकार | 167 KB |
स्थापना संख्या | 100 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2014-02-19 |
प्रकाशन तिथि | 2014-02-19 |
रेटिंग | 2.33/5 कुल 3 रेटिंग्स |
डेवलपर | Joe Warren |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Controller", "description": "Control Spotify Web Player from any window\/tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "commands": { "toggle-pause": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Toggle pause and play" }, "toggle-next": { "suggested_key": { "default": "Ctrl+Shift+N", "mac": "MacCtrl+Shift+N" }, "description": "Play the next song" }, "toggle-previous": { "suggested_key": { "default": "Ctrl+Shift+B", "mac": "MacCtrl+Shift+B" }, "description": "Play the previous song" } } } |