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 là gì?
Basecamp To-Do Helper là một tiện ích mở rộng Chrome được phát triển bởi Tatvic Analytics, và tính năng chính của nó là "This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Basecamp To-Do Helper
Tải xuống các tệp mở rộng Basecamp To-Do Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Basecamp To-Do Helper |
ID | fajedngefnpedoaenajlpgddkbfkcnkp |
URL Chính Thức | https://chromewebstore.google.com/detail/basecamp-to-do-helper/fajedngefnpedoaenajlpgddkbfkcnkp |
Mô tả | This extension will help you with the standard tempaltes for Basecamp Task Creation and Task Closing Comment. |
Kích Thước Tệp | 55.42 KB |
Số Lần Cài Đặt | 185 |
Phiên Bản Hiện Tại | 1.10 |
Cập Nhật Lần Cuối | 2023-03-21 |
Ngày Phát Hành | 2020-07-16 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Tatvic Analytics |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.tatvic.com |
URL Trang Trợ Giúp | https://www.tatvic.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |