FASTEST 2025 Google Translate

Super-fast Google Translate with instant SPA/AJAX support, no hiding

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Author
insta/@WaterDustLab
Daily installs
0
Total installs
9
Ratings
0 0 0
Version
1.2
Created
2025-11-03
Updated
2025-11-03
Size
2.87 KB
License
N/A
Applies to
All sites

Translate all sites into English upon detection of different languages

🔥Key focuses:
Speed up: Async script loading, lazy init, minimal overhead.
Dynamic content: Use MutationObserver to detect and re-translate new elements instantly (e.g., for single-page apps like React/Vue where content loads via AJAX).
No toolbar hiding—let it show naturally if Google Translate decides to.
2️⃣ Core Optimizations
Faster init: Load script async, init only when ready, use pageLanguage 'auto' for quick detection.
Dynamic translation: MutationObserver watches for DOM changes and triggers re-translation on new content.
SPA/AJAX handling: Observer subtree/childList to catch async-loaded elements; call Google's translate methods on mutations.
Minimal footprint: No extra CSS, no observers for hiding—just for translation triggers.
Still Google Translate: Keeps the fast engine.
Note: Google Translate's API doesn't have a direct "re-translate" method for subsets, so i have simulated by re-initializing or using their internal refresh if available, but optimized to avoid full page reloads.