Operand
Unlock your Knowledge!
Operandคืออะไร?
Operand เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://operand.ai และคุณลักษณะหลักของมันคือ "Unlock your Knowledge!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Operand
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |