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文件

下載onhello擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}