Ali Auto Global

auto open global version of the page

目前为 2018-12-31 提交的版本。查看 最新版本

// ==UserScript==
// @name         Ali Auto Global
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  auto open global version of the page
// @author       ksevelyar
// @match        *.aliexpress.com/*
// @grant        none
// ==/UserScript==

(function () {
  const globalLink = document.querySelector('[data-role=goto-globalsite]');
  if (!globalLink) { return; }

  const aliGlobalDomain = 'https://www.aliexpress.com';
  globalLink.href = aliGlobalDomain + window.location.pathname;
  globalLink.click();
}());

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址