Discord Token Login
Login to Discord with your account token
什么是Discord Token Login?
Discord Token Login是由lostintime101dev开发的Chrome扩展程序,该扩展的主要功能是“Login to Discord with your account token”。
扩展截图
下载Discord Token Login扩展crx文件
下载Discord Token Login扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to log into Discord with your account token.
Be VERY careful with extensions that access your Discord token. A single malicious update could compromise your tokens. Anyone with your token can take control of your Discord account. The source code of this extension can be inspected at the support URL provided. 扩展基本信息
| 名称 | |
| ID | kfjglmgfjedhhcddpfgfogkahmenikan |
| 官方URL | https://chromewebstore.google.com/detail/discord-token-login/kfjglmgfjedhhcddpfgfogkahmenikan |
| 简介 | Login to Discord with your account token |
| 文件大小 | 15.86 KB |
| 安装次数 | 1,000 |
| 当前版本 | 1.0 |
| 更新时间 | 2023-06-23 |
| 上架时间 | 2023-06-22 |
| 开发者 | lostintime101dev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/lostintime101/discord-token-browser-extension |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"action": {
"default_icon": "128 logo.png",
"default_popup": "popup\/index.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"http:\/\/*.discord.com\/*",
"https:\/\/*.discord.com\/*"
],
"run_at": "document_start"
}
],
"description": "Login to Discord with your account token",
"icons": {
"16": "16 logo.png",
"48": "48 logo.png",
"128": "128 logo.png"
},
"manifest_version": 3,
"name": "Discord Token Login",
"version": "1.0"
} | |