Skip to content

Commit fc5b6b1

Browse files
committed
Shortened About status textGap to xGap
1 parent c99c62c commit fc5b6b1

File tree

10 files changed

+34
-34
lines changed

10 files changed

+34
-34
lines changed

amazongpt/greasemonkey/amazongpt.user.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @description Add AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs like GPT-4o!
44
// @author KudoAI
55
// @namespace https://kudoai.com
6-
// @version 2025.5.16.10
6+
// @version 2025.5.16.11
77
// @license MIT
88
// @icon https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon48.png?v=8e8ed1c
99
// @icon64 https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon64.png?v=8e8ed1c
@@ -2311,13 +2311,13 @@
23112311
settingEntry.onclick = () => modals.open('scheme')
23122312
} else if (key.includes('about')) {
23132313
const innerDiv = dom.create.elem('div'),
2314-
textGap = '     '
2314+
xGap = '     '
23152315
modals.settings.aboutContent = {}
23162316
modals.settings.aboutContent.short = `v${GM_info.script.version}`
23172317
modals.settings.aboutContent.long = (
23182318
`${app.msgs.about_version}: <span class="about-em">v${
2319-
GM_info.script.version + textGap }</span>`
2320-
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${textGap}` )
2319+
GM_info.script.version + xGap }</span>`
2320+
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${xGap}` )
23212321
for (let i = 0; i < 7; i++)
23222322
modals.settings.aboutContent.long += modals.settings.aboutContent.long // make long af
23232323
innerDiv.innerHTML = modals.settings.aboutContent[

bravegpt/greasemonkey/bravegpt.user.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
// @description:zu Yengeza izimpendulo ze-AI ku-Brave Search (inikwa amandla yi-GPT-4o!)
149149
// @author KudoAI
150150
// @namespace https://kudoai.com
151-
// @version 2025.5.16.11
151+
// @version 2025.5.16.12
152152
// @license MIT
153153
// @icon https://assets.bravegpt.com/images/icons/bravegpt/icon48.png?v=df624b0
154154
// @icon64 https://assets.bravegpt.com/images/icons/bravegpt/icon64.png?v=df624b0
@@ -3065,13 +3065,13 @@
30653065
settingEntry.onclick = () => modals.open('scheme')
30663066
} else if (key.includes('about')) {
30673067
const innerDiv = dom.create.elem('div'),
3068-
textGap = '&emsp;&emsp;&emsp;&emsp;&emsp;'
3068+
xGap = '&emsp;&emsp;&emsp;&emsp;&emsp;'
30693069
modals.settings.aboutContent = {}
30703070
modals.settings.aboutContent.short = `v${GM_info.script.version}`
30713071
modals.settings.aboutContent.long = (
30723072
`${app.msgs.about_version}: <span class="about-em">v${
3073-
GM_info.script.version + textGap }</span>`
3074-
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${textGap}` )
3073+
GM_info.script.version + xGap }</span>`
3074+
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${xGap}` )
30753075
for (let i = 0; i < 7; i++)
30763076
modals.settings.aboutContent.long += modals.settings.aboutContent.long // make long af
30773077
innerDiv.innerHTML = modals.settings.aboutContent[

chatgpt-auto-continue/chromium/extension/popup/controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,15 +180,15 @@
180180
helptip: `${settings.getMsg('menuLabel_about')} ${settings.getMsg('appName')}`
181181
}),
182182
ticker: {
183-
textGap: '&emsp;&emsp;&emsp;',
183+
xGap: '&emsp;&emsp;&emsp;',
184184
span: dom.create.elem('span', { class: 'ticker' }), innerDiv: dom.create.elem('div')
185185
}
186186
}
187187
aboutEntry.div.querySelector('div.menu-icon').style.paddingLeft = '10px'
188188
aboutEntry.div.querySelector('span').style.paddingLeft = '2.5px'
189189
aboutEntry.ticker.content = `${
190-
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.textGap }</span>${
191-
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.textGap}`
190+
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.xGap }</span>${
191+
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.xGap}`
192192
for (let i = 0 ; i < 7 ; i++) aboutEntry.ticker.content += aboutEntry.ticker.content // make long af
193193
aboutEntry.ticker.innerDiv.innerHTML = aboutEntry.ticker.content
194194
aboutEntry.ticker.span.append(aboutEntry.ticker.innerDiv)

chatgpt-auto-continue/firefox/extension/popup/controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,15 +180,15 @@
180180
helptip: `${settings.getMsg('menuLabel_about')} ${settings.getMsg('appName')}`
181181
}),
182182
ticker: {
183-
textGap: '&emsp;&emsp;&emsp;',
183+
xGap: '&emsp;&emsp;&emsp;',
184184
span: dom.create.elem('span', { class: 'ticker' }), innerDiv: dom.create.elem('div')
185185
}
186186
}
187187
aboutEntry.div.querySelector('div.menu-icon').style.paddingLeft = '10px'
188188
aboutEntry.div.querySelector('span').style.paddingLeft = '2.5px'
189189
aboutEntry.ticker.content = `${
190-
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.textGap }</span>${
191-
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.textGap}`
190+
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.xGap }</span>${
191+
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.xGap}`
192192
for (let i = 0 ; i < 7 ; i++) aboutEntry.ticker.content += aboutEntry.ticker.content // make long af
193193
aboutEntry.ticker.innerDiv.innerHTML = aboutEntry.ticker.content
194194
aboutEntry.ticker.span.append(aboutEntry.ticker.innerDiv)

chatgpt-infinity/chromium/extension/popup/controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,15 +232,15 @@
232232
helptip: `${settings.getMsg('menuLabel_about')} ${settings.getMsg('appName')}`
233233
}),
234234
ticker: {
235-
textGap: '&emsp;&emsp;&emsp;',
235+
xGap: '&emsp;&emsp;&emsp;',
236236
span: dom.create.elem('span', { class: 'ticker' }), innerDiv: dom.create.elem('div')
237237
}
238238
}
239239
aboutEntry.div.querySelector('div.menu-icon').style.paddingLeft = '10px'
240240
aboutEntry.div.querySelector('span').style.paddingLeft = '2.5px'
241241
aboutEntry.ticker.content = `${
242-
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.textGap }</span>${
243-
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.textGap}`
242+
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.xGap }</span>${
243+
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.xGap}`
244244
for (let i = 0 ; i < 7 ; i++) aboutEntry.ticker.content += aboutEntry.ticker.content // make long af
245245
aboutEntry.ticker.innerDiv.innerHTML = aboutEntry.ticker.content
246246
aboutEntry.ticker.span.append(aboutEntry.ticker.innerDiv)

chatgpt-infinity/firefox/extension/popup/controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,15 @@
234234
helptip: `${settings.getMsg('menuLabel_about')} ${settings.getMsg('appName')}`
235235
}),
236236
ticker: {
237-
textGap: '&emsp;&emsp;&emsp;',
237+
xGap: '&emsp;&emsp;&emsp;',
238238
span: dom.create.elem('span', { class: 'ticker' }), innerDiv: dom.create.elem('div')
239239
}
240240
}
241241
aboutEntry.div.querySelector('div.menu-icon').style.paddingLeft = '10px'
242242
aboutEntry.div.querySelector('span').style.paddingLeft = '2.5px'
243243
aboutEntry.ticker.content = `${
244-
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.textGap }</span>${
245-
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.textGap}`
244+
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.xGap }</span>${
245+
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.xGap}`
246246
for (let i = 0 ; i < 7 ; i++) aboutEntry.ticker.content += aboutEntry.ticker.content // make long af
247247
aboutEntry.ticker.innerDiv.innerHTML = aboutEntry.ticker.content
248248
aboutEntry.ticker.span.append(aboutEntry.ticker.innerDiv)

chatgpt-widescreen/chromium/extension/popup/controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,15 +242,15 @@
242242
helptip: `${settings.getMsg('menuLabel_about')} ${app.name}`
243243
}),
244244
ticker: {
245-
textGap: '&emsp;&emsp;&emsp;',
245+
xGap: '&emsp;&emsp;&emsp;',
246246
span: dom.create.elem('span', { class: 'ticker' }), innerDiv: dom.create.elem('div')
247247
}
248248
}
249249
aboutEntry.div.querySelector('div.menu-icon').style.paddingLeft = '10px'
250250
aboutEntry.div.querySelector('span').style.paddingLeft = '2.5px'
251251
aboutEntry.ticker.content = `${
252-
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.textGap }</span>${
253-
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.textGap}`
252+
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.xGap }</span>${
253+
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.xGap}`
254254
for (let i = 0 ; i < 7 ; i++) aboutEntry.ticker.content += aboutEntry.ticker.content // make long af
255255
aboutEntry.ticker.innerDiv.innerHTML = aboutEntry.ticker.content
256256
aboutEntry.ticker.span.append(aboutEntry.ticker.innerDiv)

chatgpt-widescreen/firefox/extension/popup/controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,15 +242,15 @@
242242
helptip: `${settings.getMsg('menuLabel_about')} ${app.name}`
243243
}),
244244
ticker: {
245-
textGap: '&emsp;&emsp;&emsp;',
245+
xGap: '&emsp;&emsp;&emsp;',
246246
span: dom.create.elem('span', { class: 'ticker' }), innerDiv: dom.create.elem('div')
247247
}
248248
}
249249
aboutEntry.div.querySelector('div.menu-icon').style.paddingLeft = '10px'
250250
aboutEntry.div.querySelector('span').style.paddingLeft = '2.5px'
251251
aboutEntry.ticker.content = `${
252-
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.textGap }</span>${
253-
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.textGap}`
252+
settings.getMsg('about_version')}: <span class="ticker-em">v${ app.version + aboutEntry.ticker.xGap }</span>${
253+
settings.getMsg('about_poweredBy')} <span class="ticker-em">chatgpt.js</span>${aboutEntry.ticker.xGap}`
254254
for (let i = 0 ; i < 7 ; i++) aboutEntry.ticker.content += aboutEntry.ticker.content // make long af
255255
aboutEntry.ticker.innerDiv.innerHTML = aboutEntry.ticker.content
256256
aboutEntry.ticker.span.append(aboutEntry.ticker.innerDiv)

duckduckgpt/greasemonkey/duckduckgpt.user.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
// @description:zu Yengeza izimpendulo ze-AI ku-DuckDuckGo (inikwa amandla yi-GPT-4o!)
149149
// @author KudoAI
150150
// @namespace https://kudoai.com
151-
// @version 2025.5.16.12
151+
// @version 2025.5.16.13
152152
// @license MIT
153153
// @icon https://assets.ddgpt.com/images/icons/duckduckgpt/icon48.png?v=06af076
154154
// @icon64 https://assets.ddgpt.com/images/icons/duckduckgpt/icon64.png?v=06af076
@@ -3061,13 +3061,13 @@
30613061
settingEntry.onclick = () => modals.open('scheme')
30623062
} else if (key.includes('about')) {
30633063
const innerDiv = dom.create.elem('div'),
3064-
textGap = '&emsp;&emsp;&emsp;&emsp;&emsp;'
3064+
xGap = '&emsp;&emsp;&emsp;&emsp;&emsp;'
30653065
modals.settings.aboutContent = {}
30663066
modals.settings.aboutContent.short = `v${GM_info.script.version}`
30673067
modals.settings.aboutContent.long = (
30683068
`${app.msgs.about_version}: <span class="about-em">v${
3069-
GM_info.script.version + textGap }</span>`
3070-
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${textGap}` )
3069+
GM_info.script.version + xGap }</span>`
3070+
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${xGap}` )
30713071
for (let i = 0; i < 7; i++)
30723072
modals.settings.aboutContent.long += modals.settings.aboutContent.long // make long af
30733073
innerDiv.innerHTML = modals.settings.aboutContent[

googlegpt/greasemonkey/googlegpt.user.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
// @description:zu Yengeza izimpendulo ze-AI ku-Google Search (inikwa amandla yi-Google Gemma + GPT-4o!)
150150
// @author KudoAI
151151
// @namespace https://kudoai.com
152-
// @version 2025.5.16.11
152+
// @version 2025.5.16.12
153153
// @license MIT
154154
// @icon https://assets.googlegpt.io/images/icons/googlegpt/black/icon48.png?v=59409b2
155155
// @icon64 https://assets.googlegpt.io/images/icons/googlegpt/black/icon64.png?v=59409b2
@@ -3240,13 +3240,13 @@
32403240
settingEntry.onclick = () => modals.open('scheme')
32413241
} else if (key.includes('about')) {
32423242
const innerDiv = dom.create.elem('div'),
3243-
textGap = '&emsp;&emsp;&emsp;&emsp;&emsp;'
3243+
xGap = '&emsp;&emsp;&emsp;&emsp;&emsp;'
32443244
modals.settings.aboutContent = {}
32453245
modals.settings.aboutContent.short = `v${GM_info.script.version}`
32463246
modals.settings.aboutContent.long = (
32473247
`${app.msgs.about_version}: <span class="about-em">v${
3248-
GM_info.script.version + textGap }</span>`
3249-
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${textGap}` )
3248+
GM_info.script.version + xGap }</span>`
3249+
+ `${app.msgs.about_poweredBy} <span class="about-em">chatgpt.js</span>${xGap}` )
32503250
for (let i = 0; i < 7; i++)
32513251
modals.settings.aboutContent.long += modals.settings.aboutContent.long // make long af
32523252
innerDiv.innerHTML = modals.settings.aboutContent[

0 commit comments

Comments
 (0)