Skip to content

Releases: doggy8088/ChatGPTToolkitExtension

0.37.0

18 Jan 16:55
Compare
Choose a tag to compare
  • Fix a bug on initial buttons detection.

0.36.3

23 Dec 13:46
Compare
Choose a tag to compare
  • Fix a possible undefined error.

0.36.2

23 Dec 13:45
Compare
Choose a tag to compare
  • Remove the Alt+S hotkey for the "Search the web" feature.

0.36.1

22 Dec 15:52
Compare
Choose a tag to compare
  • fix(content): exclude "Projects"'s ul from initial buttons.

0.36.0

22 Dec 15:36
Compare
Choose a tag to compare
  • fix(content): the initial buttons not shown due to ChatGPT layout changes.

0.35.0

20 Nov 04:49
Compare
Choose a tag to compare
  • Fixed: The "base64 decode" handling was wrongly implemented in the last update.

Full Changelog: 0.34.0...0.35.0

0.34.0

19 Nov 18:31
Compare
Choose a tag to compare
  • Feature: Added pasteImage parameter that can paste image from user's clipboard automatically.
  • Chore: Rewrite "hash" parsing logic to better readability.
  • Fixed: The "Search the web" feature apply the wrong hotkey to a popup.

0.33.0

18 Nov 09:03
Compare
Choose a tag to compare
  • Fixed: Add Japanese support for text detection.
  • Fixed: The clipboard will no longer automatically send prompt when there is no content.
  • Feature: Added a hotkey hint alt+s for the "Search the web" hint text.

0.32.0

17 Nov 05:52
Compare
Choose a tag to compare
  • Feature: Add alt+s hotkey to toggle Search the web feature

  • Feature: Add autoPaste feature to custom reply buttons

    let 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

14 Nov 19:47
Compare
Choose a tag to compare
  • 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)));