Flowace-Asana
A chrome extension that provides Flowace functionalities
什么是Flowace-Asana?
Flowace-Asana是由https://flowace.in开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that provides Flowace functionalities”。
扩展截图
下载Flowace-Asana扩展crx文件
下载Flowace-Asana扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Flowace-Asana |
ID | mkkjcacbbhdgdmbghfdpgkodcooechnl |
官方URL | https://chromewebstore.google.com/detail/flowace-asana/mkkjcacbbhdgdmbghfdpgkodcooechnl |
简介 | A chrome extension that provides Flowace functionalities |
文件大小 | 626 KB |
安装次数 | 87 |
当前版本 | 4.3.0 |
更新时间 | 2023-02-16 |
上架时间 | 2022-07-28 |
开发者 | https://flowace.in |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://flowace.in |
隐私政策页面URL | https://flowace.in/privacypolicy.pdf |
支持的语言 | 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" ] } |