YoloGlyphics Discord extension
Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing,…
YoloGlyphics Discord extensionとは何ですか?
YoloGlyphics Discord extensionはhttp://yologlyphics.comによって開発されたChromeの拡張機能で、その主な機能は「Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing,…」です。
拡張機能のスクリーンショット
YoloGlyphics Discord extension拡張機能のCRXファイルをダウンロード
YoloGlyphics Discord extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing, don't worry! You can search our library of Emotes too, and use those instead. Your friends will be envious of your awesome superpowers!
拡張機能の基本情報
名前 | |
ID | pohnhkfeokmgfnnllomdcpadgcjdohnd |
公式URL | https://chrome.google.com/webstore/detail/yologlyphics-discord-exte/pohnhkfeokmgfnnllomdcpadgcjdohnd |
説明 | Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing,… |
ファイルサイズ | 695 KB |
インストール数 | 74 |
現在のバージョン | 1.1.1 |
最終更新日 | 2020-07-06 |
公開日 | 2019-12-09 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | http://yologlyphics.com |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YoloGlyphics Discord extension", "description": "", "version": "1.1.1", "browser_action": { "default_popup": "options\/options.html", "default_icon": { "38": "icons\/to_38.png", "19": "icons\/to_19.png" } }, "options_page": "options\/options.html", "icons": { "16": "icons\/to_16.png", "48": "icons\/to_48.png", "128": "icons\/to_128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "tabs", "*:\/\/discord.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/discord.com\/*" ], "js": [ "contentscript.js" ], "css": [], "run_at": "document_end" } ], "web_accessible_resources": [ "options.html", "inject.js" ] } |