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 Gabriel Duarte द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Webplayer Hotkeys - Shortcuts for web players एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    ]
}