Operand

Unlock your Knowledge!

什麼是Operand?

Operand是由http://operand.ai開發的Chrome擴展程式,該擴展的主要功能是“Unlock your Knowledge!”。

擴展截圖

screenshot
screenshot
screenshot

下載Operand擴展crx文件

下載Operand擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Operand Operand
ID fhbbjlniecmagcjeeaincjegkiipfakc
官方網址 https://chrome.google.com/webstore/detail/operand/fhbbjlniecmagcjeeaincjegkiipfakc
簡介 Unlock your Knowledge!
檔案大小 3.79 MB
安裝次數 159
目前版本 0.0.8
更新時間 2023-03-24
上架時間 2022-11-29
評分 5.00/5 共 1 次評分
開發者 http://operand.ai
電子郵箱 [email protected]
付費類型 free
擴展官網 https://operand.ai
說明頁面URL https://operand.ai/discord
隱私政策頁面URL https://operand.ai/privacy
支援的語言 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"
    }
}