您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the annoying sale tags while searching on AliExpress
// ==UserScript== // @name AliExpress Sale Remover // @namespace aliexpress.com // @version 0.1 // @description Remove the annoying sale tags while searching on AliExpress // @author Evan Brown // @match *://*.aliexpress.com/w/* // @grant none // ==/UserScript== (function(){ 'use strict'; function sailThatBye() { //.mk_mh selects all of the useless stuff ("Save $$$!") //I kept the .mk_ay, since it contains things important like quantity discounts const uselessElements = this.document.querySelectorAll('.mk_mh:not(.mk_ay)') // Remove specific SALE-related icons/images const uselessSaleText = document.querySelectorAll( 'img[src="https://ae01.alicdn.com/kf/Sb6a0486896c44dd8b19b117646c39e36J/116x64.png"], ' + 'img[src="https://ae01.alicdn.com/kf/S0f1bc1aeb2ab4de98568b86f99bcd0991/42x60.png"], ' + // SALE tag 'img[src="https://ae01.alicdn.com/kf/Sa7759f32a8094c98b4dbdc082a876d4dq/60x60.png"]' //Fire tag ); uselessElements.forEach(el => el.remove()); uselessSaleText.forEach(el => el.remove()); } //Initial page load listener window.addEventListener("load", sailThatBye, false) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址