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
电子邮箱 [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
    }
}