Skip to content

Instantly share code, notes, and snippets.

@apla
Last active March 21, 2020 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apla/85394a2614a2cfae7d7d9962c7a05b9d to your computer and use it in GitHub Desktop.
Save apla/85394a2614a2cfae7d7d9962c7a05b9d to your computer and use it in GitHub Desktop.
Aliexpress switch to global

Switching from russian to english version for aliexpress

Open Console from Developer tools on *.aliexpress.com, then enter

document.cookie = document.cookie.split ('; ').filter (v => v.match (/^aep_usuc_f/))[0].replace ('site=rus', 'site=glo').replace ('b_locale=ru_RU', 'b_locale=en_US') + '; domain=.aliexpress.com';
document.cookie = document.cookie.split ('; ').filter (v => v.match (/^intl_locale/))[0].replace ('ru_RU', 'en_US') + '; domain=.aliexpress.com';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment