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はDVSProductionsによって開発されたChromeの拡張機能で、その主な機能は「Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)」です。

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

screenshot

Monstercat Player拡張機能のCRXファイルをダウンロード

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
Eメール [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
    }
}