ChatGPT Prompts
ChatGPT Prompts
ChatGPT Promptsとは何ですか?
ChatGPT PromptsはCem PEHLİVANによって開発されたChromeの拡張機能で、その主な機能は「ChatGPT Prompts」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | igaldenhhkaelahplnglcdcfmmhhmgdj |
| 公式URL | 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 |
| Eメール | [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"
]
}
]
} | |