Songlink

Share music with Songlink.

Songlink란 무엇입니까?

Songlink은(는) Antoine Guillou에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share music with Songlink."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Songlink 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Share any song or album across any streaming platform.
This extension adds a button to Chrome which will automatically open the Songlink for any song or album from Spotify, Apple Music, YouTube Music and many more.

This extension uses the website and services of Songlink (https://song.link/).                    

확장 프로그램 기본 정보

이름 Songlink Songlink
ID njnlopjiecpncchdmeeknhggbggolalc
공식 URL https://chromewebstore.google.com/detail/songlink/njnlopjiecpncchdmeeknhggbggolalc
설명 Share music with Songlink.
파일 크기 73.92 KB
설치 횟수 154
현재 버전 1.6
최근 업데이트 2022-11-18
출시 날짜 2019-10-07
평점 4.00/5 총 7 개의 평점
개발자 Antoine Guillou
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://songlink.glitch.me
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Songlink",
    "version": "1.6",
    "description": "Share music with Songlink. ",
    "author": "@starfennec",
    "homepage_url": "https:\/\/songlink.glitch.me\/",
    "background": {
        "scripts": [
            "script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.song.link\/*",
                "*:\/\/itunes.apple.com\/*",
                "*:\/\/music.apple.com\/*",
                "*:\/\/*.itun.es\/*",
                "*:\/\/*.spotify.com\/*",
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtu.be\/*",
                "*:\/\/*.deezer.com\/*",
                "*:\/\/*.tidal.com\/*",
                "*:\/\/*.napster.com\/*",
                "*:\/\/*.soundcloud.com\/*",
                "*:\/\/music.amazon.com\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/music.yandex.com\/*",
                "*:\/\/music.yandex.ru\/*",
                "*:\/\/*.spinrilla.com\/mixtapes\/*",
                "*:\/\/*.spinrilla.com\/songs\/*",
                "*:\/\/*.pandora.com\/*"
            ],
            "js": [
                "messages.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtu.be\/*"
            ],
            "js": [
                "youtubeId.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "20": "icons\/icon20.png",
            "40": "icons\/icon40.png",
            "44": "icons\/icon44.png",
            "48": "icons\/icon48.png",
            "50": "icons\/icon50.png",
            "128": "icons\/icon128.png",
            "150": "icons\/icon150.png",
            "176": "icons\/icon176.png"
        },
        "default_title": "Songlink"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "20": "icons\/icon20.png",
        "40": "icons\/icon40.png",
        "44": "icons\/icon44.png",
        "48": "icons\/icon48.png",
        "50": "icons\/icon50.png",
        "128": "icons\/icon128.png",
        "150": "icons\/icon150.png",
        "176": "icons\/icon176.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ]
}