SoundCloud Keyboard Shortcuts

Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud

SoundCloud Keyboard Shortcuts क्या है?

SoundCloud Keyboard Shortcuts David Yang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud"।

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

screenshot

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

crx प्रारूप में SoundCloud Keyboard Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Default keyboard shortcuts are:

Play/Pause: Alt+Shift+P
Next: Alt+Shift+Period
Previous: Alt+Shift+Comma
Like: Alt+Shift+L

**On Mac, replace Alt with Option**                    

एक्सटेंशन की मूल जानकारी

नाम SoundCloud Keyboard Shortcuts SoundCloud Keyboard Shortcuts
ID ikhigoamgbflnjhdbajcpaehkjdcdokh
आधिकारिक URL https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh
विवरण Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
फ़ाइल का आकार 11.36 KB
स्थापना संख्या 132
वर्तमान संस्करण 0.0.0.2
अंतिम अपडेट 2019-06-01
प्रकाशन तिथि 2019-06-01
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर David Yang
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/davidbobyang/soundcloud-hotkeys
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SoundCloud Keyboard Shortcuts",
    "description": "Adds keyboard shortcuts (hotkeys) to play\/pause, play next, play previous, and like tracks in SoundCloud",
    "version": "0.0.0.2",
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "play-pause": {
            "description": "Play\/pause",
            "suggested_key": "Alt+Shift+P"
        },
        "next": {
            "description": "Next track",
            "suggested_key": "Alt+Shift+Period"
        },
        "previous": {
            "description": "Previous track",
            "suggested_key": "Alt+Shift+Comma"
        },
        "like-unlike": {
            "description": "Like\/unlike track",
            "suggested_key": "Alt+Shift+L"
        }
    },
    "permissions": [
        "https:\/\/soundcloud.com\/*"
    ],
    "page_action": {
        "default_title": "SoundCloud Keyboard Shortcuts"
    }
}