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 |
| 公式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 |
| Eメール | [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"
}
} | |