Mixradio Web Player Hotkeys

Add keyboard shortcuts to control Mixrad.io music player from your browser

Что такое Mixradio Web Player Hotkeys?

Mixradio Web Player Hotkeys - это расширение Chrome, разработанное Bill Hedworth, и его основная функция - "Add keyboard shortcuts to control Mixrad.io music player from your browser".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Mixradio Web Player Hotkeys

Скачайте файлы расширений Mixradio Web Player Hotkeys в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Keyboard shortcuts to control Mixrad.io music player from your browser.

To configure: Extensions > Mixradio extension > Options > Configure HotKeys (You can also set them globally from this menu, if a shortcut isn't working it might already configured in your OS for something else)

Current defaults are:
* Play/Pause: "Media Play Pause"
* Next track: "Media Next"
* Like track: "Alt+Shift+P"
* Dislike track: "Alt+Shift+O"
* Toast Notification of currently playing track: No default
* Open mixrad.io in pinned tab: No default
* Start Mymix: No default (you need a logged in account)                    

Основная информация о расширении

Название Mixradio Web Player Hotkeys Mixradio Web Player Hotkeys
ID pmpjmciakkfogdpnohofddaedpdlebka
Официальный URL https://chrome.google.com/webstore/detail/mixradio-web-player-hotke/pmpjmciakkfogdpnohofddaedpdlebka
Описание Add keyboard shortcuts to control Mixrad.io music player from your browser
Размер файла 76.31 KB
Количество установок 27
Текущая Версия 0.1.6
Последнее Обновление 2016-02-09
Дата публикации 2016-02-08
Рейтинг 4.83/5 Всего 6 оценок
Разработчик Bill Hedworth
Тип оплаты free
Официальный сайт расширения https://github.com/Bigsy/mixradio-chrome-hotkeys
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mixradio Web Player Hotkeys",
    "description": "Add keyboard shortcuts to control Mixrad.io music player from your browser",
    "version": "0.1.6",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "incognito": "split",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mixrad.io\/*"
            ],
            "js": [
                "content.js",
                "jquery-2.2.0.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "next": {
            "description": "Next track",
            "suggested_key": "MediaNextTrack"
        },
        "play-pause": {
            "description": "Play\/Pause",
            "suggested_key": "MediaPlayPause"
        },
        "like": {
            "description": "Like track",
            "suggested_key": "Alt+Shift+P"
        },
        "dislike": {
            "description": "Dislike track",
            "suggested_key": "Alt+Shift+O"
        },
        "pinned": {
            "description": "Open mixradio in pinned tab"
        },
        "mymix": {
            "description": "Start Mymix"
        },
        "current-toast": {
            "description": "Current playing track popup"
        }
    },
    "permissions": [
        "https:\/\/mixrad.io\/*",
        "notifications",
        "https:\/\/assets.mixrad.io\/*"
    ]
}