LookTiny by Jean Pirela

Compact options to work more comfortably in the Look At Advertisements And Judge Them task (Appen).

Versione datata 07/11/2021. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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;');