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是由natenho開發的Chrome擴展程式,該擴展的主要功能是“Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms”。

擴展截圖

screenshot

下載Deezer Track Share擴展crx文件

下載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
官方網址 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"
    }
}