Discord Fast Login

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

Discord Fast Login là gì?

Discord Fast Login là một tiện ích mở rộng Chrome được phát triển bởi https://janic.dev, và tính năng chính của nó là "Enables fast login for Discord tokens checked on discord-checker.janic.dev.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Discord Fast Login

Tải xuống các tệp mở rộng Discord Fast Login dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Discord Fast Login Discord Fast Login
ID ccekbfgamknaaidkdbbdmmbcioajaacl
URL Chính Thức https://chromewebstore.google.com/detail/discord-fast-login/ccekbfgamknaaidkdbbdmmbcioajaacl
Mô tả Enables fast login for Discord tokens checked on discord-checker.janic.dev.
Kích Thước Tệp 70.42 KB
Số Lần Cài Đặt 515
Phiên Bản Hiện Tại 2.0.3
Cập Nhật Lần Cuối 2024-02-12
Ngày Phát Hành 2023-07-31
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://janic.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://discord-checker.janic.dev
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}