Skip to content

Instantly share code, notes, and snippets.

@franzenzenhofer
Created March 14, 2019 12:22
Show Gist options
  • Save franzenzenhofer/585af21b0d76574933d2733d3d625b85 to your computer and use it in GitHub Desktop.
Save franzenzenhofer/585af21b0d76574933d2733d3d625b85 to your computer and use it in GitHub Desktop.
change any google page to english language
let l = window.location;
const p = new URLSearchParams(l.search);
p.set('hl','en');
window.location.search="?"+p.toString();
//minified bookmarklet code
//javascript:let l=window.location,p=new URLSearchParams(l.search);p.set("hl","en");window.location.search="?"+p.toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment