Github ❤️ ClickUp

Github ❤️ ClickUp

Adds ClickUp task links to a variety of places when using Github. This extension integrates Github with ClickUp so you can move faster between task and pull request.

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "github-cu",
  "author": "bartholomej",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.github.com/*"
      ],
      "css": [
        "app.css"
      ],
      "js": [
        "app.bundle.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "manifest_version": 2,
  "version": "1.3.4",
  "applications": {
    "gecko": {
      "strict_min_version": "54.0"
    }
  }
}