您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Contains user definitions for other scripts
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/13969/132075/SGW%20Fixer%20-%20Users.js
// ==UserScript== // @name SGW Fixer - Users // @namespace http://greasyfork.icu // @include https://sellers.shopgoodwill.com/* // @include http://localhost/sgw.html // @version 1.4.0.2 // @description Contains user definitions for other scripts // @grant none // ==/UserScript== var posters = { "Alicia V" : { "name" : "Alicia", "delay" : 1, "dept" : "jewelry", }, "Hetal S" : { "name" : "Hetal", "duration" : 4, "delay" : 0, "dept" : "collectibles", }, "Jacob L" : { "name" : "Jacob", "skip" : "allow", "CM" : "yes", "delay" : 0, "duration" : 4, "debug" : true, "dept" : "collectibles", }, "Jackie C" : { "name" : "Jackie", "CM" : "yes", "delay" : 1, "duration" : 4, "dept" : "jewelry", }, "Jeff H" : { "name" : "Jeff", "skip" : "allow", "CM" : "BIN", "delay" : 0, "duration" : 4, "debug" : false, "dept" : "collectibles", "sup" : true, }, "Jeremy J" : { "name" : "Jeremy", "skip" : "allow", "duration" : 4, "CM" : "yes", "delay" : 0, "debug" : true, "dept" : "collectibles", }, "Jessica G" : { "name" : "Jessica", "delay" : 0, "dept" : "collectibles", }, "Joanne H" : { "name" : "Joanne", "delay" : 0, "dept" : "collectibles", }, "Kathy O" : { "name" : "Kathy", "skip" : "allow", "delay" : 0, "duration" : 4, "dept" : "collectibles", }, "Nick Q" : { "name" : "Nick", "delay" : 0, "dept" : "collectibles", "sup" : true, }, "Phalada X" : { "name" : "Phalada", "skip" : "allow", "CM" : "yes", "delay" : 0, "duration" : 4, "dept" : "collectibles", }, "Peter N" : { "name" : "Peter", "delay" : 0, "dept" : "collectibles", }, "Phillip S" : { "name" : "Phillip", "delay" : 0, "dept" : "collectibles", }, "Poppy P" : { "name" : "Poppy", "delay" : 0, "debug" : true, "dept" : "collectibles", }, "Tanya K" : { "name" : "Tanya", "delay" : 0, "dept" : "jewelry", "sup" : true, }, "Thomas L Butler" : { "name" : "Tom", "delay" : 0, "dept" : "collectibles", }, "Valerie W" : { "name" : "Valerie", "duration" : 4, "skip" : "allow", "CM" : "yes", "delay" : 0, "debug" : true, "dept" : "collectibles", }, } for (var poster in posters) { var shortName = posters[poster]['name'].toUpperCase().replace(/\s/g, ""); posters[poster]['shortName'] = shortName; } console.dir(posters);