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.

What is Asana Recently Completed Tasks?

Asana Recently Completed Tasks is a Chrome extension developed by Vaughan, and its main feature is "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".

Extension Screenshots

screenshot

Download Asana Recently Completed Tasks Extension CRX File

Download Asana Recently Completed Tasks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Asana Recently Completed Tasks Asana Recently Completed Tasks
ID eijmdadhpeciojloijjodpolgnlepecj
Official URL https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj
Description This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
File Size 549 KB
Installation Count 86
Current Version 0.1.1
Last Updated 2019-03-05
Publish Date 2019-03-05
Rating 5.00/5 Total 8 Ratings
Developer Vaughan
Email [email protected]
Payment Type free
Extension Website https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension
Help Page URL https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues
Supported Languages en
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"
    ]
}