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
Eメール [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"
    }
}