PI Search (Hide instructions and mark first bubbles)

Quick Dirty Ugly

Verze ze dne 23. 01. 2015. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name 		PI Search (Hide instructions and mark first bubbles)
// @version    0.1
// @namespace    Space
// @description  Quick Dirty Ugly
// @author     Lowlife
// @include    https://s3.amazonaws.com/*
// @include    https://www.mturkcontent.com/*
// @copyright  2012+, You
// ==/UserScript==


var page = document.getElementById("mturk_form");
var div = page.getElementsByClassName("panel-body")[0];
div.style.display = "none";

function mas() {
    if (div.style.display == "none") {
        div.style.display = "block"
    } else if (div.style.display == "block") {
        div.style.display = "none"
    }
}


document.getElementById('Q1_5').checked = true;
document.getElementById('Q2_5').checked = true;
document.getElementById('Q3_5').checked = true;
document.getElementById('Q4_5').checked = true;
document.getElementById('Q5_5').checked = true;
document.getElementById('Q6_5').checked = true;