Spotify Controller
Controll your Spotify player via shortcut commands
Spotify Controller क्या है?
Spotify Controller Elias Wennerlund द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Controll your Spotify player via shortcut commands"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spotify Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Are you tired of switching tabs just to change song? With Spotify Controller you can use shortcut commands instead! Standard commands: Back button: Alt+Shift+D Pause/Play: Alt+Shift+F Next button: Alt+Shift+G You can also add shortcuts to the Shuffle and Repeat buttons. If you want to change the commands, go to chrome://extensions/shortcuts
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jpjbjbgjbicfeifjclhojfelcifcndnh |
आधिकारिक URL | https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh |
विवरण | Controll your Spotify player via shortcut commands |
फ़ाइल का आकार | 15.11 KB |
स्थापना संख्या | 3,000 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2021-06-04 |
प्रकाशन तिथि | 2020-08-24 |
रेटिंग | 3.86/5 कुल 7 रेटिंग्स |
डेवलपर | Elias Wennerlund |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Controller", "description": "Controll your Spotify player via shortcut commands", "author": "Elias Wennerlund", "version": "1.2.0", "permissions": [ "tabs", "commands" ], "icons": { "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "128": "128.png" } }, "commands": { "prev": { "suggested_key": { "default": "Alt+Shift+D" }, "description": "Back button", "global": false }, "play-pause": { "suggested_key": { "default": "Alt+Shift+F" }, "description": "Play\/Pause button", "global": false }, "next": { "suggested_key": { "default": "Alt+Shift+G" }, "description": "Next button", "global": false }, "shuffle": { "description": "Shuffle button" }, "repeat": { "description": "Repeat button" } }, "manifest_version": 2 } |