ChatGPT Prompt Library
ChatGPT prompts for everyone
什么是ChatGPT Prompt Library?
ChatGPT Prompt Library是由Practical AI开发的Chrome扩展程序,该扩展的主要功能是“ChatGPT prompts for everyone”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
]
}
]
} | |