ChatGPT Utilities by innaton.com

ChatGPT Utilities to make working with ChatGPT more efficient. Starting with a smart 'continue' button.

什麼是ChatGPT Utilities by innaton.com?

ChatGPT Utilities by innaton.com是由https://innaton.com開發的Chrome擴展程式,該擴展的主要功能是“ChatGPT Utilities to make working with ChatGPT more efficient. Starting with a smart 'continue' button.”。

擴展截圖

screenshot
screenshot
screenshot

下載ChatGPT Utilities by innaton.com擴展crx文件

下載ChatGPT Utilities by innaton.com擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Initial Version of ChatGPT Utilities to make working with ChatGPT more efficient.
Starting with a smart "continue" button.

A "smart" continue button - forces ChatGPT to continue right from where it stopped. No more skipped, repeated, or malformed responses when working with long responses. 
Especially useful when dealing with code or long text responses.

Currently at a 90%+ success rate since the first release of ChatGPT.

(Still outperforming the official continue functionality released by OpenAI)

Example dynamic continue prompt:
"
Your last response stopped here:
```
[LAST_FEW_LINES_BEFORE_STOP]
```
Please continue.
"

Currently it uses pre-defined prompts, but in the future might allow the user to customise as needed.

If this get's enough traction and support, we might follow up with a larger and more powerful toolkit for ChatGPT.


Ideas for future versions:
- Button/prompt to accept large code as input and wait until all data is provided before initiating a conversation
- Special buttons/prompts for developers that are optimised for generating boiler-plate code for specific languages
- Export conversation to PDF
- Customisation of prompts used in any of the buttons
- Schedule and execute prompts (schedule multiple prompts and auto-continue)

For any questions, comments, or suggestions, please reach out on [email protected]

To support this project you can use the following link:
https://bmc.link/waelmas

V2.12 Updates:
- Usual frequent fixes for breaking UI changes introduced to the ChatGPT UI.

V2.11 Updates:
- Usual fixes for breaking UI changes introduced to the ChatGPT UI.

V2.10 Updates:
- Minor fixes to button mounting due to UI changes introduced to the ChatGPT UI.

V2.9 Updates:
- Minor UI fix to the appearance of the Continue button.

V2.8 Updates:
- Fixing button disappearing issue after changes introduced to the ChatGPT UI.

V2.7 Updates:
- Minor fixes after changes introduced to the ChatGPT UI.

V2.6 Updates:
- Major changes to injecting continue prompt to the input text after OpenAI introduced breaking changes apparently in attempts to make automated messages harder for non-humans.
- Minor improvements to performance and handling edge cases.

V2.5 Updates:
- Support for GPT-4 Browsing & Plugin chats.
- Minor performance improvements.

V2.4 Updates:
- Fixing breaking changes introduced in the ChatGPT version of May 3rd  causing the button to fail to mount.

V2.2 & V2.3 Updates:
- Minor fix to allow the mounting of the button on the new format of ChatGPT URLs (silent change pushed by OpenAI)

V2.1 Updates:
- Minor fix of an issue that prevented the attachment of the continue button on the page for new chats with model selected being GPT-4 or GPT-3.5-Legacy.

V2.0 Updates:
- Rework of all page selectors due to breaking changes introduced in the ChatGPT Mar 23 version.
- Improved functionalities making ChatGPT continue without repetitions
- Handling of content in ordered/unordered lists
- Better handling of codeblocks

V1.1 Updates:
- Fixing dynamic content pickup after OpenAI introduced breaking changes with the ChatGPT Jan 30 version


-> BEFORE adding a review, please check the release notes above AND wait a couple of days after a new ChatGPT version was released. OpenAI keeps introducing breaking changes, and every-time we deploy a fix we have to wait for approval from Google before the extension is updated.

This extension is maintained by 1 person with work commitments, so please be patient.                    

擴展基本資訊

名稱 ChatGPT Utilities by innaton.com ChatGPT Utilities by innaton.com
ID gdaanompcnmhpbaogmddepcfnbdoimpl
官方網址 https://chromewebstore.google.com/detail/chatgpt-utilities-by-inna/gdaanompcnmhpbaogmddepcfnbdoimpl
簡介 ChatGPT Utilities to make working with ChatGPT more efficient. Starting with a smart 'continue' button.
檔案大小 8.56 KB
安裝次數 915
目前版本 2.12
更新時間 2023-09-18
上架時間 2023-01-24
評分 3.33/5 共 12 次評分
開發者 https://innaton.com
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://www.freeprivacypolicy.com/live/56548bb6-15ac-4248-aaee-fa22b6c22ca8
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Utilities by innaton.com",
    "description": "ChatGPT Utilities to make working with ChatGPT more efficient. Starting with a smart 'continue' button.",
    "version": "2.12",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/",
                "*:\/\/chat.openai.com\/*\/*",
                "*:\/\/chat.openai.com\/chat\/*",
                "*:\/\/chat.openai.com\/c\/*",
                "*:\/\/chat.openai.com\/share\/*",
                "*:\/\/chat.openai.com\/?model=gpt-4",
                "*:\/\/chat.openai.com\/?model=gpt-4-browsing",
                "*:\/\/chat.openai.com\/?model=gpt-4-plugins",
                "*:\/\/chat.openai.com\/?model=gpt-4-code-interpreter",
                "*:\/\/chat.openai.com\/?model=text-davinci-002-render-sha",
                "*:\/\/chat.openai.com\/?model=text-davinci-002-render-paid",
                "*:\/\/chat.openai.com\/?model=*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}