Website AMA
Find answers to your questions from a webpage in natural language
Website AMA क्या है?
Website AMA https://aasaanai.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find answers to your questions from a webpage in natural language"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Website AMA एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.
एक्सटेंशन की मूल जानकारी
नाम | Website AMA |
ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
आधिकारिक URL | https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
विवरण | Find answers to your questions from a webpage in natural language |
फ़ाइल का आकार | 5.4 MB |
स्थापना संख्या | 42 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2020-05-13 |
प्रकाशन तिथि | 2020-05-13 |
डेवलपर | https://aasaanai.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://aasaanai.com/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website AMA", "version": "0.0.1", "description": "Find answers to your questions from a webpage in natural language", "permissions": [ "activeTab", "declarativeContent" ], "background": { "scripts": [ "src\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/content.js" ], "all_frames": true, "run_at": "document_start" } ], "page_action": { "default_title": "A popup will come", "default_popup": "src\/popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } } |