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 هو إضافة Chrome تم تطويرها بواسطة natenho، والميزة الرئيسية لها هي "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Deezer Track Share
قم بتنزيل ملفات الامتداد Deezer Track Share بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |