Basecamp To-Do Helper

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

Hvad er Basecamp To-Do Helper?

Basecamp To-Do Helper er en Chrome-udvidelse udviklet af Tatvic Analytics, og dens hovedfunktion er "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.".

Udvidelsesskærmbilleder

screenshot

Download Basecamp To-Do Helper-udvidelses-CRX-fil

Download Basecamp To-Do Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Basecamp To-Do Helper Basecamp To-Do Helper
ID fajedngefnpedoaenajlpgddkbfkcnkp
Officiel URL https://chromewebstore.google.com/detail/basecamp-to-do-helper/fajedngefnpedoaenajlpgddkbfkcnkp
Beskrivelse This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.
Filstørrelse 55.42 KB
Antal Installationer 185
Nuværende Version 1.10
Senest Opdateret 2023-03-21
Udgivelsesdato 2020-07-16
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Tatvic Analytics
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.tatvic.com
Hjælpeside-URL https://www.tatvic.com
Understøttede Sprog 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"
    }
}