-
-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Custom instruction An instruction that will be added to the end of each prompt. For example, you can add "Please repeat the prompt after me.", or "Please refrain from writing warnings about your knowledge cutoff" to the custom instruction, and it will be added to the end of every prompt. - You can now export/import prompt history. Simply go to My Prompt History, and you'll see two new buttons at the bottom of the menu. - You can now also import/export your Settings, Custom Prompts (Shortcuts), and Folder Structure. You can find this feature in the Settings menu under the General tab. - Auto Click. You can now enable auto-click on your custom prompt. By enabling this button, your "default" custom prompt will be clicked automatically at the end of each response. - Smart Replace. Custom prompts are now even more powerful. Your custom prompt now also acts as a shortcut. To use shortcuts in your prompt, simply type @ followed by the name of the prompt and press space. Your text will automatically be replaced by the custom prompt text. - Prompt Templates. We now support prompt templates using curly brackets. If you try to submit a prompt that includes a word surrounded by {{two curly brackets}}, a new popup shows up and asks you to enter your desired values for those curly brackets. Make sure to use "{{ }}" when submitting new prompts to the community. - Added a popup menu to the extension icon for easy access to various links - Improved Auto-Sync - Fixed the style issue with the Continue button not being correctly placed - Fixed the list styling issue
- Loading branch information
1 parent
10867f3
commit b0ac73d
Showing
18 changed files
with
664 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
body { | ||
margin: 0; | ||
padding: 4px 8px; | ||
width: 140px; | ||
background-color: gold; | ||
} | ||
button { | ||
height: 36px; | ||
width: 100%; | ||
margin: 4px 0; | ||
border: solid 1px #f1f1f1; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
background-color: white; | ||
&:hover { | ||
background-color: #f1f1f1; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<link rel="stylesheet" href="popup.css" /> | ||
</head> | ||
|
||
<body> | ||
<a target="_blank" href="https://chat.openai.com/"> | ||
<button id="chatgpt">ChatGPT <span>→</span></button> | ||
</a> | ||
<a target="_blank" href="https://www.superpowerdaily.com/"> | ||
<button id="newsletter">Newsletter <span>→</span></button> | ||
</a> | ||
<a target="_blank" href="https://sponsor.superpowerdaily.com/"> | ||
<button id="sponsorship">Sponsorship | ||
<span>→</span></button> | ||
</a> | ||
<a href="https://ezi.notion.site/Superpower-ChatGPT-FAQ-9d43a8a1c31745c893a4080029d2eb24"> | ||
<button id="faq">FAQ | ||
<span>→</span></button> | ||
</a> | ||
<a target="_blank" | ||
href="https://www.paypal.com/donate/?business=TAF9NBUWQQQ7J&no_recurring=0&item_name=Thank+you+for+supporting+Superpower+ChatGPT+%F0%9F%99%87%F0%9F%8F%BB%E2%80%8D%E2%99%82%EF%B8%8F¤cy_code=USD"> | ||
<button id="paypel">Support (Paypal) <span>→</span></button> | ||
</a> | ||
<a target="_blank" href="https://buy.stripe.com/6oE6s0dQS7y2bjG9AA"> | ||
<button id="stripe">Support (Stripe) | ||
<span>→</span></button> | ||
</a> | ||
<script src="popup.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.