惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
U
Unit 42
腾讯CDC
D
Docker
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
I
InfoQ
Jina AI
Jina AI
爱范儿
爱范儿
宝玉的分享
宝玉的分享
博客园 - Franky
G
Google Developers Blog
P
Proofpoint News Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Does Google Keep Changing My Language? (And How to Fi...
Samuel Thuku · 2026-05-17 · via DEV Community

Have you ever searched for something on your browser and suddenly Google decides you now speak a completely different language just because of where you are? 😂

Maybe you searched for a programming tutorial and got results in French.
Maybe you traveled somewhere and your browser started showing local language websites you never asked for.
Or maybe Google saw your IP address and thought:

“Ah yes, this person definitely wants everything translated.”

Meanwhile you are just trying to search in peace. 😭

The good news is that there’s a permanent fix.

Instead of letting Google guess your language and region based on your location, you can customize the Google search engine URL so your browser always forces:

  • English results
  • English interface
  • US-based search ranking
  • Minimal personalization
  • No annoying country redirects

And the best part?

It does NOT slow down your internet or increase latency.


The Permanent Fix

We are going to create a custom Google search engine URL.

Use this URL:

https://www.google.com/ncr/search?q=%s&hl=en&gl=us&lr=lang_en&pws=0

Enter fullscreen mode Exit fullscreen mode

What each part means:

hl=en

Enter fullscreen mode Exit fullscreen mode

Forces Google interface language to English.

gl=us

Enter fullscreen mode Exit fullscreen mode

Makes Google prioritize US-style search results.

lr=lang_en

Enter fullscreen mode Exit fullscreen mode

Prioritizes English-language pages only.

pws=0

Enter fullscreen mode Exit fullscreen mode

Reduces personalized search results.

ncr

Enter fullscreen mode Exit fullscreen mode

Means “No Country Redirect.”
Stops Google from redirecting you to country specific domains like:

  • google.fr
  • google.de
  • google.co.ke

Step-by-Step Setup Guide

Chrome

Open:

chrome://settings/searchEngines

Enter fullscreen mode Exit fullscreen mode

Click:

Add

Enter fullscreen mode Exit fullscreen mode

Then enter:

Search Engine:
Google English

Enter fullscreen mode Exit fullscreen mode

Shortcut:
g

Enter fullscreen mode Exit fullscreen mode

URL:
https://www.google.com/ncr/search?q=%s&hl=en&gl=us&lr=lang_en&pws=0

Enter fullscreen mode Exit fullscreen mode

Now click:

Save

Enter fullscreen mode Exit fullscreen mode

Then click the 3 dots beside the new search engine and choose:

Make Default

Enter fullscreen mode Exit fullscreen mode

Done ✅


Microsoft Edge

Open:

edge://settings/searchEngines

Enter fullscreen mode Exit fullscreen mode

Click:

Add

Enter fullscreen mode Exit fullscreen mode

Enter:

Search Engine:
Google English

Enter fullscreen mode Exit fullscreen mode

Shortcut:
g

Enter fullscreen mode Exit fullscreen mode

URL:
https://www.google.com/ncr/search?q=%s&hl=en&gl=us&lr=lang_en&pws=0

Enter fullscreen mode Exit fullscreen mode

Save it and set it as default.

Done ✅


Firefox

Open:

about:preferences#search

Enter fullscreen mode Exit fullscreen mode

Firefox handles this a little differently.

Create a new bookmark with this URL:

https://www.google.com/ncr/search?q=%s&hl=en&gl=us&lr=lang_en&pws=0

Enter fullscreen mode Exit fullscreen mode

Then assign a keyword like:

g

Enter fullscreen mode Exit fullscreen mode

Now whenever you type:

g your search here

Enter fullscreen mode Exit fullscreen mode

Firefox will use your custom Google setup.

Done ✅


Bonus Tip: Disable Browser Location Access

Even after changing the search URL, some browsers still share your location.

You can disable that too.

Chrome / Edge

Open:

chrome://settings/content/location

Enter fullscreen mode Exit fullscreen mode

or:

edge://settings/content/location

Enter fullscreen mode Exit fullscreen mode

Then choose:

Don't allow sites to see your location

Enter fullscreen mode Exit fullscreen mode

Done ✅


Final Result

After this setup:

  • Google stops changing languages randomly
  • Search results stay in English
  • Country redirects disappear
  • Results become more consistent
  • Your browser behaves the same no matter where you travel

No VPN required.
No extensions required.
No slowdown.

Just clean, predictable Google searches.


About the Author

Written by Samuel Thuku, a software engineer who enjoys solving annoying everyday tech problems, automating things that should have worked properly in the first place, and making the internet a little less chaotic one fix at a time. 😄