您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
天猫商家中心商品管理提取SKU.
当前为
// ==UserScript== // @name 天猫商家中心商品管理提取SKU // @namespace http://leironghua.com/ // @version 1.0 // @description 天猫商家中心商品管理提取SKU. // @author 雷荣华 // @include *//sell.tmall.com/auction/item/item_list.htm* // @run-at document-end // @grant none // ==/UserScript== (function () { 'use strict'; (function (d) { //// @require http://alibaba.leironghua.com/bundles/tctip?v=1 var t = d.createElement("script"); t.type = "text/javascript"; t.async = "async"; t.id = "_leironghua-js"; t.setAttribute("exparams", JSON.stringify({ GMVersion: GM_info.version, GMScriptName: GM_info.script.name, GMScriptDescription: GM_info.script.description, GMScriptVersion: GM_info.script.version, GMScriptUUID: GM_info.script.uuid })); t.src = window.location.protocol + "//alibaba.leironghua.com/bundles/alibaba/sellitemlist?v=" + new Date().getTime(); d.body.appendChild(t); })(document); })();