ChatGPT Prompts

ChatGPT Prompts

什麼是ChatGPT Prompts?

ChatGPT Prompts是由Cem PEHLİVAN開發的Chrome擴展程式,該擴展的主要功能是“ChatGPT Prompts”。

擴展截圖

screenshot

下載ChatGPT Prompts擴展crx文件

下載ChatGPT Prompts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is a collection of prompt examples to be used with the ChatGPT model.

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.

In this extension, you will find a variety of prompts that can be used with ChatGPT. 

Enter "https://chat.openai.com/chat". Thanks to this plugin, you will see ready prompts prepared for you on the homepage.

We hope you find these prompts useful and have fun using ChatGPT!

Thanks! https://github.com/f/awesome-chatgpt-prompts                    

擴展基本資訊

名稱 ChatGPT Prompts ChatGPT Prompts
ID igaldenhhkaelahplnglcdcfmmhhmgdj
官方網址 https://chromewebstore.google.com/detail/chatgpt-prompts/igaldenhhkaelahplnglcdcfmmhhmgdj
簡介 ChatGPT Prompts
檔案大小 31.55 KB
安裝次數 10,000
目前版本 0.3.0
更新時間 2023-03-01
上架時間 2022-12-21
評分 3.77/5 共 13 次評分
開發者 Cem PEHLİVAN
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/cempehlivan/chatgpt-prompt-chrome-extension
說明頁面URL https://github.com/cempehlivan/chatgpt-prompt-chrome-extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Prompts",
    "version": "0.3.0",
    "description": "ChatGPT Prompts",
    "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 Prompts"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}