Flowace-Asana
A chrome extension that provides Flowace functionalities
Flowace-Asana là gì?
Flowace-Asana là một tiện ích mở rộng Chrome được phát triển bởi https://flowace.in, và tính năng chính của nó là "A chrome extension that provides Flowace functionalities".
Ả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 Flowace-Asana
Tải xuống các tệp mở rộng Flowace-Asana 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
Flowace captures automated time spent by the user on Asana tasks. The user can press the start stop timer button on Asana to get estimated vs actual time spent on the task. This greatly helps in time projection, planning and resource utilization.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Flowace-Asana |
ID | mkkjcacbbhdgdmbghfdpgkodcooechnl |
URL Chính Thức | https://chromewebstore.google.com/detail/flowace-asana/mkkjcacbbhdgdmbghfdpgkodcooechnl |
Mô tả | A chrome extension that provides Flowace functionalities |
Kích Thước Tệp | 626 KB |
Số Lần Cài Đặt | 87 |
Phiên Bản Hiện Tại | 4.3.0 |
Cập Nhật Lần Cuối | 2023-02-16 |
Ngày Phát Hành | 2022-07-28 |
Nhà Phát Triển | https://flowace.in |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://flowace.in |
URL Trang Chính Sách Bảo Mật | https://flowace.in/privacypolicy.pdf |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension that provides Flowace functionalities", "version": "4.3.0", "manifest_version": 3, "name": "Flowace-Asana", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": ".\/icon-48.png" }, "icons": { "48": ".\/icon-48.png", "128": ".\/icon-128.png" }, "host_permissions": [ "https:\/\/app.asana.com\/*", "https:\/\/api.flowace.in\/" ], "content_scripts": [ { "matches": [ "https:\/\/app.asana.com\/*" ], "css": [ "content.styles.css" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png", "icon-48.png", "close.png", "popup.html", "fonts\/*", "*.ttf" ], "matches": [ "https:\/\/app.asana.com\/*" ] } ], "permissions": [ "scripting", "storage", "declarativeNetRequest", "declarativeNetRequestWithHostAccess", "declarativeNetRequestFeedback", "tabs" ] } |