🏠 Home 

Aliexpress remove localized links

Remove localized links to Aliexpress and replaces them to English site

< Feedback on Aliexpress remove localized links

Question/comment

§
Posted: 2016-10-06

not working

any updates ?

SendyxAuthor
§
Posted: 2016-10-07

I tested on firefox. Everything works fine. On google chrome for some reason it stopped working.

SendyxAuthor
§
Posted: 2016-10-07

fixed

§
Posted: 2016-10-07

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

SendyxAuthor
§
Posted: 2016-10-08

Once you have switched to the global version. You never should redirect to translated page.

§
Posted: 2016-11-12

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);

Post reply

Sign in to post a reply.