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 là gì?

Asana Recently Completed Tasks là một tiện ích mở rộng Chrome được phát triển bởi Vaughan, và tính năng chính của nó là "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Asana Recently Completed Tasks

Tải xuống các tệp mở rộng Asana Recently Completed Tasks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Asana Recently Completed Tasks Asana Recently Completed Tasks
ID eijmdadhpeciojloijjodpolgnlepecj
URL Chính Thức https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj
Mô tả This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
Kích Thước Tệp 549 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2019-03-05
Ngày Phát Hành 2019-03-05
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Vaughan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension
URL Trang Trợ Giúp https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}