Kantbotha

Kantbotha

Quality of life improvements for the Kantata/Mavenlink experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Kantbotha",
  "version": "1.2.0",
  "description": "Quality of life improvements for the Kantata/Mavenlink experience.",
  "homepage_url": "https://github.com/Mjone77/kantbotha",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "scripting"
  ],
  "background": {
    "service_worker": "background/service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.mavenlink.com/workspaces/*",
        "https://app.kantata.com/workspaces/*"
      ],
      "exclude_matches": [
        "https://app.mavenlink.com/workspaces/*/gantt",
        "https://app.kantata.com/workspaces/*/gantt"
      ],
      "css": [
        "content_scripts/kantbotha.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://app.mavenlink.com/workspaces/*",
        "https://app.kantata.com/workspaces/*"
      ],
      "exclude_matches": [
        "https://app.mavenlink.com/workspaces/*/gantt",
        "https://app.kantata.com/workspaces/*/gantt"
      ],
      "js": [
        "content_scripts/kantbotha.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "*://app.mavenlink.com/*",
    "*://app.kantata.com/*"
  ]
}