SoundCloud Likes to Playlist
Extension to add all your SoundCloud Likes to a Playlist in seconds.
ما هو SoundCloud Likes to Playlist؟
SoundCloud Likes to Playlist هو إضافة Chrome تم تطويرها بواسطة https://wb.gy، والميزة الرئيسية لها هي "Extension to add all your SoundCloud Likes to a Playlist in seconds.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SoundCloud Likes to Playlist
قم بتنزيل ملفات الامتداد SoundCloud Likes to Playlist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
I found that all my SoundCloud likes are public so I built a chrome extension to automate adding all my likes to a Private Playlist :D معلومات أساسية عن التمديد
| الاسم | |
| ID | nkndddcbofchmjogahmikkapkaoglkoh |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh |
| الوصف | Extension to add all your SoundCloud Likes to a Playlist in seconds. |
| حجم الملف | 564 KB |
| عدد التثبيتات | 3,021 |
| النسخة الحالية | 2.2.11 |
| آخر تحديث | 2021-09-02 |
| تاريخ النشر | 2019-02-12 |
| تقييم | 4.67/5 مجموع تقييمات 55 |
| المطور | https://wb.gy |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
| عنوان صفحة المساعدة | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
| عنوان صفحة سياسة الخصوصية | https://joinsafqa.com/privacy-policy |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "2.2.11",
"short_name": "__MSG_appShortName__",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon.png",
"128": "images\/logo-128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"browser_action": [],
"omnibox": {
"keyword": "soundcloud"
},
"content_scripts": [
{
"matches": [
"http:\/\/*.soundcloud.com\/*",
"https:\/\/*.soundcloud.com\/*"
],
"css": [
"styles\/contentscript.css"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"webRequest"
],
"web_accessible_resources": [
"images\/*"
]
} | |