Microsoft Teams Emojinator
Adds emoji to microsoft teams via an external emoji server!
Microsoft Teams Emojinatorとは何ですか?
Microsoft Teams EmojinatorはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Adds emoji to microsoft teams via an external emoji server!」です。
拡張機能のスクリーンショット
Microsoft Teams Emojinator拡張機能のCRXファイルをダウンロード
Microsoft Teams Emojinator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Use all of your favorite emoji in Microsoft teams! They do not support custom emoticons be default, this allows the web app to support viewing custom emoji hosted externally. This requires an external emoji server to host the images for your team, channel, or organization Use the extension settings page to configure the remote URL for the emoji server Further documentation and source here: https://github.com/dsmiller95/microsoft-teams-emojifier
拡張機能の基本情報
名前 | Microsoft Teams Emojinator |
ID | eflminelddfglcbimfpncahdiacnnegk |
公式URL | https://chromewebstore.google.com/detail/microsoft-teams-emojinato/eflminelddfglcbimfpncahdiacnnegk |
説明 | Adds emoji to microsoft teams via an external emoji server! |
ファイルサイズ | 11.57 KB |
インストール数 | 2,101 |
現在のバージョン | 1.3 |
最終更新日 | 2020-06-02 |
公開日 | 2020-06-01 |
評価 | 1.73/5 合計 11 レビュー |
開発者 | Unknown |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/dsmiller95/microsoft-teams-emojifier |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Microsoft Teams Emojinator", "version": "1.3", "description": "Adds emoji to microsoft teams via an external emoji server!", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/teams.microsoft.com.us3.cas.ms\/*" ], "run_at": "document_idle", "js": [ "payload.js" ] } ], "icons": { "16": "thonk16.png", "32": "thonk32.png", "48": "thonk48.png", "128": "thonk128.png" }, "options_page": "options.html", "manifest_version": 2 } |