您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
一个油猴脚本, 将Boss直聘的未沟通岗位高亮, 同时可选隐藏已沟通岗位, 方便各位海投
// ==UserScript== // @name Boss直聘高亮未沟通, 隐藏已沟通 // @namespace http://tampermonkey.net/ // @version 0.8 // @description 一个油猴脚本, 将Boss直聘的未沟通岗位高亮, 同时可选隐藏已沟通岗位, 方便各位海投 // @author cuicuiV5 // @match https://www.zhipin.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhipin.com // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function () { "use strict"; let previousURL = window.location.href; // 获取localstorage里面的数据 let cfg = { isHide: false, }; // 重试计数器 let retry_count = 0; if (localStorage.getItem("cuicui_cfg")) { cfg = JSON.parse(localStorage.getItem("cuicui_cfg")); } const init = () => { // 查找类名为start-chat-btn的按钮 const btns = document.querySelectorAll(".start-chat-btn"); console.log("成功获取到了要筛选的元素", btns); // 遍历这些按钮列表,查找innerText为立即沟通的按钮 // 如果btns的长度为零, 那么延迟再执行一次, 如果重试次数过多, 那么就不再重试 if (btns.length == 0 && retry_count < 10) { retry_count++; setTimeout(init, 300); } btns.forEach(btn => { if (btn.innerHTML == "立即沟通") { // 将他的父级元素的背景色更改为深色背景 btn.parentElement.parentElement.parentElement.parentElement.style.backgroundColor = "#e5f8f8"; } else if (cfg.isHide == true) { btn.parentElement.parentElement.parentElement.parentElement.style.display = "none"; } }); }; const checkURLChange = () => { const currentURL = window.location.href; if (currentURL !== previousURL) { // URL发生了变化 console.log("URL发生了变化:", currentURL); setTimeout(init, 300); previousURL = currentURL; // 更新previousURL retry_count = 0; } }; const insertDom = () => { // 添加选项按钮到页面上 const target = document.querySelector(".search-condition-wrapper"); target.insertAdjacentHTML( "beforeend", ` <input type="checkbox" id="isHideChatted"> <label for="isHideChatted">是否隐藏已沟通</label>`, ); // 给复选框绑定事件 // 先获取元素 const checkbox = document.querySelector("#isHideChatted"); checkbox.checked = cfg.isHide; checkbox.addEventListener("click", () => { console.log("切换显示隐藏", checkbox.checked); cfg.isHide = checkbox.checked; // 写入localStorage localStorage.setItem("cuicui_cfg", JSON.stringify(cfg)); init(); }); }; setTimeout(init, 300); setTimeout(insertDom, 1000); // 每隔一段时间检查一次URL变化 setInterval(checkURLChange, 1000); // 每秒检查一次 })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址