LookTiny by Jean Pirela

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

07.11.2021 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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