Compact options to work more comfortably in the Look At Advertisements And Judge Them task (Appen).
As of
// ==UserScript==
// @name LookTiny by Jean Pirela
// @namespace https://www.facebook.com/jeanpirelag
// @version 1.5
// @description Compact options to work more comfortably in the Look At Advertisements And Judge Them task (Appen).
// @author Jean Pirela
// @match https*://view.appen.io/*
// @grant none
// ==/UserScript==
javascript:(()=>{let x=document.querySelectorAll('input[type="text"]');x.forEach((i) => {if (i.value.length === 0 || i.value === "Please write the answer") i.remove()})})()
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.well {display: none;');
addGlobalStyle('.cml-number h4 {display: none;');
addGlobalStyle('.cml-number {display: none;');
addGlobalStyle('.cml .legend {display: none;');
addGlobalStyle('.c-and-a-hide-wrapper {padding: 0px;');
addGlobalStyle('h5 {display: none;');
addGlobalStyle('.empty_box {padding: 10px;');
addGlobalStyle('.cml_field .instructions {display: none;');
addGlobalStyle('.img-polaroid {-webkit-box-shadow: none; border: none;');