// ==UserScript== // @name 智联职位助手 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 屏蔽智联招聘列表中无用的公司与职位.可选择屏蔽该职位或者该公司. // @author L.Rain // @match http://sou.zhaopin.com/jobs/searchresult.ashx* // @match http://www.zhaopin.com/ // @match http://jobs.zhaopin.com/* // @grant none // @downloadURL none // ==/UserScript== //table页添加btn if (/sou\.zhaopin\.com/.test(location.href)) { //添加列表页删除按钮 $('.newlist_list_xlbtn').map(function (x, y) { $(y).after("
"); //$(document).delegate('button','click',function(){ // if($(this).hasClass('.close'))window.close(); //}); } else { $('#globalHeader,#footer,#wrapper,#adFilter').remove(); } function removegsmc() { for (var i in list) { table.map(function (x, y) { if ($(y).children('.gsmc').text() == i) { if (list[i][0] == ['ALL'] || list[i].includes($(y).children('.zwmc').text().trim())) { $(y).hide(); } } }); } }