scam

SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.

Was ist scam?

scam ist eine Chrome-Erweiterung, die von reid entwickelt wurde, und ihr Hauptmerkmal ist "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.".

Erweiterungsscreenshots

screenshot

scam-Erweiterungs-CRX-Datei herunterladen

Laden Sie scam-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

                        scam (the soundcloud account manager) is a simple account switching extension for SoundCloud. new accounts are added whenever you log in, and you can easily switch between them in the username dropdown to the right of the "upload" button.

special thanks to jammy for his contributions.                    

Grundlegende Informationen zur Erweiterung

Name scam scam
ID pjjmnjpdamiodphjhekmbdgnbegndmkc
Offizielle URL https://chromewebstore.google.com/detail/scam/pjjmnjpdamiodphjhekmbdgnbegndmkc
Beschreibung SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
Dateigröße 59.49 KB
Installationsanzahl 2,120
Aktuelle Version 1.3.1
Letztes Update 2022-06-09
Veröffentlichungsdatum 2020-04-24
Bewertung 4.88/5 Insgesamt 24 Bewertungen
Entwickler reid
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sad/scam
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "scam",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.",
    "homepage_url": "https:\/\/github.com\/nihilist\/scam",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "240": "icons\/icon240.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "src\/switcher.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/secure.soundcloud.com\/*"
            ],
            "js": [
                "src\/login.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "cookies",
        "https:\/\/soundcloud.com\/*",
        "https:\/\/api-auth.soundcloud.com\/*",
        "https:\/\/secure.soundcloud.com\/*"
    ]
}