Generative Prompts
An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.
什么是Generative Prompts?
Generative Prompts是由https://alpererdogan.dev开发的Chrome扩展程序,该扩展的主要功能是“An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.”。
扩展截图
下载Generative Prompts扩展crx文件
下载Generative Prompts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is a simple ChatGPT interface that provides a facilitating interface for queries created for ChatGPT by contributors to the awesome ChatGPT Prompts repository, and personality prompts for a machine learning model trained on this repository's dataset.
Prompt collection repository created for ChatGPT prompts
https://github.com/f/awesome-chatgpt-prompts
BART model trained with these prompts
https://huggingface.co/merve/chatgpt-prompt-generator-v12
If you want to contribute
https://github.com/alpererdogan8/generative-prompts 扩展基本信息
| 名称 | |
| ID | jhjnkdgjladjimcaoefapnnllkcbmldh |
| 官方URL | https://chromewebstore.google.com/detail/generative-prompts/jhjnkdgjladjimcaoefapnnllkcbmldh |
| 简介 | An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator. |
| 文件大小 | 112 KB |
| 安装次数 | 34 |
| 当前版本 | 1.0.7 |
| 更新时间 | 2024-01-04 |
| 上架时间 | 2023-02-28 |
| 开发者 | https://alpererdogan.dev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/alpererdogan8/generative-prompts |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Generative Prompts",
"action": [],
"manifest_version": 3,
"version": "1.0.7",
"description": "An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"host_permissions": [
"https:\/\/raw.githubusercontent.com\/f\/awesome-chatgpt-prompts\/main\/prompts.csv",
"https:\/\/merve-chatgpt-prompt-generator-v12.hf.space\/run\/predict"
],
"permissions": [
"storage"
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"assets\/content-script-loader.main.jsx-e74a00a6-9976c30b.js"
],
"matches": [
"https:\/\/chat.openai.com\/*"
],
"css": [
"assets\/main-2ce0ebe1.css"
]
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"resources": [
"assets\/main.jsx-e74a00a6.js"
],
"use_dynamic_url": true
}
]
} | |