onhello

onhello

Automatically reply to messages in Microsoft Teams.

Merlin
Additional files are visible only to premium users

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/*"
  ]
}