NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Unblur Results theworker.co.il // @version 0.1 // @description מאפשר צפייה בתוצאות ללא צורך בהרשמה ב-theworker.co.il // @author securem3 // @match *://*.theworker.co.il/* // @includes *://theworker.co.il/* // @updateURL https://openuserjs.org/meta/securem3/Unblur_Results_theworker.co.il.meta.js // @copyright 2018, securem3 (https://openuserjs.org/users/securem3) // @license MIT // ==/UserScript== (function () { 'use strict'; var css = document.createElement("style"); css.type = "text/css"; css.innerHTML = ".container, .container-salary, .container-interview {filter: blur(0px); -webkit-filter: blur(0px);}"; document.body.appendChild(css); })();