pgAssistant

AI Assistant for pgAdmin SQL client

什麼是pgAssistant?

pgAssistant是由https://pgassistant.app開發的Chrome擴展程式,該擴展的主要功能是“AI Assistant for pgAdmin SQL client”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 pgAssistant pgAssistant
ID ibbdfhlnpelhekmffeaoaifogdcjhihj
官方網址 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": [
                ""
            ]
        }
    ]
}