Deezer Control

This extension allows you to control Deezer from your browser: hot keys, popup, notifications... it's all there!

Deezer Controlคืออะไร?

Deezer Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Metoule และคุณลักษณะหลักของมันคือ "This extension allows you to control Deezer from your browser: hot keys, popup, notifications... it's all there!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Deezer Control

ดาวน์โหลดไฟล์ส่วนขยาย Deezer Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        It takes the form of a popup that allows you to quickly pause, resume or navigate through the music currently playing on Deezer. 
It displays the album cover along with the the track's title and the artist's name. 
Several different styles can be chosen for the popup, to match everybody's needs. 

You just want to know the name of the song? Then simply hover your cursor on the icon and it will be displayed in the tooltip.

A popup is a waste of mouse movement? Use the hot keys, and control Deezer straight from your keyboard! Multimedia keys, or any combination of keys, the choice is yours.

But wait, there's more! You can display notifications, and you can even choose when they appear: always? on hot keys only? The choice is yours.

Want more popup styles? Need new functionality? Drop me a line at [email protected]! 

You can also check out the code, as it's open source! Go there: https://bitbucket.org/metoule/deezer_control

NOTE: this extension is NOT developed by Deezer.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Deezer Control Deezer Control
ID cmkmelneeccijablfclenghkcbopdemg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/deezer-control/cmkmelneeccijablfclenghkcbopdemg
คำอธิบาย This extension allows you to control Deezer from your browser: hot keys, popup, notifications... it's all there!
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 2.19
อัปเดตครั้งล่าสุด 2023-01-27
วันที่เผยแพร่ 2020-02-04
คะแนน 4.76/5 รวมทั้งหมด 4193 คะแนน
ผู้พัฒนา Metoule
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/metoule/deezer-control
URL หน้าช่วยเหลือ https://github.com/metoule/deezer-control/issues
ภาษาที่รองรับ en,fr,it,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.19",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "icons": {
        "16": "imgs\/icons\/deezer_16x16.png",
        "48": "imgs\/icons\/deezer_48x48.png",
        "128": "imgs\/icons\/deezer_128x128.png"
    },
    "browser_action": {
        "default_icon": "imgs\/icons\/deezer_19x19.png",
        "default_title": "__MSG_defaultTitle__"
    },
    "background": {
        "scripts": [
            "scripts\/localstorage.js",
            "scripts\/notifications.js",
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deezer.com\/*"
            ],
            "js": [
                "scripts\/player_listener.js",
                "scripts\/deezer\/bootstrap.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.deezer.com\/*",
        "notifications",
        "tabs",
        "webNavigation"
    ],
    "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' https:\/\/e-cdns-images.dzcdn.net\/images\/;",
    "optional_permissions": [
        ""
    ],
    "web_accessible_resources": [
        "scripts\/deezer\/player_observer.js"
    ]
}