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. 擴展基本資訊
| 名稱 | |
| ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
| 官方網址 | 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"
}
} | |