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 |
Eメール | [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" ] } |