SoundCloud Likes to Playlist
Extension to add all your SoundCloud Likes to a Playlist in seconds.
What is SoundCloud Likes to Playlist?
SoundCloud Likes to Playlist is a Chrome extension developed by https://wb.gy, and its main feature is "Extension to add all your SoundCloud Likes to a Playlist in seconds.".
Extension Screenshots
Download SoundCloud Likes to Playlist Extension CRX File
Download SoundCloud Likes to Playlist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | SoundCloud Likes to Playlist |
ID | nkndddcbofchmjogahmikkapkaoglkoh |
Official URL | https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh |
Description | Extension to add all your SoundCloud Likes to a Playlist in seconds. |
File Size | 564 KB |
Installation Count | 3,021 |
Current Version | 2.2.11 |
Last Updated | 2021-09-02 |
Publish Date | 2019-02-12 |
Rating | 4.67/5 Total 55 Ratings |
Developer | https://wb.gy |
[email protected] | |
Payment Type | free |
Extension Website | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
Help Page URL | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
Privacy Policy Page URL | https://joinsafqa.com/privacy-policy |
Supported Languages | 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\/*" ] } |