Flowace-Asana

A chrome extension that provides Flowace functionalities

Flowace-Asana क्या है?

Flowace-Asana https://flowace.in द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that provides Flowace functionalities"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Flowace-Asana एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    ]
}