Operand

Unlock your Knowledge!

What is Operand?

Operand is a Chrome extension developed by http://operand.ai, and its main feature is "Unlock your Knowledge!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Operand Extension CRX File

Download Operand extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Operand Operand
ID fhbbjlniecmagcjeeaincjegkiipfakc
Official URL https://chrome.google.com/webstore/detail/operand/fhbbjlniecmagcjeeaincjegkiipfakc
Description Unlock your Knowledge!
File Size 3.79 MB
Installation Count 159
Current Version 0.0.8
Last Updated 2023-03-24
Publish Date 2022-11-29
Rating 5.00/5 Total 1 Ratings
Developer http://operand.ai
Email [email protected]
Payment Type free
Extension Website https://operand.ai
Help Page URL https://operand.ai/discord
Privacy Policy Page URL https://operand.ai/privacy
Supported Languages 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"
    }
}