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によって開発されたChromeの拡張機能で、その主な機能は「Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud」です。

拡張機能のスクリーンショット

screenshot

SoundCloud Keyboard Shortcuts拡張機能のCRXファイルをダウンロード

SoundCloud Keyboard Shortcuts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}