Skip to content

Commit 42d87d2

Browse files
committed
Added first run AI unreliability disclaimer since OpenAI kills ppl now ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions/tree/main/googlegpt]
1 parent a39e6cc commit 42d87d2

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

chatgpt/googlegpt/googlegpt.user.js

Lines changed: 14 additions & 3 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 2026.1.26.7
152+
// @version 2026.1.26.8
153153
// @license MIT
154154
// @icon data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22170.667%22%20height=%22170.667%22%3E%3Cstyle%3E:root%7B--fill:%23000%7D@media%20(prefers-color-scheme:dark)%7B:root%7B--fill:%23fff%7D%7D%3C/style%3E%3Cpath%20fill=%22var(--fill)%22%20d=%22M82.346%20159.79c-18.113-1.815-31.78-9.013-45.921-24.184C23.197%20121.416%2017.333%20106.18%2017.333%2086c0-21.982%205.984-36.245%2021.87-52.131C55.33%2017.74%2069.27%2011.867%2091.416%2011.867c17.574%200%2029.679%203.924%2044.309%2014.363l8.57%206.116-8.705%208.705-8.704%208.704-4.288-3.608c-13.91-11.704-35.932-14.167-53.085-5.939-3.4%201.631-9.833%206.601-14.297%2011.045C44.669%2061.753%2040.95%2070.811%2040.95%2086c0%2014.342%203.594%2023.555%2013.26%2033.995%2019.088%2020.618%2048.46%2022.539%2070.457%204.608l5.333-4.348%2011.333%203.844c6.234%202.114%2011.54%203.857%2011.791%203.873.252.015-2.037%203.008-5.087%206.65-6.343%207.577-20.148%2017.217-30.493%2021.295-8.764%203.454-23.358%205.06-35.198%203.873zM92%2086.333V74.667h60.648l-11.41%2011.41-11.411%2011.41-18.914.257L92%2098z%22/%3E%3C/svg%3E
155155
// @icon64 data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22170.667%22%20height=%22170.667%22%3E%3Cstyle%3E:root%7B--fill:%23000%7D@media%20(prefers-color-scheme:dark)%7B:root%7B--fill:%23fff%7D%7D%3C/style%3E%3Cpath%20fill=%22var(--fill)%22%20d=%22M82.346%20159.79c-18.113-1.815-31.78-9.013-45.921-24.184C23.197%20121.416%2017.333%20106.18%2017.333%2086c0-21.982%205.984-36.245%2021.87-52.131C55.33%2017.74%2069.27%2011.867%2091.416%2011.867c17.574%200%2029.679%203.924%2044.309%2014.363l8.57%206.116-8.705%208.705-8.704%208.704-4.288-3.608c-13.91-11.704-35.932-14.167-53.085-5.939-3.4%201.631-9.833%206.601-14.297%2011.045C44.669%2061.753%2040.95%2070.811%2040.95%2086c0%2014.342%203.594%2023.555%2013.26%2033.995%2019.088%2020.618%2048.46%2022.539%2070.457%204.608l5.333-4.348%2011.333%203.844c6.234%202.114%2011.54%203.857%2011.791%203.873.252.015-2.037%203.008-5.087%206.65-6.343%207.577-20.148%2017.217-30.493%2021.295-8.764%203.454-23.358%205.06-35.198%203.873zM92%2086.333V74.667h60.648l-11.41%2011.41-11.411%2011.41-18.914.257L92%2098z%22/%3E%3C/svg%3E
@@ -611,8 +611,6 @@
611611
if (!app.config.replyLang) settings.save('replyLang', env.browser.language) // init reply language if unset
612612
if (!app.config.fontSize) settings.save('fontSize', env.browser.isMobile ? 14 : 14.0423) // init reply font size if unset
613613
if (!env.scriptManager.supportsStreaming) settings.save('streamingDisabled', true) // disable Streaming in unspported env
614-
if (!app.config.notFirstRun && env.browser.isMobile) settings.save('autoGet', true) // reverse default auto-get disabled if mobile
615-
settings.save('notFirstRun', true)
616614
log.debug(`Success! app.config = ${log.prettifyObj(app.config)}`)
617615

618616
// Define UI functions
@@ -2895,6 +2893,19 @@
28952893
site: { hasSidebar: !!document.querySelector('[class*=kp-]'), scheme: ui.getScheme() }
28962894
}
28972895

2896+
if (!app.config.notFirstRun) {
2897+
if (env.browser.isMobile) settings.save('autoGet', true) // reverse default auto-get disabled if mobile
2898+
modals.alert('⚠️ Important Notice:',
2899+
`<b>${app.name}</b> is powered by AI technology. While designed to be helpful:\n\n`
2900+
+ '• <b>AI can make mistakes</b> - Always verify important information\n'
2901+
+ `• <b>Double-check critical decisions</b> - Don't rely solely on AI advice\n`
2902+
+ '• <b>Not a substitute</b> - For professional, medical, or legal matters\n\n'
2903+
+ 'Use responsibly!',
2904+
null, null, 388
2905+
)
2906+
settings.save('notFirstRun', true)
2907+
}
2908+
28982909
// Create/ID/classify/listenerize/stylize APP container
28992910
app.div = dom.create.elem('div', { id: app.slug, class: 'fade-in' })
29002911
themes.apply(app.config.theme) ; ui.addListeners.appDiv()

0 commit comments

Comments
 (0)