Deezer Track Share

Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms

Deezer Track Shareคืออะไร?

Deezer Track Share เป็นส่วนขยายของ Chrome ที่พัฒนาโดย natenho และคุณลักษณะหลักของมันคือ "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms"

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

screenshot

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

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

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

                        Includes the share button easily available from Deezer Web main page.

Includes the SongLink share button, to open the current song in SongLink share page.

Also includes buttons to open the current playing song in other platforms:
- YouTube
- Spotify                    

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

ชื่อ Deezer Track Share Deezer Track Share
ID akgbpfoklebfkmbjghlibihpbbknclpp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp
คำอธิบาย Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
ขนาดไฟล์ 18.79 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 0.0.0.2
อัปเดตครั้งล่าสุด 2021-08-06
วันที่เผยแพร่ 2021-04-18
ผู้พัฒนา natenho
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deezer Track Share",
    "description": "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms",
    "version": "0.0.0.2",
    "browser_action": {
        "default_icon": "icon96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.deezer.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.deezer.com\/*",
        "https:\/\/api.song.link\/*"
    ],
    "web_accessible_resources": [
        "sharebutton.html"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png"
    }
}