Deezerify

This extension improves look and feel of Deezer

Deezerifyคืออะไร?

Deezerify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmitry และคุณลักษณะหลักของมันคือ "This extension improves look and feel of Deezer"

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

screenshot
screenshot

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

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

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

                        This extension tends to add some customization into Deezer's look and feel.

Full list of enhancements (will be updated):
- ability to add the whole album to the playlist without visiting album's details page.
- ability to customize items in menu (can be selected in options)
- ability to choose dark theme for Deezer (can be selected in options)
- more to come...

Feel free to add your comments and suggestions through comments.

Version history:
---
2.2.4
- dark theme fixed
---
---
2.2.3
- improvements to dark theme
---
---
2.2.2
- improvements to dark theme
---
2.2.1
- improvements to dark theme
---
2.2.0
- fixed the situation when plus-button stopped working after a day or two
---
2.1.1
- hot-fix for menu content script 
---
2.1.0
- fixed plus-button script after deezer's layout change
- fixed left panel content modification script after deezer's scripts change
- improved auth token expiration handling
---
2.0.7:
- improvements for dark theme on 'my music' and related pages
---
2.0.6:
- fixes for plus-button menu after deezer changed their styles across the site
---
2.0.5:
- fixes for dark theme and features availability when using slow internet connection
---
2.0.4:
- updated dark theme, i.e. improved colors for lyrics panel
---
2.0.3:
- updated dark theme, i.e. improved colors for search page
---
2.0.2:
- updated name and removed redundant privilege 
---
2.0.1:
- updated description
---
2.0.0:
- added ability to choose dark theme for Deezer
---
1.1.5:
- fixed positioning of popup after Deezer changed the container for scrolling
---
1.1.4:
- fixed plus-button after Deezer changed url format
---
1.1.3:
- fixed context menu for plus-button after Deezer introduced responsive layout
---
1.1.2:
- removed redundant permission
---
1.1.1:
- fixed after deezer stopped using https                    

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

ชื่อ Deezerify Deezerify
ID eamncajdopiabocecbhclhannloflleo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/deezerify/eamncajdopiabocecbhclhannloflleo
คำอธิบาย This extension improves look and feel of Deezer
ขนาดไฟล์ 104 KB
จำนวนการติดตั้ง 4,239
เวอร์ชันปัจจุบัน 2.2.5
อัปเดตครั้งล่าสุด 2021-07-15
วันที่เผยแพร่ 2019-06-17
คะแนน 2.24/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา Dmitry
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/diktar/deezer-ui-enhancements
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Deezerify",
    "version": "2.2.5",
    "manifest_version": 2,
    "description": "This extension improves look and feel of Deezer",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/options_custom\/lib\/store.js",
            "src\/options_custom\/manifest.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "history",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deezer.com\/*"
            ],
            "css": [
                "src\/inject\/plus-button\/plus-button.css",
                "src\/inject\/dark-theme\/dark-theme.css"
            ],
            "js": [
                "src\/inject\/common\/inject-code.js",
                "src\/inject\/common\/startup-task.js",
                "src\/inject\/dark-theme\/dark-theme.js",
                "src\/inject\/menu-content\/menu-content.js",
                "src\/inject\/plus-button\/plus-button.js"
            ]
        }
    ]
}