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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/*"
    ]
}