Discord Get User Token

Discord Get User Token extension streamlines the process of obtaining an Authorization Token for a logged-in Discord user

Discord Get User Tokenคืออะไร?

Discord Get User Token เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pirtpal Singh และคุณลักษณะหลักของมันคือ "Discord Get User Token extension streamlines the process of obtaining an Authorization Token for a logged-in Discord user"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord Get User Token

ดาวน์โหลดไฟล์ส่วนขยาย Discord Get User Token ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ✨ Discord Get User Token ✨

The Discord Get User Token extension streamlines the process of obtaining an Authorization Token for a logged-in Discord user. Easily acquire the necessary token to log into your Discord account, making it more convenient than ever before.

Tags:
- Discord Token Retrieval Helper
- Discord Token Generator
- Discord Token Authenticator
- Discord User Authentication
- Discord Account Access
- Discord API Integration
- Discord Bot Development
- Discord Extension


👋Feel free to contribute to fix any problems, or to submit an issue!👋
For contacting me, simply click any of the buttons under the "Contact me here" section in the extension.


✨Contact Me✨
Email: [email protected]
Instagram: https://www.instagram.com/pirtamatharu                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Discord Get User Token Discord Get User Token
ID accgjfooejbpdchkfpngkjjdekkcbnfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/discord-get-user-token/accgjfooejbpdchkfpngkjjdekkcbnfd
คำอธิบาย Discord Get User Token extension streamlines the process of obtaining an Authorization Token for a logged-in Discord user
ขนาดไฟล์ 53.94 KB
จำนวนการติดตั้ง 1,080
เวอร์ชันปัจจุบัน 1.0.20
อัปเดตครั้งล่าสุด 2024-02-16
วันที่เผยแพร่ 2023-09-05
คะแนน 4.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Pirtpal Singh
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Discord Get User Token",
    "description": "Discord Get User Token extension streamlines the process of obtaining an Authorization Token for a logged-in Discord user",
    "version": "1.0.20",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "64": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "host_permissions": [
        "https:\/\/discord.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discord.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/contentScript.js"
            ],
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/web-script.js"
            ],
            "matches": [
                "https:\/\/discord.com\/*"
            ]
        }
    ]
}