Basecamp To-Do Helper
This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.
Was ist Basecamp To-Do Helper?
Basecamp To-Do Helper ist eine Chrome-Erweiterung, die von Tatvic Analytics entwickelt wurde, und ihr Hauptmerkmal ist "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.".
Erweiterungsscreenshots
Basecamp To-Do Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Basecamp To-Do Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Basecamp To-Do Helper |
ID | fajedngefnpedoaenajlpgddkbfkcnkp |
Offizielle URL | https://chromewebstore.google.com/detail/basecamp-to-do-helper/fajedngefnpedoaenajlpgddkbfkcnkp |
Beschreibung | This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment. |
Dateigröße | 55.42 KB |
Installationsanzahl | 185 |
Aktuelle Version | 1.10 |
Letztes Update | 2023-03-21 |
Veröffentlichungsdatum | 2020-07-16 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Tatvic Analytics |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.tatvic.com |
Hilfeseite URL | https://www.tatvic.com |
Unterstützte Sprachen | 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" } } |