pgAssistant

AI Assistant for pgAdmin SQL client

pgAssistant क्या है?

pgAssistant https://pgassistant.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI Assistant for pgAdmin SQL client"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में pgAssistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}