Discord Status
Set your discord status, simple, easy and free.
什么是Discord Status?
Discord Status是由Bryson Guwin开发的Chrome扩展程序,该扩展的主要功能是“Set your discord status, simple, easy and free.”。
扩展截图
下载Discord Status扩展crx文件
下载Discord Status扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Set a Status for your Discord account, Do you want a cool free custom status like bots would have? Well you came to the right place this Chrome Item will help you custom set your status without any struggle. 扩展基本信息
| 名称 | |
| ID | phhkfpenalhlnhefgcehhdgoabneidjn |
| 官方URL | https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn |
| 简介 | Set your discord status, simple, easy and free. |
| 文件大小 | 36.92 KB |
| 安装次数 | 4,038 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2021-04-01 |
| 上架时间 | 2020-12-01 |
| 评分 | 2.93/5 共30次评分 |
| 开发者 | Bryson Guwin |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"default_locale": "en",
"name": "Discord Status",
"description": "Set your discord status, simple, easy and free.",
"icons": {
"128": "icon.png"
},
"version": "1.0.0",
"author": "UNOStudios",
"minimum_chrome_version": "41",
"permissions": [
"storage"
],
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/discord.com\/channels\/*",
"https:\/\/ptb.discord.com\/channels\/*",
"https:\/\/canary.discord.com\/channels\/*"
],
"js": [
"discord.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"youtube.js",
"content_script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/soundcloud.com\/*"
],
"js": [
"soundcloud.js",
"content_script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/app.plex.tv\/desktop"
],
"js": [
"plex.js",
"content_script.js"
],
"run_at": "document_idle"
}
]
} | |