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
    }
}