您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A prompt injection tool for ChatGPT - designed for creative writing, storytelling and advanced prompt engineering
[!NOTE] This project is intended for creative writing, storytelling and advanced prompt engineering. It does not encourage, promote, or condone the misuse of AI tools in violation of OpenAI's terms of service or ethical guidelines.
All example prompts and outputs are fictional and for illustrative purposes only.
ChatGPT PromptStudio is a Tampermonkey user script that allows users for creative writing, storytelling or advanced prompt engineering in ChatGPT. It fetches a long-form prompt from an external source and prepends it to your current input with a single click.
It comes with the following features:
Install
buttonChatGPT PromptStudio fetches your prompt from a remote URL.
To use your own prompt:
https://gist.githubusercontent.com/yourusername/abc123/raw/filename.txt
)Replace the RAW_PROMPT_URL
value inside the script with your URL:
const RAW_PROMPT_URL = 'https://gist.githubusercontent.com/yourusername/abc123/raw/prompt.txt';
Save the script and refresh ChatGPT
If your prompt is hosted outside gist.githubusercontent.com
, you must also add a @connect
directive to the top of your script:
// @connect yourdomain.com
For example, if you're hosting the prompt at https://pastebin.com/raw/...
, then add:
// @connect pastebin.com
This allows Tampermonkey to make network requests to that domain, bypassing browser security restrictions (CSP).
Distributed under the MIT License. See LICENSE
for more information.