AI Bar - Prompt ChatGPT from the URL bar

Type your prompt after "ai" in the Chrome URL bar and press return!

AI Bar - Prompt ChatGPT from the URL bar क्या है?

AI Bar - Prompt ChatGPT from the URL bar mash द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Type your prompt after "ai" in the Chrome URL bar and press return!"।

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

screenshot

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

crx प्रारूप में AI Bar - Prompt ChatGPT from the URL bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        AI Bar enables you to enter your prompt in the URL bar, hit return and jump to ChatGPT, saving a few clicks for you.                    

एक्सटेंशन की मूल जानकारी

नाम AI Bar - Prompt ChatGPT from the URL bar AI Bar - Prompt ChatGPT from the URL bar
ID ljjafkobiacdlnpndeacabenohfnidhk
आधिकारिक URL https://chromewebstore.google.com/detail/ai-bar-prompt-chatgpt-fro/ljjafkobiacdlnpndeacabenohfnidhk
विवरण Type your prompt after "ai" in the Chrome URL bar and press return!
फ़ाइल का आकार 33.28 KB
स्थापना संख्या 46
वर्तमान संस्करण 1.3
अंतिम अपडेट 2023-07-02
प्रकाशन तिथि 2023-04-03
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर mash
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AI Bar - Prompt ChatGPT from the URL bar",
    "description": "Type your prompt after \"ai\" in the Chrome URL bar and press return!",
    "version": "1.3",
    "omnibox": {
        "keyword": "ai"
    },
    "background": {
        "service_worker": "src\/service-worker.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/debug.content.js",
                "src\/content.chatgpt.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/page.chatgpt.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Customize which AI to prompt",
        "default_popup": "src\/popup.html"
    }
}