Monstercat Player

Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)

Что такое Monstercat Player?

Monstercat Player - это расширение Chrome, разработанное DVSProductions, и его основная функция - "Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)".

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

screenshot

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

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

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

                        Features
 • Full controls for the player
 • UI in line with the monstercat website
 • Song display
 • Song progress visualizer
 • Click current song to jump to the playing tab
 • Precise volume control
 • Click "monstercat" to jump to the monstercat website immediately                    

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

Название Monstercat Player Monstercat Player
ID aamfbnhcjkcimfbpcjhmmkkpbbpnacfd
Официальный URL https://chrome.google.com/webstore/detail/monstercat-player/aamfbnhcjkcimfbpcjhmmkkpbbpnacfd
Описание Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)
Размер файла 470 KB
Количество установок 56
Текущая Версия 1.1.4
Последнее Обновление 2019-02-27
Дата публикации 2019-02-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик DVSProductions
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Monstercat Player",
    "version": "1.1.4",
    "description": "Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)",
    "icons": {
        "16": "\/icons\/play16.png",
        "48": "\/icons\/play48.png",
        "32": "\/icons\/play32.png",
        "128": "\/icons\/play.png"
    },
    "permissions": [
        "*:\/\/*.monstercat.com\/*",
        "activeTab",
        "tabs",
        "storage",
        "downloads"
    ],
    "browser_action": {
        "default_area": "navbar",
        "default_icon": "icons\/play.png",
        "default_title": "Monstercat Player [DEBUG]",
        "default_popup": "popup\/frontend.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.monstercat.com\/*"
            ],
            "js": [
                "Player.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "Backend.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true
    }
}