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