TypeGenie for Zendesk

TypeGenie for Zendesk

Boost productivity with AI-powered autocomplete.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TypeGenie for Zendesk",
  "short_name": "TypeGenie",
  "description": "Boost productivity with AI-powered autocomplete.",
  "version": "1.3.35",
  "options_ui": {
    "page": "popup.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png",
      "600": "icon.png"
    },
    "default_title": "TypeGenie for Zendesk",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "http://*.typegenie.net/*",
    "https://*.typegenie.net/*",
    "http://*.trueai.io/*",
    "https://*.trueai.io/*",
    "http://*.zendesk.com/*",
    "https://*.zendesk.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.zendesk.com/*"
      ],
      "js": [
        "popup.js",
        "content.js"
      ],
      "css": [
        "css/popup.css",
        "css/macros.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "icon.png",
    "background.js.map",
    "content.js.map",
    "popup.js.map"
  ],
  "manifest_version": 2
}