Operand
Unlock your Knowledge!
Operand क्या है?
Operand http://operand.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unlock your Knowledge!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Operand एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |