Basecamp To-Do Helper
This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.
Cos'è Basecamp To-Do Helper?
Basecamp To-Do Helper è un'estensione di Chrome sviluppata da Tatvic Analytics, e la sua funzione principale è "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Basecamp To-Do Helper
Scarica i file di estensione Basecamp To-Do Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Basecamp To-Do Helper |
ID | fajedngefnpedoaenajlpgddkbfkcnkp |
URL Ufficiale | https://chromewebstore.google.com/detail/basecamp-to-do-helper/fajedngefnpedoaenajlpgddkbfkcnkp |
Descrizione | This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment. |
Dimensione del File | 55.42 KB |
Conteggio Installazioni | 185 |
Versione Corrente | 1.10 |
Ultimo Aggiornamento | 2023-03-21 |
Data di Pubblicazione | 2020-07-16 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Tatvic Analytics |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.tatvic.com |
URL della Pagina di Aiuto | https://www.tatvic.com |
Lingue Supportate | 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" } } |