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はPirtpal Singhによって開発されたChromeの拡張機能で、その主な機能は「Discord Get User Token extension streamlines the process of obtaining an Authorization Token for a logged-in Discord user」です。
拡張機能のスクリーンショット
Discord Get User Token拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |