Flowace-Asana
A chrome extension that provides Flowace functionalities
Was ist Flowace-Asana?
Flowace-Asana ist eine Chrome-Erweiterung, die von https://flowace.in entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that provides Flowace functionalities".
Erweiterungsscreenshots
Flowace-Asana-Erweiterungs-CRX-Datei herunterladen
Laden Sie Flowace-Asana-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Flowace-Asana |
ID | mkkjcacbbhdgdmbghfdpgkodcooechnl |
Offizielle URL | https://chromewebstore.google.com/detail/flowace-asana/mkkjcacbbhdgdmbghfdpgkodcooechnl |
Beschreibung | A chrome extension that provides Flowace functionalities |
Dateigröße | 626 KB |
Installationsanzahl | 87 |
Aktuelle Version | 4.3.0 |
Letztes Update | 2023-02-16 |
Veröffentlichungsdatum | 2022-07-28 |
Entwickler | https://flowace.in |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://flowace.in |
URL der Datenschutzrichtlinien-Seite | https://flowace.in/privacypolicy.pdf |
Unterstützte Sprachen | 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" ] } |