Operand
Unlock your Knowledge!
¿Qué es Operand?
Operand es una extensión de Chrome desarrollada por http://operand.ai, y su función principal es "Unlock your Knowledge!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Operand
Descarga archivos de extensión Operand en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | fhbbjlniecmagcjeeaincjegkiipfakc |
URL Oficial | https://chrome.google.com/webstore/detail/operand/fhbbjlniecmagcjeeaincjegkiipfakc |
Descripción | Unlock your Knowledge! |
Tamaño del Archivo | 3.79 MB |
Cantidad de Instalaciones | 159 |
Versión Actual | 0.0.8 |
Última Actualización | 2023-03-24 |
Fecha de Publicación | 2022-11-29 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | http://operand.ai |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://operand.ai |
URL de la Página de Ayuda | https://operand.ai/discord |
URL de la Página de Política de Privacidad | https://operand.ai/privacy |
Idiomas Soportados | 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" } } |