Marks all faces as "good" to begin with
当前为
// ==UserScript==
// @name Dave Cobb Goodface
// @version 0.1
// @description Marks all faces as "good" to begin with
// @author You
// @match https://dbxtagger.appspot.com/annotate*
// @grant none
// @namespace https://greasyfork.org/users/710
// ==/UserScript==
$("label[for^=goodface]").each(function() { $(this).click(); });