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.

什么是Asana Recently Completed Tasks?

Asana Recently Completed Tasks是由Vaughan开发的Chrome扩展程序,该扩展的主要功能是“This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.”。

扩展截图

screenshot

下载Asana Recently Completed Tasks扩展crx文件

下载Asana Recently Completed Tasks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Asana Recently Completed Tasks Asana Recently Completed Tasks
ID eijmdadhpeciojloijjodpolgnlepecj
官方URL https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj
简介 This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
文件大小 549 KB
安装次数 86
当前版本 0.1.1
更新时间 2019-03-05
上架时间 2019-03-05
评分 5.00/5 共8次评分
开发者 Vaughan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension
帮助页面URL https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues
支持的语言 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"
    ]
}