您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Overwrites window.open method used for the popup so no popup will be opened. You can disable the window.open overwrite function and the popup will be closed during load thanks to the @run-at document-start property.
// ==UserScript== // @name Stepstone.de: Block popup and slider // @namespace localhost // @description Overwrites window.open method used for the popup so no popup will be opened. You can disable the window.open overwrite function and the popup will be closed during load thanks to the @run-at document-start property. // @include *.stepstone.* // @run-at document-end // @author lukie80 // @copyright Creative Commons Attribution-ShareAlike 3.0 (CC-BY-SA 3.0) // @license http://creativecommons.org/licenses/by-sa/3.0/ // @version 1.2 // @lastupdated 2016.06.15 // // ==/UserScript== //------------------------------------------------------------------------------------------------------------------- // Overwrite window.open function on base page - prevents popup window.open = function(){ return; }; // Close this window if it is a popup - not necessary, keep here for educational purposes or backup var titles = new Array( "Aktuelle Jobs zu Ihrer Suche", //you can put other titles of the popup window in this array "Jobs per E−Mail", "Jobs per E−Mail" //this "minus" is not the minus character ); for (var i = 0; i < titles.length; i++){ if (document.title == titles[i]){ window.close(); } } //delete slider if(document.getElementById("jaSlider")){ document.getElementById("jaSlider").remove(); } if(document.getElementsByClassName("slider affix-top")[0]){ document.getElementsByClassName("slider affix-top")[0].remove(); } //-------------------------------------------------------------------------------------------------------------------
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址