Dialect

Copilot for forms like security questionnaires, DDQs, and RFPs.

Was ist Dialect?

Dialect ist eine Chrome-Erweiterung, die von https://usedialect.com entwickelt wurde, und ihr Hauptmerkmal ist "Copilot for forms like security questionnaires, DDQs, and RFPs.".

Erweiterungsscreenshots

screenshot
screenshot

Dialect-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dialect-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

                        Dialect is an AI assistant that autodrafts responses to RFPs, RFIs, DDQs, and security questionnaires using your existing knowledge base, directly within Google Sheets, Google Docs, and web forms. Import your security documentation, product details, and website content in just a few clicks at https://app.usedialect.com.                    

Grundlegende Informationen zur Erweiterung

Name Dialect Dialect
ID nicdiheaikpejchocejgpapdmedleacm
Offizielle URL https://chromewebstore.google.com/detail/dialect/nicdiheaikpejchocejgpapdmedleacm
Beschreibung Copilot for forms like security questionnaires, DDQs, and RFPs.
Dateigröße 45.34 KB
Installationsanzahl 162
Aktuelle Version 1.24
Letztes Update 2024-02-08
Veröffentlichungsdatum 2023-09-10
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://usedialect.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://usedialect.com
Hilfeseite URL https://usedialect.com/help
URL der Datenschutzrichtlinien-Seite https://docs.google.com/document/d/1m27CpCEyQb4XC5BQb3EoNFcn38tCOh7k32jpEatvRLo/edit
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAknN1koBMdJOsU8sE8BcgBhbV6c70wPzDFD8COi5hT3wXZcHYUfONzoWnKVz2Ahzvb8dWq1UKF1H7DTcOEglApgrHG2AMVVe6dFFigvBDkQPULPLbX39ad39tR8D0fRHLtylbqSfWtSspnaCw0X8JJWNscmZc0ufCam6A4uXpGARm3vFKgac4YwuMxBYv1pxBZxSmsMAqsiiOk3xIpyyijwdMzs1MJuwYYfSh\/BnrBbEGdoM3mQPJbP\/UooaqTExQX3s4366IGVgrY1WZMGRkHX2rrbYq7uOxs2J9\/nr3V3w9CJ4cBkEfImGVX\/WHFyOBDLQ9FyTMRABcJ+d\/ZL5MqwIDAQAB",
    "manifest_version": 3,
    "name": "Dialect",
    "action": {
        "default_title": "Click to open panel"
    },
    "version": "1.24",
    "description": "Copilot for forms like security questionnaires, DDQs, and RFPs.",
    "icons": {
        "48": "main48.png"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "sidePanel",
        "debugger",
        "scripting",
        "identity"
    ],
    "host_permissions": [
        ""
    ],
    "side_panel": {
        "default_path": "sidebar.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "runAt": "document_idle"
        }
    ],
    "options_page": "options.html"
}