Operand

Unlock your Knowledge!

Was ist Operand?

Operand ist eine Chrome-Erweiterung, die von http://operand.ai entwickelt wurde, und ihr Hauptmerkmal ist "Unlock your Knowledge!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Operand-Erweiterungs-CRX-Datei herunterladen

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

                        The official extension for Operand.

How does it work?
1. Make an account at https://operand.ai
2. Add your knowledge to Operand (files, apps, links)
3. Install the Chrome extension and get setup. It takes ~2 minutes.
4. Chat with Operand in the browser and get search results from your knowledge directly in Google!

Note: Operand is currently in early-access so expect some bugs and other issues. Please feel free to reach out and/or join the discord if you need any help.

Source Code: https://github.com/operandinc/operand-chrome-extension                    

Grundlegende Informationen zur Erweiterung

Name Operand Operand
ID fhbbjlniecmagcjeeaincjegkiipfakc
Offizielle URL https://chrome.google.com/webstore/detail/operand/fhbbjlniecmagcjeeaincjegkiipfakc
Beschreibung Unlock your Knowledge!
Dateigröße 3.79 MB
Installationsanzahl 159
Aktuelle Version 0.0.8
Letztes Update 2023-03-24
Veröffentlichungsdatum 2022-11-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://operand.ai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://operand.ai
Hilfeseite URL https://operand.ai/discord
URL der Datenschutzrichtlinien-Seite https://operand.ai/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Unlock your Knowledge!",
    "version": "0.0.8",
    "name": "Operand",
    "manifest_version": 3,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "omnibox": {
        "keyword": "operand"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Chat with Operand"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    }
}