Greasy Fork

SGW Fixer - Users

Contains user definitions for other scripts

目前为 2016-06-17 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/scripts/13969/132073/SGW%20Fixer%20-%20Users.js

// ==UserScript==
// @name        SGW Fixer - Users
// @namespace   https://greasyfork.org
// @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 = poster['name'].toUpperCase().replace(/\s/g, "");
    posters[poster]['shortName'] = shortName;
}

console.dir(posters);*/