Remove localized links to Aliexpress and replaces them to English site
< Feedback on Aliexpress remove localized links
I tested on firefox. Everything works fine. On google chrome for some reason it stopped working.
fixed
How is it supposed to work ? I install script, refresh page and nothing changes, go to global version and it brings me to https://www.aliexpress.com/?spm=2114.30010708.1000001.7.PcFh8S
Once you have switched to the global version. You never should redirect to translated page.
Can you fix this autologin script ?
// ==UserScript==
// @name Aliexpress autologin
// @namespace aliexpressautologin
// @include https://passport.alibaba.com/*
// @version 1
// @grant none
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
introduced in GM 1.0. It restores the sandbox.
*/
var ms = 1000;
function secondl() {
var u,p,b;
u = document.getElementById('fm-login-id');
if (u != null) {
u.value = 'username';
}
p = document.getElementById('fm-login-password');
if (p != null) {
p.value = 'password';
}
if (u != null && p != null) {
b = document.getElementById('fm-login-submit');
if (b != null) {
b.click();
}
}
}
setTimeout(secondl, ms);
not working
any updates ?