Disabling Google's "Ai OvErViEw" nonsense
Page 1 of 1
LeoNatan
☢ NFOHump Despot ☢



Posts: 73220
Location: Ramat HaSharon, Israel 🇮🇱
PostPosted: Sat, 20th Sep 2025 20:53    Post subject: Disabling Google's "Ai OvErViEw" nonsense
In whatever browser you use, find the most recommended extension for user scripts, and add this script:

Code:
// ==UserScript==
// @name        Google in English
// @description This is your new file, start writing code
// @match       *://www.google.com/*
// @match       *://google.com/*
// @run-at document-start
// ==/UserScript==

const urlParams = new URLSearchParams(window.location.search);

let shouldUpdateParams = false

if(urlParams.get("hl") != "en") {
   urlParams.set("hl", "en");
    shouldUpdateParams = true;
}
if(urlParams.get("q") != null) {
    if(urlParams.get("q").includes("-\"AI Overview\"") == false) {
        urlParams.set("q", urlParams.get("q") + " -\"AI Overview\"");
      shouldUpdateParams = true;
    }
}

if(shouldUpdateParams) {
    window.location.search = urlParams;
}


Fucking retarded

Remove the first "if" if you don't want to always switch to English Google.
Back to top
Przepraszam
VIP Member



Posts: 14502
Location: Poland. New York.
PostPosted: Sat, 20th Sep 2025 23:24    Post subject:


Back to top
Page 1 of 1 All times are GMT + 1 Hour
NFOHump.com Forum Index - General chatter
Signature/Avatar nuking: none (can be changed in your profile)  


Display posts from previous:   

Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB 2.0.8 © 2001, 2002 phpBB Group