Flowace-Asana
A chrome extension that provides Flowace functionalities
Apa itu Flowace-Asana?
Flowace-Asana adalah ekstensi Chrome yang dikembangkan oleh https://flowace.in, dan fitur utamanya adalah "A chrome extension that provides Flowace functionalities".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Flowace-Asana
Unduh file ekstensi Flowace-Asana dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Flowace-Asana |
ID | mkkjcacbbhdgdmbghfdpgkodcooechnl |
URL Resmi | https://chromewebstore.google.com/detail/flowace-asana/mkkjcacbbhdgdmbghfdpgkodcooechnl |
Deskripsi | A chrome extension that provides Flowace functionalities |
Ukuran File | 626 KB |
Jumlah Instalasi | 87 |
Versi Saat Ini | 4.3.0 |
Terakhir Diperbarui | 2023-02-16 |
Tanggal Publikasi | 2022-07-28 |
Pengembang | https://flowace.in |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://flowace.in |
URL Halaman Kebijakan Privasi | https://flowace.in/privacypolicy.pdf |
Bahasa yang Didukung | 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" ] } |