SoundCloud Likes to Playlist
Extension to add all your SoundCloud Likes to a Playlist in seconds.
Hvad er SoundCloud Likes to Playlist?
SoundCloud Likes to Playlist er en Chrome-udvidelse udviklet af https://wb.gy, og dens hovedfunktion er "Extension to add all your SoundCloud Likes to a Playlist in seconds.".
Udvidelsesskærmbilleder
Download SoundCloud Likes to Playlist-udvidelses-CRX-fil
Download SoundCloud Likes to Playlist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nkndddcbofchmjogahmikkapkaoglkoh |
| Officiel URL | https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh |
| Beskrivelse | Extension to add all your SoundCloud Likes to a Playlist in seconds. |
| Filstørrelse | 564 KB |
| Antal Installationer | 3,021 |
| Nuværende Version | 2.2.11 |
| Senest Opdateret | 2021-09-02 |
| Udgivelsesdato | 2019-02-12 |
| Bedømmelse | 4.67/5 Samlet 55 Bedømmelser |
| Udvikler | https://wb.gy |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
| Hjælpeside-URL | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
| URL til Fortrolighedspolitik Side | https://joinsafqa.com/privacy-policy |
| Understøttede Sprog | 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\/*"
]
} | |