SoundCloud Keyboard Shortcuts

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

Qu'est-ce que SoundCloud Keyboard Shortcuts ?

SoundCloud Keyboard Shortcuts est une extension Chrome développée par David Yang, et sa fonction principale est "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SoundCloud Keyboard Shortcuts

Téléchargez les fichiers d'extension SoundCloud Keyboard Shortcuts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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**                    

Informations de Base sur l'Extension

Nom SoundCloud Keyboard Shortcuts SoundCloud Keyboard Shortcuts
ID ikhigoamgbflnjhdbajcpaehkjdcdokh
URL Officiel https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh
Description Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
Taille du Fichier 11.36 KB
Nombre d'Installations 132
Version Actuelle 0.0.0.2
Dernière Mise à Jour 2019-06-01
Date de Publication 2019-06-01
Évaluation 3.67/5 Total 3 Évaluations
Développeur David Yang
Type de Paiement free
Site Web de l'Extension https://github.com/davidbobyang/soundcloud-hotkeys
Langues Prises en Charge 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"
    }
}