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 |
Eメール | [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" } } |