Discord Token Login

Login to Discord with your account token

Was ist Discord Token Login?

Discord Token Login ist eine Chrome-Erweiterung, die von lostintime101dev entwickelt wurde, und ihr Hauptmerkmal ist "Login to Discord with your account token".

Erweiterungsscreenshots

screenshot

Discord Token Login-Erweiterungs-CRX-Datei herunterladen

Laden Sie Discord Token Login-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Discord Token Login Discord Token Login
ID kfjglmgfjedhhcddpfgfogkahmenikan
Offizielle URL https://chromewebstore.google.com/detail/discord-token-login/kfjglmgfjedhhcddpfgfogkahmenikan
Beschreibung Login to Discord with your account token
Dateigröße 15.86 KB
Installationsanzahl 1,000
Aktuelle Version 1.0
Letztes Update 2023-06-23
Veröffentlichungsdatum 2023-06-22
Entwickler lostintime101dev
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/lostintime101/discord-token-browser-extension
Unterstützte Sprachen 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"
}