Dashworks

Dash AI is your company's knowledge assistant.

Cos'è Dashworks?

Dashworks è un'estensione di Chrome sviluppata da https://dashworks.ai, e la sua funzione principale è "Dash AI is your company's knowledge assistant.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Dashworks

Scarica i file di estensione Dashworks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Dashworks Dashworks
ID iecgdccnjbljdabegnogafjkkjlcpcgh
URL Ufficiale https://chromewebstore.google.com/detail/dashworks/iecgdccnjbljdabegnogafjkkjlcpcgh
Descrizione Dash AI is your company's knowledge assistant.
Dimensione del File 35.42 KB
Conteggio Installazioni 2,000
Versione Corrente 0.1.81
Ultimo Aggiornamento 2024-02-29
Data di Pubblicazione 2023-12-14
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore https://dashworks.ai
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.dashworks.ai/legal/privacy-policy
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}