Basecamp To-Do Helper

This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.

Basecamp To-Do Helperคืออะไร?

Basecamp To-Do Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tatvic Analytics และคุณลักษณะหลักของมันคือ "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Basecamp To-Do Helper

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

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

                        For Tatvic's Basecamp TMS, there are certain sections that you need to have in a standard template to provide the required clarity to the assignees of the to-do.

Also, to ensure that you have the correct template for Task Creation and Task Closing Comment handy and you don’t need to find it all the time, we have this new Chrome extension “Basecamp To-Do Helper” in place for internal purposes.                    

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

ชื่อ Basecamp To-Do Helper Basecamp To-Do Helper
ID fajedngefnpedoaenajlpgddkbfkcnkp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/basecamp-to-do-helper/fajedngefnpedoaenajlpgddkbfkcnkp
คำอธิบาย This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.
ขนาดไฟล์ 55.42 KB
จำนวนการติดตั้ง 185
เวอร์ชันปัจจุบัน 1.10
อัปเดตครั้งล่าสุด 2023-03-21
วันที่เผยแพร่ 2020-07-16
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Tatvic Analytics
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.tatvic.com
URL หน้าช่วยเหลือ https://www.tatvic.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Basecamp To-Do Helper",
    "version": "1.10",
    "description": "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.",
    "manifest_version": 3,
    "author": "Dharmik Raval",
    "action": {
        "default_icon": {
            "16": "tatvic16.png",
            "32": "tatvic.png"
        },
        "default_title": "Basecamp To-Do Helper",
        "default_popup": "option.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/3.basecamp.com\/*\/*"
            ],
            "js": [
                "webcontent.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/www.google-analytics.com'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}