ChatGPT Prompt Library

ChatGPT prompts for everyone

ChatGPT Prompt Library là gì?

ChatGPT Prompt Library là một tiện ích mở rộng Chrome được phát triển bởi Practical AI, và tính năng chính của nó là "ChatGPT prompts for everyone".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Prompt Library

Tải xuống các tệp mở rộng ChatGPT Prompt Library dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Prompt Library ChatGPT Prompt Library
ID kiaoanbjmabpebanpdclaijlhmmcphkh
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh
Mô tả ChatGPT prompts for everyone
Kích Thước Tệp 34.63 KB
Số Lần Cài Đặt 1,625
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2023-08-27
Ngày Phát Hành 2023-03-01
Đánh Giá 3.70/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Practical AI
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://linktr.ee/practical.ai
URL Trang Trợ Giúp https://linktr.ee/practical.ai
URL Trang Chính Sách Bảo Mật https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}