Website AMA

Find answers to your questions from a webpage in natural language

Was ist Website AMA?

Website AMA ist eine Chrome-Erweiterung, die von https://aasaanai.com entwickelt wurde, und ihr Hauptmerkmal ist "Find answers to your questions from a webpage in natural language".

Erweiterungsscreenshots

Website AMA-Erweiterungs-CRX-Datei herunterladen

Laden Sie Website AMA-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.                    

Grundlegende Informationen zur Erweiterung

Name Website AMA Website AMA
ID ebcbnkpcfdcgmhdponcohphdhhdcpjnm
Offizielle URL https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm
Beschreibung Find answers to your questions from a webpage in natural language
Dateigröße 5.4 MB
Installationsanzahl 42
Aktuelle Version 0.0.1
Letztes Update 2020-05-13
Veröffentlichungsdatum 2020-05-13
Entwickler https://aasaanai.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://aasaanai.com/
Unterstützte Sprachen 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"
    }
}