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)".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Monstercat Player
قم بتنزيل ملفات الامتداد Monstercat Player بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
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 } } |