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
官方URL 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"
            ]
        }
    ]
}