Website AMA
Find answers to your questions from a webpage in natural language
Cos'è Website AMA?
Website AMA è un'estensione di Chrome sviluppata da https://aasaanai.com, e la sua funzione principale è "Find answers to your questions from a webpage in natural language".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Website AMA
Scarica i file di estensione Website AMA in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.
Informazioni di Base sull'Estensione
Nome | Website AMA |
ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
URL Ufficiale | https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
Descrizione | Find answers to your questions from a webpage in natural language |
Dimensione del File | 5.4 MB |
Conteggio Installazioni | 42 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2020-05-13 |
Data di Pubblicazione | 2020-05-13 |
Sviluppatore | https://aasaanai.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://aasaanai.com/ |
Lingue Supportate | 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" } } |