Ask ChatGPT

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

Ask ChatGPTคืออะไร?

Ask ChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codemonument และคุณลักษณะหลักของมันคือ "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ask ChatGPT

ดาวน์โหลดไฟล์ส่วนขยาย Ask ChatGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}