Monstercat Player

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

Apa itu Monstercat Player?

Monstercat Player adalah ekstensi Chrome yang dikembangkan oleh DVSProductions, dan fitur utamanya adalah "Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Monstercat Player

Unduh file ekstensi Monstercat Player dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Monstercat Player Monstercat Player
ID aamfbnhcjkcimfbpcjhmmkkpbbpnacfd
URL Resmi https://chrome.google.com/webstore/detail/monstercat-player/aamfbnhcjkcimfbpcjhmmkkpbbpnacfd
Deskripsi Provides a browser wide player for your favorite songs! (Ported from Firefox. For best experience and support use Firefox version)
Ukuran File 470 KB
Jumlah Instalasi 56
Versi Saat Ini 1.1.4
Terakhir Diperbarui 2019-02-27
Tanggal Publikasi 2019-02-27
Penilaian 5.00/5 Total 2 Penilaian
Pengembang DVSProductions
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}