Basecamp To-Do Helper
This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.
O que é Basecamp To-Do Helper?
Basecamp To-Do Helper é uma extensão do Chrome desenvolvida por Tatvic Analytics, e sua principal característica é "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Basecamp To-Do Helper
Baixe arquivos de extensão Basecamp To-Do Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Basecamp To-Do Helper |
ID | fajedngefnpedoaenajlpgddkbfkcnkp |
URL Oficial | https://chromewebstore.google.com/detail/basecamp-to-do-helper/fajedngefnpedoaenajlpgddkbfkcnkp |
Descrição | This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment. |
Tamanho do Arquivo | 55.42 KB |
Contagem de Instalações | 185 |
Versão Atual | 1.10 |
Última Atualização | 2023-03-21 |
Data de Publicação | 2020-07-16 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Tatvic Analytics |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.tatvic.com |
URL da Página de Ajuda | https://www.tatvic.com |
Idiomas Suportados | 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" } } |