Discord Token Login

Login to Discord with your account token

Что такое Discord Token Login?

Discord Token Login - это расширение Chrome, разработанное lostintime101dev, и его основная функция - "Login to Discord with your account token".

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

screenshot

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

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

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

                        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.                    

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

Название Discord Token Login Discord Token Login
ID kfjglmgfjedhhcddpfgfogkahmenikan
Официальный URL https://chromewebstore.google.com/detail/discord-token-login/kfjglmgfjedhhcddpfgfogkahmenikan
Описание Login to Discord with your account token
Размер файла 15.86 KB
Количество установок 1,000
Текущая Версия 1.0
Последнее Обновление 2023-06-23
Дата публикации 2023-06-22
Разработчик lostintime101dev
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/lostintime101/discord-token-browser-extension
Поддерживаемые языки 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"
}