scam

SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.

Hvad er scam?

scam er en Chrome-udvidelse udviklet af reid, og dens hovedfunktion er "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.".

Udvidelsesskærmbilleder

screenshot

Download scam-udvidelses-CRX-fil

Download scam-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn scam scam
ID pjjmnjpdamiodphjhekmbdgnbegndmkc
Officiel URL https://chromewebstore.google.com/detail/scam/pjjmnjpdamiodphjhekmbdgnbegndmkc
Beskrivelse SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
Filstørrelse 59.49 KB
Antal Installationer 2,120
Nuværende Version 1.3.1
Senest Opdateret 2022-06-09
Udgivelsesdato 2020-04-24
Bedømmelse 4.88/5 Samlet 24 Bedømmelser
Udvikler reid
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/sad/scam
Understøttede Sprog 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\/*"
    ]
}