Discord Fast Login

Enables fast login for Discord tokens checked on discord-checker.janic.dev.

O que é Discord Fast Login?

Discord Fast Login é uma extensão do Chrome desenvolvida por https://janic.dev, e sua principal característica é "Enables fast login for Discord tokens checked on discord-checker.janic.dev.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Discord Fast Login

Baixe arquivos de extensão Discord Fast Login no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension was made for the Discord Token Checker on https://discord-checker.janic.dev. It will only work on checked Discord accounts on this site. 

By using this extension you will enables the "Fast Login" button on the Discord Checker website itself, to directly login to Discord without the need to run any console scripts.

How does it work?

This extension will listen for the "Fast Login" button click on the website and create a new tab where it will automatically login to the selected account.                    

Informações Básicas da Extensão

Nome Discord Fast Login Discord Fast Login
ID ccekbfgamknaaidkdbbdmmbcioajaacl
URL Oficial https://chromewebstore.google.com/detail/discord-fast-login/ccekbfgamknaaidkdbbdmmbcioajaacl
Descrição Enables fast login for Discord tokens checked on discord-checker.janic.dev.
Tamanho do Arquivo 70.42 KB
Contagem de Instalações 515
Versão Atual 2.0.3
Última Atualização 2024-02-12
Data de Publicação 2023-07-31
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://janic.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://discord-checker.janic.dev
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Discord Fast Login",
    "version": "2.0.3",
    "description": "Enables fast login for Discord tokens checked on discord-checker.janic.dev.",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.discord.com\/*",
        "https:\/\/*.janic.dev\/*"
    ],
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-32.png"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "192": "icon-192.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-192.png",
                "icon-32.png",
                "icon-16.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}