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