scam

SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.

Co je scam?

scam je rozšíření Chrome vyvinuté reid, a jeho hlavní funkcí je „SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření scam

Stáhněte si soubory rozšíření scam ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název scam scam
ID pjjmnjpdamiodphjhekmbdgnbegndmkc
Oficiální URL https://chromewebstore.google.com/detail/scam/pjjmnjpdamiodphjhekmbdgnbegndmkc
Popis SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
Velikost souboru 59.49 KB
Počet instalací 2,120
Aktuální Verze 1.3.1
Poslední Aktualizace 2022-06-09
Datum Vydání 2020-04-24
Hodnocení 4.88/5 Celkem 24 Hodnocení
Vývojář reid
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/sad/scam
Podporované Jazyky 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\/*"
    ]
}