Songlink

Share music with Songlink.

Songlinkคืออะไร?

Songlink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Antoine Guillou และคุณลักษณะหลักของมันคือ "Share music with Songlink."

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

screenshot
screenshot
screenshot

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

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

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

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