Releases: doggy8088/ChatGPTToolkitExtension
Releases · doggy8088/ChatGPTToolkitExtension
0.37.0
0.36.3
0.36.2
0.36.1
0.36.0
0.35.0
- Fixed: The "base64 decode" handling was wrongly implemented in the last update.
Full Changelog: 0.34.0...0.35.0
0.34.0
0.33.0
0.32.0
-
Feature: Add
alt+s
hotkey to toggleSearch the web
feature -
Feature: Add
autoPaste
feature to custom reply buttonslet customPrompts = []; customPrompts.push({ "enabled": true, "title": "記事", "altText": "用來記錄手邊的筆記,但不需要 ChatGPT 回答。", "prompt": "請幫我記錄以下內容,僅需回答我 OK 即可:\n\n", "autoPaste": true, "autoSubmit": false }); localStorage.setItem('chatgpttoolkit.customPrompts', JSON.stringify(customPrompts.filter(prompt => prompt.enabled && !!prompt.title)));
0.31.0
-
Feature: Add custom prompts for initial buttons
let customPrompts = []; customPrompts.push({ "enabled": true, "initial": true, // Used only in Initial Buttons "svgIcon": "📝", // This can be replaced with a SVG tag "title": "記事", // The text of the button "altText": "用來記錄手邊的筆記,但不需要 ChatGPT 回答。", // The hint text for the button "prompt": "除非我詢問你問題,否則請回答我 OK 即可", // The prompt text "autoPaste": true, // Auto paste the prompt text to the input field "autoSubmit": true // Auto submit the prompt text }); localStorage.setItem('chatgpttoolkit.customPrompts', JSON.stringify(customPrompts.filter(prompt => prompt.enabled && !!prompt.title)));