Asana Recently Completed Tasks

Asana Recently Completed Tasks

This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.

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 Recently Completed Tasks",
  "description": "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.",
  "version": "0.1.1",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://app.asana.com/*"
      ],
      "css": [
        "style.global.css",
        "style.css"
      ],
      "js": [
        "content-script-injector.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "content-script.js"
  ]
}