您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds short link share button on Aliexpress without annoying query params. Check it out near item raiting & order counter! Old & new design supported!
// ==UserScript== // @name Aliexpress short link share button // @namespace opravdin.aliexpress // @version 1.1 // @description Adds short link share button on Aliexpress without annoying query params. Check it out near item raiting & order counter! Old & new design supported! // @homepageURL https://github.com/opravdin/aliexpress-share-userscript // @author Oleg Pravdin aka opravdin // @match *://*.aliexpress.com/item/* // @match *://aliexpress.com/item/* // @grant none // ==/UserScript== (function() { 'use strict'; // Settings var hostname = 'aliexpress.com' // uncomment line below to copy localized host instead of global // hostname = window.location.host var buttonText = `Copy product link` var buttonOnCopyText = `Copied?` // Appending CSS rules var css = document.createElement("style") css.type = "text/css" css.innerHTML = `.opravdin.share-link-button { float: right; border: 1px solid #e9e9e9; padding: 0 10px; margin: 0 20px; border-radius: 3px; cursor: pointer;}";` document.body.appendChild(css) // Generating button var mybtn = document.createElement("span") mybtn.className = "opravdin share-link-button" mybtn.innerHTML = buttonText const regex = /\/item\/(?:[^\/]*)\/([^?]*)/gm; const newregex = /\/item\/([^\?]*)/gm; let m; let link; // old aliexpress page link if ((m = regex.exec(window.location.href)) !== null) { document.getElementsByClassName("product-star-order")[0].appendChild(mybtn); link = `https://${hostname}/item/-/${m[1]}` } // Redesigned page format else if ((m = newregex.exec(window.location.href)) !== null) { document.getElementsByClassName("product-reviewer")[0].appendChild(mybtn); console.log(document.getElementsByClassName("product-reviewer")[0]) link = `https://${hostname}/item/${m[1]}` } // Adding handler var handler = function (event) { const el = document.createElement('textarea'); el.value = link; document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); mybtn.innerHTML = buttonOnCopyText setTimeout(function () {mybtn.innerHTML = buttonText}, 500) } mybtn.addEventListener("click", handler) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址