ÖSYM çıkan soruları ekrana sığdırma betiği - osym.gov.tr

4/11/2022, 11:53:13 AM

// ==UserScript==
// @name        ÖSYM çıkan soruları ekrana sığdırma betiği - osym.gov.tr
// @namespace   Violentmonkey Scripts
// @match       https://ais.osym.gov.tr/*
// @grant       none
// @version     1.1
// @author      kdemir
// @license MIT
// @description 4/11/2022, 11:53:13 AM
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
 
//shift+space kısayolu ile çalışır.
this.$ = this.jQuery = jQuery.noConflict(true);
$(document).ready(function()
{
    
 
  $("body").on("keydown", function(e){
  if(e.shiftKey && e.which == 32) {
    $("#button").click();
      $("#popupBlock").css({'width': 900});
    $("#popupBlock").css({'max-height': 2200});
    $("#popupBlock").css({'height': 1200});
    $("#popupBlock").css({'margin-top': 10});
    
    $(".cevap-soru-resim div").css({'max-height': 2200});
    
  }
});


 
  

  
});