Spotify Controller
Controll your Spotify player via shortcut commands
ما هو Spotify Controller؟
Spotify Controller هو إضافة Chrome تم تطويرها بواسطة Elias Wennerlund، والميزة الرئيسية لها هي "Controll your Spotify player via shortcut commands".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Spotify Controller
قم بتنزيل ملفات الامتداد Spotify Controller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 } |