SoundCloud Likes to Playlist
Extension to add all your SoundCloud Likes to a Playlist in seconds.
Was ist SoundCloud Likes to Playlist?
SoundCloud Likes to Playlist ist eine Chrome-Erweiterung, die von https://wb.gy entwickelt wurde, und ihr Hauptmerkmal ist "Extension to add all your SoundCloud Likes to a Playlist in seconds.".
Erweiterungsscreenshots
SoundCloud Likes to Playlist-Erweiterungs-CRX-Datei herunterladen
Laden Sie SoundCloud Likes to Playlist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | SoundCloud Likes to Playlist |
ID | nkndddcbofchmjogahmikkapkaoglkoh |
Offizielle URL | https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh |
Beschreibung | Extension to add all your SoundCloud Likes to a Playlist in seconds. |
Dateigröße | 564 KB |
Installationsanzahl | 3,021 |
Aktuelle Version | 2.2.11 |
Letztes Update | 2021-09-02 |
Veröffentlichungsdatum | 2019-02-12 |
Bewertung | 4.67/5 Insgesamt 55 Bewertungen |
Entwickler | https://wb.gy |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
Hilfeseite URL | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
URL der Datenschutzrichtlinien-Seite | https://joinsafqa.com/privacy-policy |
Unterstützte Sprachen | 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\/*" ] } |