scam

SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.

scam क्या है?

scam reid द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में scam एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}