pgAssistant
AI Assistant for pgAdmin SQL client
pgAssistantคืออะไร?
pgAssistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pgassistant.app และคุณลักษณะหลักของมันคือ "AI Assistant for pgAdmin SQL client"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย pgAssistant
ดาวน์โหลดไฟล์ส่วนขยาย pgAssistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
pgAssistant is a Chrome extension which allows users of pgAdmin write SQL queries in plain language, using AI. 💬 Query your database in plain language — the assistant automatically will generate the corresponding SQL queries. ✨ Infers automatically the structure of your database tables and their relationships so it can provide accurate SQL statements without having to configure manually the schema. 🔒 Runs locally in your browser, does not read your data. It uses only the database schema to generate the AI-powered results. * Currently supports pgAdmin 4 v6-v7 web. --- Releases: 0.0.6 (latest) - Fix resolution of database schema in different versions of pgAdmin. 0.0.5 - Improve error handling and logging. 0.0.4 - Fix fatal error when running against pgAdmin installed as a package in Ubuntu/Linux.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ibbdfhlnpelhekmffeaoaifogdcjhihj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pgassistant/ibbdfhlnpelhekmffeaoaifogdcjhihj |
คำอธิบาย | AI Assistant for pgAdmin SQL client |
ขนาดไฟล์ | 1.69 MB |
จำนวนการติดตั้ง | 106 |
เวอร์ชันปัจจุบัน | 0.0.6 |
อัปเดตครั้งล่าสุด | 2023-06-26 |
วันที่เผยแพร่ | 2023-05-24 |
คะแนน | 2.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://pgassistant.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://pgassistant.app |
URL หน้านโยบายความเป็นส่วนตัว | https://pgassistant.app/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "pgAssistant", "version": "0.0.6", "description": "AI Assistant for pgAdmin SQL client", "permissions": [], "icons": { "16": "\/icons\/icon-16x16.png", "32": "\/icons\/icon-32x32.png", "48": "\/icons\/icon-48x48.png", "128": "\/icons\/icon-128x128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "plausible.js", "secondary_script.js", "tailwind.css" ], "matches": [ " |