Asana Load More

This extension will load all subtasks in Asana. It also lets you hide certain sections.

Asana Load Moreคืออะไร?

Asana Load More เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fat Cattitude, LLC และคุณลักษณะหลักของมันคือ "This extension will load all subtasks in Asana. It also lets you hide certain sections."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Asana Load More

ดาวน์โหลดไฟล์ส่วนขยาย Asana Load More ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will automatically load all subtasks in Asana. It will also allow you to toggle certain subtask sections.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Asana Load More Asana Load More
ID gmgelaegjlfeldnmlilkeaegejmlgjhf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/asana-load-more/gmgelaegjlfeldnmlilkeaegejmlgjhf
คำอธิบาย This extension will load all subtasks in Asana. It also lets you hide certain sections.
ขนาดไฟล์ 110 KB
จำนวนการติดตั้ง 703
เวอร์ชันปัจจุบัน 0.0.0.4
อัปเดตครั้งล่าสุด 2019-11-13
วันที่เผยแพร่ 2019-11-09
คะแนน 4.20/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Fat Cattitude, LLC
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asana Load More",
    "description": "This extension will load all subtasks in Asana. It also lets you hide certain sections.",
    "version": "0.0.0.4",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Asana Load More"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.asana.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}