Website AMA
Find answers to your questions from a webpage in natural language
Qu'est-ce que Website AMA ?
Website AMA est une extension Chrome développée par https://aasaanai.com, et sa fonction principale est "Find answers to your questions from a webpage in natural language".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Website AMA
Téléchargez les fichiers d'extension Website AMA au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.
Informations de Base sur l'Extension
Nom | Website AMA |
ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
URL Officiel | https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
Description | Find answers to your questions from a webpage in natural language |
Taille du Fichier | 5.4 MB |
Nombre d'Installations | 42 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2020-05-13 |
Date de Publication | 2020-05-13 |
Développeur | https://aasaanai.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://aasaanai.com/ |
Langues Prises en Charge | 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" } } |