SupportExt

SupportExt

Build your knowledge base for sharing information. When you record your experiences, other team members can share it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Build your knowledge base for sharing information. When you record your experiences, other team members can share it.",
  "version": "1.0.2",
  "manifest_version": 3,
  "name": "SupportExt",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "34": "support-34.png",
      "128": "support-128.png"
    }
  },
  "icons": {
    "34": "support-34.png",
    "128": "support-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "support-128.png",
        "support-34.png",
        "images/support.ico"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://mail.google.com/mail/*",
    "https://outlook.live.com/mail/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}