Website AMA
Find answers to your questions from a webpage in natural language
Τι είναι το Website AMA;
Το Website AMA είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://aasaanai.com, και η κύρια λειτουργία του είναι "Find answers to your questions from a webpage in natural language".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Website AMA
Λήψη αρχείων επέκτασης Website AMA σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |