Discord Token Login

Login to Discord with your account token

Co to jest Discord Token Login?

Discord Token Login to rozszerzenie Chrome opracowane przez lostintime101dev, a jego główną funkcją jest „Login to Discord with your account token”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Discord Token Login

Pobierz pliki rozszerzeń Discord Token Login w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension allows you to log into Discord with your account token.

Be VERY careful with extensions that access your Discord token. A single malicious update could compromise your tokens. Anyone with your token can take control of your Discord account. The source code of this extension can be inspected at the support URL provided.                    

Podstawowe informacje o rozszerzeniu

Nazwa Discord Token Login Discord Token Login
ID kfjglmgfjedhhcddpfgfogkahmenikan
Oficjalny URL https://chromewebstore.google.com/detail/discord-token-login/kfjglmgfjedhhcddpfgfogkahmenikan
Opis Login to Discord with your account token
Rozmiar pliku 15.86 KB
Liczba instalacji 1,000
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-06-23
Data Publikacji 2023-06-22
Deweloper lostintime101dev
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/lostintime101/discord-token-browser-extension
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "128 logo.png",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*.discord.com\/*",
                "https:\/\/*.discord.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Login to Discord with your account token",
    "icons": {
        "16": "16 logo.png",
        "48": "48 logo.png",
        "128": "128 logo.png"
    },
    "manifest_version": 3,
    "name": "Discord Token Login",
    "version": "1.0"
}