ChatGPT Utilities by innaton.com

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

Cos'è ChatGPT Utilities by innaton.com?

ChatGPT Utilities by innaton.com è un'estensione di Chrome sviluppata da https://innaton.com, e la sua funzione principale è "ChatGPT Utilities to make working with ChatGPT more efficient. Starting with a smart 'continue' button.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ChatGPT Utilities by innaton.com

Scarica i file di estensione ChatGPT Utilities by innaton.com in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ChatGPT Utilities by innaton.com ChatGPT Utilities by innaton.com
ID gdaanompcnmhpbaogmddepcfnbdoimpl
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-utilities-by-inna/gdaanompcnmhpbaogmddepcfnbdoimpl
Descrizione ChatGPT Utilities to make working with ChatGPT more efficient. Starting with a smart 'continue' button.
Dimensione del File 8.56 KB
Conteggio Installazioni 915
Versione Corrente 2.12
Ultimo Aggiornamento 2023-09-18
Data di Pubblicazione 2023-01-24
Valutazione 3.33/5 Totale 12 Valutazioni
Sviluppatore https://innaton.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/56548bb6-15ac-4248-aaee-fa22b6c22ca8
Lingue Supportate 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"
            ]
        }
    ]
}