ChatGPT Prompt Library

ChatGPT prompts for everyone

ChatGPT Prompt Libraryคืออะไร?

ChatGPT Prompt Library เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Practical AI และคุณลักษณะหลักของมันคือ "ChatGPT prompts for everyone"

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

screenshot

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

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

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

                        This is a collection of prompts to be used with the ChatGPT. Browse them in the Chrome window or download as a .csv file. Isn't it convenient? ;) 

The ChatGPT model is a large language model trained by OpenAI that is capable of generating human-like text. By providing it with a prompt, it can generate responses that continue the conversation or expand on the given prompt.

Visit "https://chat.openai.com/chat" to use this extension.                    

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

ชื่อ ChatGPT Prompt Library ChatGPT Prompt Library
ID kiaoanbjmabpebanpdclaijlhmmcphkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh
คำอธิบาย ChatGPT prompts for everyone
ขนาดไฟล์ 34.63 KB
จำนวนการติดตั้ง 1,625
เวอร์ชันปัจจุบัน 0.1.6
อัปเดตครั้งล่าสุด 2023-08-27
วันที่เผยแพร่ 2023-03-01
คะแนน 3.70/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Practical AI
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://linktr.ee/practical.ai
URL หน้าช่วยเหลือ https://linktr.ee/practical.ai
URL หน้านโยบายความเป็นส่วนตัว https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Prompt Library",
    "version": "0.1.6",
    "description": "ChatGPT prompts for everyone",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ChatGPT Prompt Library",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}