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!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Microsoft Teams Emojinator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}