Created
March 14, 2019 12:22
-
-
Save franzenzenhofer/585af21b0d76574933d2733d3d625b85 to your computer and use it in GitHub Desktop.
change any google page to english language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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