SoundCloud Likes to Playlist

Extension to add all your SoundCloud Likes to a Playlist in seconds.

Wat is SoundCloud Likes to Playlist?

SoundCloud Likes to Playlist is een Chrome-extensie ontwikkeld door https://wb.gy, en de belangrijkste functie is "Extension to add all your SoundCloud Likes to a Playlist in seconds.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie SoundCloud Likes to Playlist

Download SoundCloud Likes to Playlist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam SoundCloud Likes to Playlist SoundCloud Likes to Playlist
ID nkndddcbofchmjogahmikkapkaoglkoh
Officiële URL https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh
Beschrijving Extension to add all your SoundCloud Likes to a Playlist in seconds.
Bestandsgrootte 564 KB
Aantal Installaties 3,021
Huidige Versie 2.2.11
Laatst Bijgewerkt 2021-09-02
Publicatiedatum 2019-02-12
Beoordeling 4.67/5 Totaal 55 Beoordelingen
Ontwikkelaar https://wb.gy
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2
Help Pagina-URL https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2
URL van de Privacybeleid Pagina https://joinsafqa.com/privacy-policy
Ondersteunde Talen 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\/*"
    ]
}