Discord Fast Login

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

Discord Fast Login란 무엇입니까?

Discord Fast Login은(는) https://janic.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables fast login for Discord tokens checked on discord-checker.janic.dev."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Discord Fast Login 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Discord Fast Login Discord Fast Login
ID ccekbfgamknaaidkdbbdmmbcioajaacl
공식 URL https://chromewebstore.google.com/detail/discord-fast-login/ccekbfgamknaaidkdbbdmmbcioajaacl
설명 Enables fast login for Discord tokens checked on discord-checker.janic.dev.
파일 크기 70.42 KB
설치 횟수 515
현재 버전 2.0.3
최근 업데이트 2024-02-12
출시 날짜 2023-07-31
평점 5.00/5 총 4 개의 평점
개발자 https://janic.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://discord-checker.janic.dev
지원되는 언어 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}