Open in GPT

Open selected text directly in ChatGPT with a customized prompt.

Open in GPTคืออะไร?

Open in GPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Josip Domazet และคุณลักษณะหลักของมันคือ "Open selected text directly in ChatGPT with a customized prompt."

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in GPT

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

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

                        This extension enables you to quickly open selected text in ChatGPT by right-clicking. Customize ChatGPT's behavior by setting a pre-filled prompt to provide contextual information.

This ensures ChatGPT behaves like you want it to behave and enables you to make it solve repetitive tasks for you -- Automate the automation 🚀

Some Use Cases:

• Answer questions in a specific manner (e.g. only ever answer with A, B, C, or D)
• Give general context for tasks like summarizing a paragraph
• Resolve code errors
• Get language assistance
• Translate text
• Generate content in specific ways
• Anything that you find yourself always copying into ChatGPT manually
...


Usage:

Click the extension icon to configure your custom prompt.
Select text and right-click, then choose "Open selection in ChatGPT!" (Alternatively, press ALT + S).
If you're working with other programs, use ALT + C to populate the prompt from your clipboard instead of selecting text.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Open in GPT Open in GPT
ID emplihipkdkncejkpofkbhldhdnickjo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-gpt/emplihipkdkncejkpofkbhldhdnickjo
คำอธิบาย Open selected text directly in ChatGPT with a customized prompt.
ขนาดไฟล์ 46.07 KB
จำนวนการติดตั้ง 51
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2023-07-20
วันที่เผยแพร่ 2023-07-14
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Josip Domazet
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in GPT",
    "description": "Open selected text directly in ChatGPT with a customized prompt.",
    "version": "0.1.1",
    "version_name": "0.1.1",
    "manifest_version": 3,
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/img\/16x16.png",
        "32": "assets\/img\/24x24.png",
        "48": "assets\/img\/32x32.png",
        "128": "assets\/img\/128x128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/img\/16x16.png",
            "24": "assets\/img\/24x24.png",
            "32": "assets\/img\/32x32.png",
            "128": "assets\/img\/128x128.png"
        }
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "commands": {
        "trigger-selection": {
            "suggested_key": "Alt+S",
            "description": "Open ChatGPT with selection"
        },
        "trigger-clipboard": {
            "suggested_key": "Alt+C",
            "description": "Open ChatGPT with clipboard instead of selection"
        }
    }
}