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 - это расширение Chrome, разработанное Tatvic Analytics, и его основная функция - "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.".
Снимки экрана расширения
Скачать файл CRX расширения Basecamp To-Do Helper
Скачайте файлы расширений 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 |
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 |
Электронная почта | [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" } } |