Greasy Fork is available in English.

Dave Cobb Goodface

Marks all faces as "good" to begin with

// ==UserScript==
// @name         Dave Cobb Goodface
// @version      0.3
// @description  Marks all faces as "good" to begin with
// @author       You
// @match        https://dbxtagger.appspot.com/annotate*
// @match        https://s3.amazonaws.com/mturk_bulk/hits/*
// @grant        none
// @namespace https://greasyfork.org/users/710
// ==/UserScript==

setTimeout(function() {$("label[for^=goodface]").each(function() { $(this).parent().click(); });},1000);