Website AMA
Find answers to your questions from a webpage in natural language
O que é Website AMA?
Website AMA é uma extensão do Chrome desenvolvida por https://aasaanai.com, e sua principal característica é "Find answers to your questions from a webpage in natural language".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Website AMA
Baixe arquivos de extensão Website AMA no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.
Informações Básicas da Extensão
Nome | Website AMA |
ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
URL Oficial | https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
Descrição | Find answers to your questions from a webpage in natural language |
Tamanho do Arquivo | 5.4 MB |
Contagem de Instalações | 42 |
Versão Atual | 0.0.1 |
Última Atualização | 2020-05-13 |
Data de Publicação | 2020-05-13 |
Desenvolvedor | https://aasaanai.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://aasaanai.com/ |
Idiomas Suportados | 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" } } |