onhello

Automatically reply to messages in Microsoft Teams.

onhello란 무엇입니까?

onhello은(는) Emojit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically reply to messages in Microsoft Teams."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

onhello 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        THIS IS NOT AN OFFICIAL MICROSOFT PRODUCT AND IS NOT MADE BY MICROSOFT.

Set up some rules to match messages, then list several possible responses to use for automatic replies. Open https://teams.microsoft.com in your browser and the rules will automatically start processing incoming messages.

If you're using the Edge browser, then you should make sure your Teams tab does not get put to sleep. Go to edge://settings/?search=sleep if you have sleeping tabs enabled, then make sure that teams.microsoft.com (or teams.live.com if you're using that) is added to the list of sites not to put to sleep.

Got suggestions or having issues? Share them here: https://github.com/onhello-automation/onhello/issues

You can do more advanced customization by defining certain methods in your browser window. Details can be found in the extension's options page.

This extension is made to become very flexible and eventually handle apps other than Microsoft Teams.                    

확장 프로그램 기본 정보

이름 onhello onhello
ID dljknoapaelicknjmjihiaigbnhcpikm
공식 URL https://chromewebstore.google.com/detail/onhello/dljknoapaelicknjmjihiaigbnhcpikm
설명 Automatically reply to messages in Microsoft Teams.
파일 크기 328 KB
설치 횟수 154
현재 버전 0.2.0
최근 업데이트 2021-05-10
출시 날짜 2021-05-04
개발자 Emojit
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/onhello-automation/onhello
도움말 페이지 URL https://github.com/onhello-automation/onhello/issues
개인정보 보호 정책 페이지 URL https://github.com/emogit/emojit/blob/main/privacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.2.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/browser_action.html"
    },
    "options_page": "pages\/home.html",
    "options_ui": {
        "page": "pages\/home.html",
        "open_in_tab": true,
        "browser_style": true,
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/*",
                "https:\/\/teams.live.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/injected.js"
    ],
    "permissions": [
        "storage",
        "https:\/\/teams.microsoft.com\/*",
        "https:\/\/teams.live.com\/*"
    ]
}