pgAssistant
AI Assistant for pgAdmin SQL client
pgAssistantとは何ですか?
pgAssistantはhttps://pgassistant.appによって開発されたChromeの拡張機能で、その主な機能は「AI Assistant for pgAdmin SQL client」です。
拡張機能のスクリーンショット
pgAssistant拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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": [ " |