pgAssistant

AI Assistant for pgAdmin SQL client

Co to jest pgAssistant?

pgAssistant to rozszerzenie Chrome opracowane przez https://pgassistant.app, a jego główną funkcją jest „AI Assistant for pgAdmin SQL client”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia pgAssistant

Pobierz pliki rozszerzeń pgAssistant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa pgAssistant pgAssistant
ID ibbdfhlnpelhekmffeaoaifogdcjhihj
Oficjalny URL https://chromewebstore.google.com/detail/pgassistant/ibbdfhlnpelhekmffeaoaifogdcjhihj
Opis AI Assistant for pgAdmin SQL client
Rozmiar pliku 1.69 MB
Liczba instalacji 106
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2023-06-26
Data Publikacji 2023-05-24
Ocena 2.00/5 Łącznie 1 Oceny
Deweloper https://pgassistant.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://pgassistant.app
Adres URL Strony Polityki Prywatności https://pgassistant.app/privacy
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}