您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Separate sponsored jobs from search making them appear yellow. Useful to distinguish those jobs you've not searched, but are in the results just because they're sponsored.
当前为
// ==UserScript== // @name Separate sponsored jobs from search // @version 1.1 // @grant none // @description Separate sponsored jobs from search making them appear yellow. Useful to distinguish those jobs you've not searched, but are in the results just because they're sponsored. // @author StephenP // @namespace StephenP // @match http://*.indeed.com/* // @match http://www.indeed.fr/* // @match http://www.indeed.ca/* // @match http://www.indeed.co.uk/* // @match http://www.indeed.co.in/* // @match http://www.indeed.com.pe/* // @match http://www.indeed.hk/* // @match http://www.indeed.com.sg/* // @match http://www.indeed.jp/* // @match http://www.indeed.amsterdam/* // @match http://www.indeed.quebec/* // @match http://www.indeed.osaka/* // @match http://www.indeed.de/* // @match http://www.indeed.sg/* // @match http://www.indeed.tirol/* // @match http://www.indeed.scot/* // @match http://www.indeed.tw/* // @match http://www.indeed.co.il/* // @match http://www.indeed.co.at/* // @match http://www.indeed.com.tr/* // @match http://www.indeed.com.ua/* // @match http://www.indeed.us/* // @match https://*.indeed.com/* // @match https://www.indeed.fr/* // @match https://www.indeed.ca/* // @match https://www.indeed.co.uk/* // @match https://www.indeed.co.in/* // @match https://www.indeed.com.pe/* // @match https://www.indeed.hk/* // @match https://www.indeed.com.sg/* // @match https://www.indeed.jp/* // @match https://www.indeed.amsterdam/* // @match https://www.indeed.quebec/* // @match https://www.indeed.osaka/* // @match https://www.indeed.de/* // @match https://www.indeed.sg/* // @match https://www.indeed.tirol/* // @match https://www.indeed.scot/* // @match https://www.indeed.tw/* // @match https://www.indeed.co.il/* // @match https://www.indeed.co.at/* // @match https://www.indeed.com.tr/* // @match https://www.indeed.com.ua/* // @match https://www.indeed.us/* // ==/UserScript== (function(){ var site=window.location.href.toString(); var sponsoredJobs,i; if(site.includes("/m/")){ sponsoredJobs=document.getElementsByClassName("sponsoredJob"); for(i=0;i<sponsoredJobs.length;i++){ sponsoredJobs[i].style.backgroundColor="#FFFFBB"; } } else{ try{ sponsoredJobs=document.getElementsByClassName("sponsoredGray"); for(i=0;i<sponsoredJobs.length;i++){ sponsoredJobs[i].parentNode.parentNode.parentNode.parentNode.style.backgroundColor="#FFFFBB"; } } catch(err){ console.error("Userscript stopper runnig. Error: "+err); } } })();