Website AMA
Find answers to your questions from a webpage in natural language
¿Qué es Website AMA?
Website AMA es una extensión de Chrome desarrollada por https://aasaanai.com, y su función principal es "Find answers to your questions from a webpage in natural language".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Website AMA
Descarga archivos de extensión Website AMA 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
Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.
Información Básica de la Extensión
Nombre | Website AMA |
ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
URL Oficial | https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
Descripción | Find answers to your questions from a webpage in natural language |
Tamaño del Archivo | 5.4 MB |
Cantidad de Instalaciones | 42 |
Versión Actual | 0.0.1 |
Última Actualización | 2020-05-13 |
Fecha de Publicación | 2020-05-13 |
Desarrollador | https://aasaanai.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://aasaanai.com/ |
Idiomas Soportados | 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" } } |