Asana Counter Extension

Asana Counter Extension

Asana tasks and points counter. Points must to be a custom Asana drop-down property with numbers only and with grey color.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Asana Counter Extension",
  "description": "Asana tasks and points counter. Points must to be a custom Asana drop-down property with numbers only and with grey color.",
  "icons": {
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png"
    },
    "default_title": "Works on Asana app"
  },
  "version": "0.5.2",
  "content_scripts": [
    {
      "matches": [
        "https://app.asana.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}