Greasy Fork is available in English.

ChatGPT iOS Legacy Scroll + Auto-Scroll Fix

Fixes broken scrolling and adds auto-scroll to latest message on ChatGPT website for older iOS versions.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         ChatGPT iOS Legacy Scroll + Auto-Scroll Fix
// @namespace    korboy
// @version      1.0
// @description  Fixes broken scrolling and adds auto-scroll to latest message on ChatGPT website for older iOS versions.
// @author       korboy
// @match        https://chatgpt.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
   'use strict';
   
   function fixChatGPTScrollIssue() {
       if (!window.location.hostname.includes('chatgpt.com')) {
           return;
       }
       const styleElement = document.createElement('style');
       
       styleElement.textContent = `
           .composer-parent > .flex-1 > div > div > div {
               height: 100% !important;
               max-height: none !important;
               overflow-y: auto !important;
           }
       `;
       document.head.appendChild(styleElement);
   }

   fixChatGPTScrollIssue();

   if (document.readyState === 'complete') {
       fixChatGPTScrollIssue();
   } else {
       window.addEventListener('load', fixChatGPTScrollIssue);
   }
})();