Google Translate Filter
v2.4.1 · updated 2026-04-02 · by HatScripts · 188,400 installs
Removes auto-translated spam results from Google searches so you only see pages originally written in your language.
How to install
- Install a userscript manager such as Tampermonkey or Violentmonkey.
- Click "Install script", or paste the copied install URL into the manager.
- Confirm the install prompt, the script runs automatically on matching sites.
Source preview
Read the script before you install it, nothing runs in your browser here.
1// ==UserScript==2// @name Google Translate Filter3// @namespace https://hatscripts.com/4// @version 2.4.15// @description Removes auto-translated spam results from Google searches so you only see pages originally written in your language.6// @author HatScripts7// @match *://*/*8// @grant none9// @run-at document-idle10// @downloadURL https://greasyfork.org/scripts/google-translate-filter/code/script.user.js11// @supportURL https://github.com/HatScripts/google-translate-filter12// ==/UserScript==1314'use strict';1516const TRANSLATED = /translate\.goog|translated by google/i;1718function pruneResults() {19 for (const result of document.querySelectorAll('div.g')) {20 const link = result.querySelector('a[href]');21 if (link && TRANSLATED.test(link.href + result.textContent)) {22 result.remove();23 }24 }25}2627new MutationObserver(pruneResults).observe(document.body, { childList: true, subtree: true });28pruneResults();My install activity
No activity yet on this device. Copying the install URL or opening the source will show up here.
Changelog
v2.4.1
2026-04-02- Filter machine-translated results on the Images tab
- Reduce false positives for bilingual pages
v2.4.0
2026-01-02- Add per-language allow list
v2.3.0
2025-08-02- Rewrite matcher for the new results markup
Compare versions
−Rewrite matcher for the new results markup
+Filter machine-translated results on the Images tab
+Reduce false positives for bilingual pages
2025-08-02 → 2026-04-02
My data
Favorites and install history live only on this device. Export them as JSON, or import a previous backup.
Related scripts
Direct Link Unwrapper
Strips redirect and tracking wrappers from links on Google, Facebook, Twitter and Steam so hovering shows the real destination.
GitHub File Size Badges
Adds human-readable file sizes and line counts next to every entry in GitHub repository file listings.
Copy As Markdown
Adds a keyboard shortcut that copies the current page title and URL as a formatted Markdown link.