onhello

Automatically reply to messages in Microsoft Teams.

onhello क्या है?

onhello Emojit द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically reply to messages in Microsoft Teams."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में onhello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}