Aliexpress remove localized links

Remove localized links to Aliexpress and replaces them to English site

< 腳本Aliexpress remove localized links的回應

提問/評論

§
發表於:2016-10-06

not working

any updates ?

Sendyx作者
§
發表於:2016-10-07

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

Sendyx作者
§
發表於:2016-10-07

fixed

§
發表於: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

Sendyx作者
§
發表於:2016-10-08

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

§
發表於: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);

發表回覆

登入以回復