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 Tatvic Analytics द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Basecamp To-Do Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}