Songlink
Share music with Songlink.
ما هو Songlink؟
Songlink هو إضافة Chrome تم تطويرها بواسطة Antoine Guillou، والميزة الرئيسية لها هي "Share music with Songlink.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Songlink
قم بتنزيل ملفات الامتداد Songlink بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" ] } |