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
公式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
Eメール [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"
            ]
        }
    ]
}