Dashworks

Dash AI is your company's knowledge assistant.

Qu'est-ce que Dashworks ?

Dashworks est une extension Chrome développée par https://dashworks.ai, et sa fonction principale est "Dash AI is your company's knowledge assistant.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Dashworks

Téléchargez les fichiers d'extension Dashworks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Dashworks Dashworks
ID iecgdccnjbljdabegnogafjkkjlcpcgh
URL Officiel https://chromewebstore.google.com/detail/dashworks/iecgdccnjbljdabegnogafjkkjlcpcgh
Description Dash AI is your company's knowledge assistant.
Taille du Fichier 35.42 KB
Nombre d'Installations 2,000
Version Actuelle 0.1.81
Dernière Mise à Jour 2024-02-29
Date de Publication 2023-12-14
Évaluation 5.00/5 Total 4 Évaluations
Développeur https://dashworks.ai
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.dashworks.ai/legal/privacy-policy
Langues Prises en Charge 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}