From d0f5673396261ebdab0f361fe41382ba23fb6cf1 Mon Sep 17 00:00:00 2001 From: "adamlui@protonmail.com" Date: Sun, 29 Sep 2024 09:29:18 +0000 Subject: [PATCH] =?UTF-8?q?Appended=20',=20author'=20to=20Donation=20modal?= =?UTF-8?q?=20sign-off=20=E2=86=9E=20[auto-sync=20from=20`adamlui/chatgpt-?= =?UTF-8?q?apps/chatgpt-widescreen/greasemonkey`]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- greasemonkey/chatgpt-widescreen-mode.user.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/greasemonkey/chatgpt-widescreen-mode.user.js b/greasemonkey/chatgpt-widescreen-mode.user.js index 9c687dc0..d5741d23 100644 --- a/greasemonkey/chatgpt-widescreen-mode.user.js +++ b/greasemonkey/chatgpt-widescreen-mode.user.js @@ -222,7 +222,7 @@ // @description:zu Engeza izinhlobo zezimodi ze-Widescreen + Fullscreen ku-ChatGPT ukuze kube nokubonakala + ukuncitsha ukusukela // @author Adam Lui // @namespace https://github.com/adamlui -// @version 2024.9.28.3 +// @version 2024.9.29 // @license MIT // @compatible chrome // @compatible firefox @@ -363,6 +363,7 @@ alert_directlySupports: 'directly supports my unpaid efforts to ensure this project remains free and open for all to use', alert_growTogether: 'Together, we can keep this powerful software growing', alert_tyForSupport: 'Thank you for your support', + alert_author: 'author', alert_pressF11: 'Press F11 to exit full screen', alert_f11reason: 'F11 was used to enter full screen, and due to browser security reasons, the same key must be used to exit it', btnLabel_moreApps: 'More ChatGPT Apps', @@ -589,7 +590,7 @@ + `

${app.msgs.alert_yourContrib}, ${app.msgs.alert_noMatterSize}, ${app.msgs.alert_directlySupports}.

` + `

${app.msgs.alert_growTogether}.

` + `

${app.msgs.alert_tyForSupport}!

` - + `

${app.msgs.appAuthor}

`, + + `

${app.msgs.appAuthor}, ${app.msgs.alert_author}

`, [ // buttons function paypal() { modals.safeWinOpen(app.urls.payPal) }, function github() { modals.safeWinOpen(app.urls.gitHub) }, @@ -607,7 +608,7 @@ btns.forEach((btn, idx) => { if (idx == 0) btn.style.display = 'none' // hide Dismiss button else { - btn.style.cssText = 'padding: 8px 0 !important ; margin-top: -34px' // heighten + raise + btn.style.cssText = 'padding: 8px 0 !important ; margin-top: -18px' // heighten + raise if (idx == btns.length -1) btn.classList.remove('primary-modal-btn') // de-emphasize last link } })