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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}