Discord++
Adds numerous features to discord
什么是Discord++?
Discord++是由DevStoreMaker开发的Chrome扩展程序,该扩展的主要功能是“Adds numerous features to discord”。
扩展截图
下载Discord++扩展crx文件
下载Discord++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This chrome extension adds some extra menu options within the discord webapp. These features include: A "Darker Theme" for discord, an expletive filter that can be turned on and off, and a couple of smaller easter-eggs. Note: Due to privacy concerns, most names and icons are removed in the demo images
扩展基本信息
名称 | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
官方URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
简介 | Adds numerous features to discord |
文件大小 | 223 KB |
安装次数 | 6,000 |
当前版本 | 1.0 |
更新时间 | 2020-03-24 |
上架时间 | 2020-03-24 |
评分 | 1.54/5 共35次评分 |
开发者 | DevStoreMaker |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Discord++", "version": "1.0", "description": "Adds numerous features to discord", "manifest_version": 2, "permissions": [ "https:\/\/discordapp.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/discordapp.com\/*" ], "js": [ "background.js" ] } ], "web_accessible_resources": [ "darker.css", "badwords.txt" ], "icons": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" } } |