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 |
官方網址 | 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" } } |