Website AMA

Find answers to your questions from a webpage in natural language

什么是Website AMA?

Website AMA是由https://aasaanai.com开发的Chrome扩展程序,该扩展的主要功能是“Find answers to your questions from a webpage in natural language”。

扩展截图

下载Website AMA扩展crx文件

下载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 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"
    }
}