ChatGPT Prompt Library

ChatGPT prompts for everyone

什麼是ChatGPT Prompt Library?

ChatGPT Prompt Library是由Practical AI開發的Chrome擴展程式,該擴展的主要功能是“ChatGPT prompts for everyone”。

擴展截圖

screenshot

下載ChatGPT Prompt Library擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}