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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Type your prompt after "ai" in the Chrome URL bar and press return!"입니다.

확장 프로그램 스크린샷

screenshot

AI Bar - Prompt ChatGPT from the URL bar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}