Examine source code of Mention+

Inspect and view changes in Mention+ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Mention+",
  "version": "1.1.2",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "Cisco Webex Spacesにてメンション入力時、メンション前後に敬称を付与するアドオン。\r\n  アイコンクリックで表示されるJSONを編集してスペース毎に敬称挿入位置やユーザ毎に付与する敬称の定義が可能。\r\n  ",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "rule_editor.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.webex.com/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "https://web.webex.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}