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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}