onhello
Automatically reply to messages in Microsoft Teams.
¿Qué es onhello?
onhello es una extensión de Chrome desarrollada por Emojit, y su función principal es "Automatically reply to messages in Microsoft Teams.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión onhello
Descarga archivos de extensión onhello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | onhello |
ID | dljknoapaelicknjmjihiaigbnhcpikm |
URL Oficial | https://chromewebstore.google.com/detail/onhello/dljknoapaelicknjmjihiaigbnhcpikm |
Descripción | Automatically reply to messages in Microsoft Teams. |
Tamaño del Archivo | 328 KB |
Cantidad de Instalaciones | 154 |
Versión Actual | 0.2.0 |
Última Actualización | 2021-05-10 |
Fecha de Publicación | 2021-05-04 |
Desarrollador | Emojit |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/onhello-automation/onhello |
URL de la Página de Ayuda | https://github.com/onhello-automation/onhello/issues |
URL de la Página de Política de Privacidad | https://github.com/emogit/emojit/blob/main/privacy.md |
Idiomas Soportados | 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\/*" ] } |