Evan J

Search for company news URL

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

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 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.

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

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!)

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.

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

// ==UserScript==
// @name        Evan J
// @description Search for company news URL
// @version       0.1
// @include       https://s3.amazonaws.com/mturk_bulk/hits/*
// @author        Cristo
// @copyright    2012+, You
// @namespace https://greasyfork.org/users/1973
// ==/UserScript==

var topBox = document.getElementsByClassName('highlight-box')[0];
var url = document.getElementsByTagName('b')[2];
document.getElementsByTagName('option')[1].selected = true;;
var sub = document.getElementById('submitButton');

topBox.style.display = "none";
var but = document.createElement("span");
but.style.color = "#1170A0";
but.style.textDecoration = "underline";
but.style.cursor = "pointer";
but.innerHTML = "Instructions"
topBox.parentNode.insertBefore(but,topBox);
but.addEventListener("mousedown",function() {
    if (topBox.style.display == "none") {
        topBox.style.display = "block";
    } else if (topBox.style.display == "block") {
        topBox.style.display = "none";
    }}, false);


document.addEventListener('keydown',function(i) {
    if (i.keyCode == 13) {//9
        sub.click();
    }}, false);
window.open(url.innerHTML);