您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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}); } }); });