Operand
Unlock your Knowledge!
Operandとは何ですか?
Operandはhttp://operand.aiによって開発されたChromeの拡張機能で、その主な機能は「Unlock your Knowledge!」です。
拡張機能のスクリーンショット
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
拡張機能の基本情報
名前 | |
ID | fhbbjlniecmagcjeeaincjegkiipfakc |
公式URL | 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 |
Eメール | [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" } } |