Operand
Unlock your Knowledge!
Qu'est-ce que Operand ?
Operand est une extension Chrome développée par http://operand.ai, et sa fonction principale est "Unlock your Knowledge!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Operand
Téléchargez les fichiers d'extension Operand au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | fhbbjlniecmagcjeeaincjegkiipfakc |
URL Officiel | https://chrome.google.com/webstore/detail/operand/fhbbjlniecmagcjeeaincjegkiipfakc |
Description | Unlock your Knowledge! |
Taille du Fichier | 3.79 MB |
Nombre d'Installations | 159 |
Version Actuelle | 0.0.8 |
Dernière Mise à Jour | 2023-03-24 |
Date de Publication | 2022-11-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | http://operand.ai |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://operand.ai |
URL de la Page d'Aide | https://operand.ai/discord |
URL de la Page de Politique de Confidentialité | https://operand.ai/privacy |
Langues Prises en Charge | 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" } } |