Dashworks

Dash AI is your company's knowledge assistant.

Wat is Dashworks?

Dashworks is een Chrome-extensie ontwikkeld door https://dashworks.ai, en de belangrijkste functie is "Dash AI is your company's knowledge assistant.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Dashworks

Download Dashworks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Dash AI is an intelligent assistant designed to seamlessly integrate with your workflow. 

It connects with your work apps to instantly answer work-related questions, generate content, debug code, summarize emails and projects, finds documents, and more.

The Dashworks browser extension makes Dash AI accessible right from your browser's new tab page or address bar. It's like having a personal assistant that's just one-click away.                    

Basisinformatie over de Extensie

Naam Dashworks Dashworks
ID iecgdccnjbljdabegnogafjkkjlcpcgh
Officiële URL https://chromewebstore.google.com/detail/dashworks/iecgdccnjbljdabegnogafjkkjlcpcgh
Beschrijving Dash AI is your company's knowledge assistant.
Bestandsgrootte 35.42 KB
Aantal Installaties 2,000
Huidige Versie 0.1.81
Laatst Bijgewerkt 2024-02-29
Publicatiedatum 2023-12-14
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://dashworks.ai
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.dashworks.ai/legal/privacy-policy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dashworks",
    "version": "0.1.81",
    "description": "Dash AI is your company's knowledge assistant.",
    "omnibox": {
        "keyword": "dash"
    },
    "icons": {
        "16": "assets\/logo.png",
        "48": "assets\/logo.png",
        "128": "assets\/logo.png"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "cookies",
        "declarativeNetRequestWithHostAccess"
    ],
    "content_security_policy": {
        "script_src": "'self'",
        "object_src": "'self'"
    },
    "action": {
        "default_icon": "assets\/logo.png",
        "default_title": "Search Dashworks"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "dashworks.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/logo.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}