scam

SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.

Cos'è scam?

scam è un'estensione di Chrome sviluppata da reid, e la sua funzione principale è "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione scam

Scarica i file di estensione scam in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome scam scam
ID pjjmnjpdamiodphjhekmbdgnbegndmkc
URL Ufficiale https://chromewebstore.google.com/detail/scam/pjjmnjpdamiodphjhekmbdgnbegndmkc
Descrizione SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
Dimensione del File 59.49 KB
Conteggio Installazioni 2,120
Versione Corrente 1.3.1
Ultimo Aggiornamento 2022-06-09
Data di Pubblicazione 2020-04-24
Valutazione 4.88/5 Totale 24 Valutazioni
Sviluppatore reid
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sad/scam
Lingue Supportate 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\/*"
    ]
}