John Doe script

Makes Money

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

Advertisement:

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

Advertisement:

// ==UserScript==
// @name         John Doe script
// @namespace    https://greasyfork.org/users/144229
// @version      1.4
// @description  Makes Money
// @author       MasterNyborg
// @icon         http://i.imgur.com/wS1IQwd.jpg
// @include      *google.com/evaluation/endor*
// @include     https://www.youtube.com/embed?*
// @include     https://www.youtube.com/embed/*
// @exclude     *turkerhub.com*
// @require      http://code.jquery.com/jquery-latest.min.js
// ==/UserScript==

$(document).ready(function() {
    $('#yes-playable').click();
    $('input[name=visual-sensitivity][value=NOT_SENSITIVE]').click();
    $('input[name=audio-sensitivity][value=NOT_SENSITIVE_BUT_CONTAINS_FOREIGN_LANGUAGE]').click();
    $(document).keyup(function(event){
        if (event.which == 49 || event.which == 103){ //1 or keypad 7
            if ($('#yes-playable').is(':checked')){
                $('input[value=NOT_PLAYABLE]').click();
            }
            else{
                $('#yes-playable').click();
                $('input[name=visual-sensitivity][value=NOT_SENSITIVE]').click();
                $('input[name=audio-sensitivity][value=NOT_SENSITIVE_BUT_CONTAINS_FOREIGN_LANGUAGE]').click();
            }
        }else if (event.which == 50 || event.which == 104){ //2 or keypad 8
            if ($('input[name=visual-sensitivity][value=NOT_SENSITIVE]').is(':checked')){
                $('input[value=NOT_SENSITIVE_BUT_CONTAINS_FOREIGN_LANGUAGE][name=visual-sensitivity]').click();
            }else if ($('input[value=NOT_SENSITIVE_BUT_CONTAINS_FOREIGN_LANGUAGE][name=visual-sensitivity]').is(':checked')){
                $('input[value=SENSITIVE][name=visual-sensitivity]').click();
            }else if ($('input[value=SENSITIVE][name=visual-sensitivity]').is(':checked')){
                $('input[name=visual-sensitivity][value=NOT_SENSITIVE]').click();
            }
        }else if (event.which == 51 || event.which == 105){ //3 or keypad 9
            if ($('input[name=audio-sensitivity][value=NOT_SENSITIVE_BUT_CONTAINS_FOREIGN_LANGUAGE]').is(':checked')){
                $('input[value=NOT_SENSITIVE][name=audio-sensitivity]').click();
            }else if ($('input[value=NOT_SENSITIVE][name=audio-sensitivity]').is(':checked')){
                $('input[value=SENSITIVE][name=audio-sensitivity]').click();
            }else if ($('input[value=SENSITIVE][name=audio-sensitivity]').is(':checked')){
                $('input[name=audio-sensitivity][value=NOT_SENSITIVE_BUT_CONTAINS_FOREIGN_LANGUAGE]').click();
            }
        }else if (event.which == 13){
            document.querySelector(`[type="submit"]`).click();
        }
    });
    $('input[type=checkbox]').mouseenter(function() {
        if($(this).prop('checked')) {
            $(this).prop('checked', false);
            $(this).removeAttr('checked');
        }
        else{
            $(this).prop('checked', true);
            $(this).attr('checked',true);
        }
    });
    if (!(/[?&]autoplay=1/).test(location.search)) {
        document.querySelector(".ytp-large-play-button").click();
    }
});