Webplayer Hotkeys - Shortcuts for web players

Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.

ما هو Webplayer Hotkeys - Shortcuts for web players؟

Webplayer Hotkeys - Shortcuts for web players هو إضافة Chrome تم تطويرها بواسطة Gabriel Duarte، والميزة الرئيسية لها هي "Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Webplayer Hotkeys - Shortcuts for web players

قم بتنزيل ملفات الامتداد Webplayer Hotkeys - Shortcuts for web players بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A Chrome extension that assigns hotkeys and shortcuts to play/pause, and to switch music (next and previous). If no player is currently opened, it fires up Spotify.

If there is more player tabs than one, it follows this order of priority: Spotify > Deezer > SoundCloud > Youtube

Works with:

• Spotify
• Deezer
• SoundCloud
• Youtube                    

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

الاسم Webplayer Hotkeys - Shortcuts for web players Webplayer Hotkeys - Shortcuts for web players
ID ikmkicnmahfdilneilgibeppbnolgkaf
عنوان URL الرسمي https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf
الوصف Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
حجم الملف 52.04 KB
عدد التثبيتات 887
النسخة الحالية 1.3.2
آخر تحديث 2020-01-02
تاريخ النشر 2020-01-02
تقييم 4.24/5 مجموع تقييمات 17
المطور Gabriel Duarte
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/GabrielDuarteM/Webplayer-Hotkeys
عنوان صفحة المساعدة https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webplayer Hotkeys - Shortcuts for web players",
    "version": "1.3.2",
    "description": "Assign hotkeys to play\/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.",
    "icons": {
        "128": "icon.png"
    },
    "author": "Gabriel Duarte",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "prev": {
            "description": "Previous music",
            "suggested_key": "Alt+Shift+Comma",
            "global": true
        },
        "play": {
            "description": "Play\/pause",
            "suggested_key": "Alt+Shift+P",
            "global": true
        },
        "next": {
            "description": "Next music",
            "suggested_key": "Alt+Shift+Period",
            "global": true
        }
    },
    "homepage_url": "https:\/\/github.com\/GabrielQDuarte\/Webplayer-Hotkeys\/tree\/master",
    "incognito": "split",
    "permissions": [
        "*:\/\/*.spotify.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*",
        "*:\/\/*.deezer.com\/*",
        "tabs"
    ]
}