您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Will refresh "Manage Inventory" page every 16mins, click all "Match Low Price" buttons,
// ==UserScript== // @name amazonSellerMatchLowPrice // @namespace https://gf.qytechs.cn/users/98044 // @version 1.6 // @description Will refresh "Manage Inventory" page every 16mins, click all "Match Low Price" buttons, // @description then all the "Save" buttons. // @author Davinna Mayawen // @icon https://media.tenor.com/images/e5b48218f76d06c730cae7f2928ad2c7/tenor.gif // @include *sellercentral.amazon.com/inventory?viewId=PRICING* // @require https://code.jquery.com/jquery-3.6.0.min.js // @license https://opensource.org/licenses/MIT // @copyright Davinna Mayawen 2017-2021 // ==/UserScript== $(document).ready(function(){ 'use strict'; //change background color document.body.style.backgroundColor = "#9DA4AA"; $("div.mt-filter-selection").css("background-color", "#9DA4AA"); setInterval(function(){matchLowPrice()}, 60000);//every minuite setInterval(function(){pageReload()}, 300000);//every 5 minutes }); function matchLowPrice() { const $matchLowPriceButtons = $('button span.a-dropdown-prompt:visible'); for (var i = 0; i < $matchLowPriceButtons.length; i++) { $matchLowPriceButtons[i].click(); } //console.log('clicked'); } function pageReload() { //console.log('reloaded'); window.location.reload(true); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址