Ask ChatGPT

Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!

Ask ChatGPT란 무엇입니까?

Ask ChatGPT은(는) codemonument에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This Extension brings the power of ChatGPT right into your Chrome OmniBar! 

How to use it: 
1. Open a new Tab 
2. Type: "gpt", followed by a space* 
    * If you already have a shortcut called gpt, 
       you might need to press TAB instead of 
       space to activate the extension
3. Insert any query you like and press enter 
4. You will be redirected to chat.openai.com and your query will be inserted and submitted automatically! 

Extra Feature: 
The extension tries to detect whether you're logged into ChatGPT or not. 
If you see the message 

"You seem to not be logged in! Please log in at https://chat.openai.com/auth/login"

you can press enter and you'll be directly redirected to the login page!                    

확장 프로그램 기본 정보

이름 Ask ChatGPT Ask ChatGPT
ID kfjlbdhonplbiikgogomppidenoaichc
공식 URL https://chromewebstore.google.com/detail/ask-chatgpt/kfjlbdhonplbiikgogomppidenoaichc
설명 Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!
파일 크기 112 KB
설치 횟수 3,181
현재 버전 1.0.1
최근 업데이트 2023-03-05
출시 날짜 2023-03-03
평점 5.00/5 총 1 개의 평점
개발자 codemonument
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/codemonument/chrome-ask-gpt
도움말 페이지 URL https://github.com/codemonument/chrome-ask-gpt/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ask ChatGPT",
    "description": "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!",
    "version": "1.0.1",
    "manifest_version": 3,
    "author": "[email protected]",
    "omnibox": {
        "keyword": "gpt"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/chat.openai.com\/*",
        "https:\/\/chat.openai.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "16": "assets\/icon_16x16.png",
        "32": "assets\/icon_32x32.png",
        "64": "assets\/icon_64x64.png",
        "128": "assets\/icon_128x128.png",
        "256": "assets\/icon_256x256.png",
        "512": "assets\/icon_512x512.png"
    }
}