pgAssistant

AI Assistant for pgAdmin SQL client

pgAssistant란 무엇입니까?

pgAssistant은(는) https://pgassistant.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AI Assistant for pgAdmin SQL client"입니다.

확장 프로그램 스크린샷

screenshot

pgAssistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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": [
                ""
            ]
        }
    ]
}