Spotify Controller

Control Spotify Web Player from any window/tab.

ما هو Spotify Controller؟

Spotify Controller هو إضافة Chrome تم تطويرها بواسطة Joe Warren، والميزة الرئيسية لها هي "Control Spotify Web Player from any window/tab.".

تحميل ملف CRX للإضافة Spotify Controller

قم بتنزيل ملفات الامتداد Spotify Controller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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                    

معلومات أساسية عن التمديد

الاسم Spotify Controller Spotify Controller
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"
        }
    }
}