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開發的Chrome擴展程式,該擴展的主要功能是“This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.”。

擴展截圖

screenshot

下載Basecamp To-Do Helper擴展crx文件

下載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
官方網址 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"
    }
}