Examine source code of Teambition Enhancer

Inspect and view changes in Teambition Enhancer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Teambition Enhancer",
  "description": "Add a button to copy Teambition task link URL conveniently",
  "homepage_url": "https://github.com/pd4d10/teambition-enhancer",
  "version": "1.2.0",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://www.teambition.com/*"
      ],
      "css": [
        "dist/toastr.min.css"
      ],
      "js": [
        "dist/jquery.min.js",
        "dist/toastr.min.js",
        "dist/clipboard.min.js",
        "dist/contentscript.js"
      ],
      "run-at": "document_idle"
    }
  ]
}