Skip to content

Commit 6e213b5

Browse files
committed
Added hide GF notices in repo readmes
1 parent 2300b0d commit 6e213b5

File tree

10 files changed

+114
-10
lines changed

10 files changed

+114
-10
lines changed

amazongpt/greasemonkey/amazongpt.user.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @description Adds the magic of AI to Amazon shopping
44
// @author KudoAI
55
// @namespace https://kudoai.com
6-
// @version 2025.4.10.4
6+
// @version 2025.4.11
77
// @license MIT
88
// @icon https://cdn.jsdelivr.net/gh/KudoAI/amazongpt@0fddfc7/assets/images/icons/amazongpt/black-gold-teal/icon48.png
99
// @icon64 https://cdn.jsdelivr.net/gh/KudoAI/amazongpt@0fddfc7/assets/images/icons/amazongpt/black-gold-teal/icon64.png
@@ -60,6 +60,10 @@
6060
// @match *://www.amazon.sa/*
6161
// @match *://www.amazon.se/*
6262
// @match *://www.amazon.sg/*
63+
// @match *://github.com/KudoAI/amazongpt*
64+
// @match *://github.com/kudoai/amazongpt*
65+
// @match *://github.com/adamlui/ai-web-extensions/*/amazongpt*
66+
// @match *://github.com/adamlui/userscripts/*/amazongpt*
6367
// @exclude *://*.amazon.*/ap/*
6468
// @include https://auth0.openai.com
6569
// @connect am.aifree.site
@@ -3442,6 +3446,13 @@
34423446
['rpg', 'rpw'].forEach(cssType => // rising particles
34433447
document.head.append(dom.create.style(GM_getResourceText(`${cssType}CSS`))))
34443448

3449+
// Hide GF alert on GitHub if found
3450+
if (location.host == 'github.com') {
3451+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
3452+
.find(alert => alert.textContent.includes('Greasy Fork'))
3453+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
3454+
}
3455+
34453456
// APPEND AMAZONGPT to Amazon
34463457
document.body.append(appDiv)
34473458
setTimeout(() => appDiv.classList.add('active'), 350) // fade in

autoclear-chatgpt-history/greasemonkey/autoclear-chatgpt-history.user.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
// @description:zu Ziba itshala lokucabanga okuzoshintshwa ngokuzenzakalelayo uma ukubuka chatgpt.com
226226
// @author Adam Lui
227227
// @namespace https://github.com/adamlui
228-
// @version 2025.4.2
228+
// @version 2025.4.11
229229
// @license MIT
230230
// @icon https://cdn.jsdelivr.net/gh/adamlui/autoclear-chatgpt-history@f461c06/assets/images/icons/openai/black/icon48.png
231231
// @icon64 https://cdn.jsdelivr.net/gh/adamlui/autoclear-chatgpt-history@f461c06/assets/images/icons/openai/black/icon64.png
@@ -239,6 +239,9 @@
239239
// @compatible ghost
240240
// @compatible qq
241241
// @match *://chatgpt.com/*
242+
// @match *://github.com/adamlui/autoclear-chatgpt-history*
243+
// @match *://github.com/adamlui/ai-web-extensions/*/autoclear-chatgpt-history*
244+
// @match *://github.com/adamlui/userscripts/*/autoclear-chatgpt-history*
242245
// @connect cdn.jsdelivr.net
243246
// @connect autoclearchatgpt.com
244247
// @connect raw.githubusercontent.com
@@ -267,6 +270,13 @@
267270

268271
(async () => {
269272

273+
// Hide GF alert on GitHub if found
274+
if (location.host == 'github.com') {
275+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
276+
.find(alert => alert.textContent.includes('Greasy Fork'))
277+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
278+
}
279+
270280
// Init ENV context
271281
const env = {
272282
browser: { language: chatgpt.getUserLanguage(), isMobile: chatgpt.browser.isMobile() },

bravegpt/greasemonkey/bravegpt.user.js

Lines changed: 12 additions & 1 deletion
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.4.10.4
151+
// @version 2025.4.11
152152
// @license MIT
153153
// @icon https://cdn.jsdelivr.net/gh/KudoAI/bravegpt@df624b0/assets/images/icons/bravegpt/icon48.png
154154
// @icon64 https://cdn.jsdelivr.net/gh/KudoAI/bravegpt@df624b0/assets/images/icons/bravegpt/icon64.png
@@ -182,6 +182,10 @@
182182
// @compatible waterfox
183183
// @compatible whale
184184
// @match *://search.brave.com/search*
185+
// @match *://github.com/KudoAI/bravegpt*
186+
// @match *://github.com/kudoai/bravegpt*
187+
// @match *://github.com/adamlui/ai-web-extensions/*/bravegpt*
188+
// @match *://github.com/adamlui/userscripts/*/bravegpt*
185189
// @include https://auth0.openai.com
186190
// @connect am.aifree.site
187191
// @connect api.binjie.fun
@@ -4410,6 +4414,13 @@
44104414
['rpg', 'rpw'].forEach(cssType => // rising particles
44114415
document.head.append(dom.create.style(GM_getResourceText(`${cssType}CSS`))))
44124416

4417+
// Hide GF alert on GitHub if found
4418+
if (location.host == 'github.com') {
4419+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
4420+
.find(alert => alert.textContent.includes('Greasy Fork'))
4421+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
4422+
}
4423+
44134424
// APPEND to Brave
44144425
const appDivParentSelector = env.browser.isMobile ? '#results' : '.sidebar'
44154426
const appDivParent = await new Promise(resolve => {

chatgpt-auto-continue/greasemonkey/chatgpt-auto-continue.user.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,14 @@
219219
// @description:zu ⚡ Terus menghasilkan imibuzo eminingi ye-ChatGPT ngokwesizulu
220220
// @author Adam Lui
221221
// @namespace https://github.com/adamlui
222-
// @version 2025.4.6
222+
// @version 2025.4.11
223223
// @license MIT
224224
// @icon https://cdn.jsdelivr.net/gh/adamlui/chatgpt-auto-continue@a8c9387/assets/images/icons/continue-symbol/black/icon48.png
225225
// @icon64 https://cdn.jsdelivr.net/gh/adamlui/chatgpt-auto-continue@a8c9387/assets/images/icons/continue-symbol/black/icon64.png
226226
// @match *://chatgpt.com/*
227+
// @match *://github.com/adamlui/chatgpt-auto-continue*
228+
// @match *://github.com/adamlui/ai-web-extensions/*/chatgpt-auto-continue*
229+
// @match *://github.com/adamlui/userscripts/*/chatgpt-auto-continue*
227230
// @connect cdn.jsdelivr.net
228231
// @connect chatgptautocontinue.com
229232
// @connect raw.githubusercontent.com
@@ -255,6 +258,13 @@
255258

256259
(async () => {
257260

261+
// Hide GF alert on GitHub if found
262+
if (location.host == 'github.com') {
263+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
264+
.find(alert => alert.textContent.includes('Greasy Fork'))
265+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
266+
}
267+
258268
// Init ENV context
259269
const env = {
260270
browser: {

chatgpt-auto-refresh/greasemonkey/chatgpt-auto-refresh.user.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
// @description:zu *NGOKUPHEPHA* susa ukusetha kabusha ingxoxo yemizuzu eyi-10 + amaphutha enethiwekhi ahlala njalo + Ukuhlolwa kwe-Cloudflare ku-ChatGPT.
221221
// @author Adam Lui
222222
// @namespace https://github.com/adamlui
223-
// @version 2025.4.2
223+
// @version 2025.4.11
224224
// @license MIT
225225
// @icon https://cdn.jsdelivr.net/gh/adamlui/chatgpt-auto-refresh@f11a0a8/assets/images/icons/openai/black/icon48.png
226226
// @icon64 https://cdn.jsdelivr.net/gh/adamlui/chatgpt-auto-refresh@f11a0a8/assets/images/icons/openai/black/icon64.png
@@ -235,6 +235,9 @@
235235
// @compatible ghost
236236
// @compatible qq
237237
// @match *://chatgpt.com/*
238+
// @match *://github.com/adamlui/chatgpt-auto-refresh*
239+
// @match *://github.com/adamlui/ai-web-extensions/*/chatgpt-auto-refresh*
240+
// @match *://github.com/adamlui/userscripts/*/chatgpt-auto-refresh*
238241
// @connect cdn.jsdelivr.net
239242
// @connect chatgptautorefresh.com
240243
// @connect raw.githubusercontent.com
@@ -263,6 +266,13 @@
263266

264267
(async () => {
265268

269+
// Hide GF alert on GitHub if found
270+
if (location.host == 'github.com') {
271+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
272+
.find(alert => alert.textContent.includes('Greasy Fork'))
273+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
274+
}
275+
266276
// Init ENV context
267277
const env = {
268278
browser: {

chatgpt-auto-talk/greasemonkey/chatgpt-auto-talk.user.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,14 @@
225225
// @description:zu Dlala izimpendulo ze-ChatGPT ngokuzenzakalela
226226
// @author Adam Lui
227227
// @namespace https://github.com/adamlui
228-
// @version 2025.4.2
228+
// @version 2025.4.11
229229
// @license MIT
230230
// @icon https://cdn.jsdelivr.net/gh/adamlui/chatgpt-auto-talk@9f1ed3c/assets/images/icons/openai/black/icon48.png
231231
// @icon64 https://cdn.jsdelivr.net/gh/adamlui/chatgpt-auto-talk@9f1ed3c/assets/images/icons/openai/black/icon64.png
232232
// @match *://chatgpt.com/*
233+
// @match *://github.com/adamlui/chatgpt-auto-talk*
234+
// @match *://github.com/adamlui/ai-web-extensions/*/chatgpt-auto-talk*
235+
// @match *://github.com/adamlui/userscripts/*/chatgpt-auto-talk*
233236
// @connect cdn.jsdelivr.net
234237
// @connect chatgptautotalk.com
235238
// @connect raw.githubusercontent.com
@@ -257,6 +260,13 @@
257260

258261
(async () => {
259262

263+
// Hide GF alert on GitHub if found
264+
if (location.host == 'github.com') {
265+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
266+
.find(alert => alert.textContent.includes('Greasy Fork'))
267+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
268+
}
269+
260270
// Init ENV context
261271
const env = {
262272
browser: {

chatgpt-infinity/greasemonkey/chatgpt-infinity.user.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
// @description:zh-TW 從無所不知的 ChatGPT 生成無窮無盡的答案 (用任何語言!)
200200
// @author Adam Lui
201201
// @namespace https://github.com/adamlui
202-
// @version 2025.4.6
202+
// @version 2025.4.11
203203
// @license MIT
204204
// @icon https://cdn.jsdelivr.net/gh/adamlui/chatgpt-infinity@8df6f33/assets/images/icons/infinity-symbol/circled/with-robot/icon48.png
205205
// @icon64 https://cdn.jsdelivr.net/gh/adamlui/chatgpt-infinity@8df6f33/assets/images/icons/infinity-symbol/circled/with-robot/icon64.png
@@ -215,6 +215,9 @@
215215
// @compatible qq
216216
// @compatible whale
217217
// @match *://chatgpt.com/*
218+
// @match *://github.com/adamlui/chatgpt-infinity*
219+
// @match *://github.com/adamlui/ai-web-extensions/*/chatgpt-infinity*
220+
// @match *://github.com/adamlui/userscripts/*/chatgpt-infinity*
218221
// @connect cdn.jsdelivr.net
219222
// @connect chatgptinfinity.com
220223
// @connect raw.githubusercontent.com
@@ -247,6 +250,13 @@
247250

248251
(async () => {
249252

253+
// Hide GF alert on GitHub if found
254+
if (location.host == 'github.com') {
255+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
256+
.find(alert => alert.textContent.includes('Greasy Fork'))
257+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
258+
}
259+
250260
// Init ENV context
251261
const env = {
252262
browser: {

chatgpt-widescreen/greasemonkey/chatgpt-widescreen-mode.user.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
// @description:zu Thuthukisa iChatGPT ngemodi zesikrini ezibanzi/egcwele/ephezulu + imodi yokuvimbela i-spam. Futhi isebenza ku-perplexity.ai + poe.com!
236236
// @author Adam Lui
237237
// @namespace https://github.com/adamlui
238-
// @version 2025.4.7.3
238+
// @version 2025.4.11
239239
// @license MIT
240240
// @icon https://cdn.jsdelivr.net/gh/adamlui/chatgpt-widescreen@844b16e/assets/images/icons/widescreen-robot-emoji/icon48.png
241241
// @icon64 https://cdn.jsdelivr.net/gh/adamlui/chatgpt-widescreen@844b16e/assets/images/icons/widescreen-robot-emoji/icon64.png
@@ -251,6 +251,9 @@
251251
// @match *://chatgpt.com/*
252252
// @match *://*.perplexity.ai/*
253253
// @match *://poe.com/*
254+
// @match *://github.com/adamlui/chatgpt-widescreen*
255+
// @match *://github.com/adamlui/ai-web-extensions/*/chatgpt-widescreen*
256+
// @match *://github.com/adamlui/userscripts/*/chatgpt-widescreen*
254257
// @connect cdn.jsdelivr.net
255258
// @connect chatgptwidescreen.com
256259
// @connect raw.githubusercontent.com
@@ -287,6 +290,13 @@
287290

288291
(async () => {
289292

293+
// Hide GF alert on GitHub if found
294+
if (location.host == 'github.com') {
295+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
296+
.find(alert => alert.textContent.includes('Greasy Fork'))
297+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
298+
}
299+
290300
// Init ENV context
291301
const env = {
292302
browser: {

duckduckgpt/greasemonkey/duckduckgpt.user.js

Lines changed: 12 additions & 1 deletion
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.4.10.4
151+
// @version 2025.4.11
152152
// @license MIT
153153
// @icon https://cdn.jsdelivr.net/gh/KudoAI/duckduckgpt@06af076/assets/images/icons/duckduckgpt/icon48.png
154154
// @icon64 https://cdn.jsdelivr.net/gh/KudoAI/duckduckgpt@06af076/assets/images/icons/duckduckgpt/icon64.png
@@ -182,6 +182,10 @@
182182
// @compatible waterfox
183183
// @compatible whale
184184
// @match *://duckduckgo.com/?*
185+
// @match *://github.com/KudoAI/duckduckgpt*
186+
// @match *://github.com/kudoai/duckduckgpt*
187+
// @match *://github.com/adamlui/ai-web-extensions/*/duckduckgpt*
188+
// @match *://github.com/adamlui/userscripts/*/duckduckgpt*
185189
// @include https://auth0.openai.com
186190
// @connect am.aifree.site
187191
// @connect api.binjie.fun
@@ -4395,6 +4399,13 @@
43954399
['rpg', 'rpw'].forEach(cssType => // rising particles
43964400
document.head.append(dom.create.style(GM_getResourceText(`${cssType}CSS`))))
43974401

4402+
// Hide GF alert on GitHub if found
4403+
if (location.host == 'github.com') {
4404+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
4405+
.find(alert => alert.textContent.includes('Greasy Fork'))
4406+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
4407+
}
4408+
43984409
// Create/classify/fill feedback FOOTER
43994410
const appFooter = dom.create.elem('footer', { class: 'fade-in anchored-hidden' })
44004411
let footerContent = dom.create.anchor('#', app.msgs.link_shareFeedback, { target: '_self' })

googlegpt/greasemonkey/googlegpt.user.js

Lines changed: 12 additions & 1 deletion
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.4.10.4
152+
// @version 2025.4.11
153153
// @license MIT
154154
// @icon https://cdn.jsdelivr.net/gh/KudoAI/googlegpt@59409b2/assets/images/icons/googlegpt/black/icon48.png
155155
// @icon64 https://cdn.jsdelivr.net/gh/KudoAI/googlegpt@59409b2/assets/images/icons/googlegpt/black/icon64.png
@@ -372,6 +372,10 @@
372372
// @match *://*.google.co.zm/search*
373373
// @match *://*.google.co.zw/search*
374374
// @match *://*.google.cat/search*
375+
// @match *://github.com/KudoAI/googlegpt*
376+
// @match *://github.com/kudoai/googlegpt*
377+
// @match *://github.com/adamlui/ai-web-extensions/*/googlegpt*
378+
// @match *://github.com/adamlui/userscripts/*/googlegpt*
375379
// @include https://auth0.openai.com
376380
// @connect am.aifree.site
377381
// @connect api.binjie.fun
@@ -4596,6 +4600,13 @@
45964600
['rpg', 'rpw'].forEach(cssType => // rising particles
45974601
document.head.append(dom.create.style(GM_getResourceText(`${cssType}CSS`))))
45984602

4603+
// Hide GF alert on GitHub if found
4604+
if (location.host == 'github.com') {
4605+
const gfAlert = [...document.querySelectorAll('.markdown-alert')]
4606+
.find(alert => alert.textContent.includes('Greasy Fork'))
4607+
return !gfAlert ? undefined : gfAlert.style.display = 'none'
4608+
}
4609+
45994610
// APPEND to Google
46004611
const centerCol = document.querySelector('#center_col') || document.querySelector('#main')
46014612
const appDivParent = env.browser.isMobile ? centerCol

0 commit comments

Comments
 (0)