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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vaughan และคุณลักษณะหลักของมันคือ "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Asana Recently Completed Tasks

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}