scam

SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.

Что такое scam?

scam - это расширение Chrome, разработанное reid, и его основная функция - "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения scam

Скачайте файлы расширений scam в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название scam scam
ID pjjmnjpdamiodphjhekmbdgnbegndmkc
Официальный URL https://chromewebstore.google.com/detail/scam/pjjmnjpdamiodphjhekmbdgnbegndmkc
Описание SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
Размер файла 59.49 KB
Количество установок 2,120
Текущая Версия 1.3.1
Последнее Обновление 2022-06-09
Дата публикации 2020-04-24
Рейтинг 4.88/5 Всего 24 оценок
Разработчик reid
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sad/scam
Поддерживаемые языки 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\/*"
    ]
}