您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
超级简历页面简化,页面修改前:简历过多时,查看不方便,并且简历名称过长时,会不显示,不方便查找简历!
当前为
// ==UserScript== // @name 超级简历页面简化 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 超级简历页面简化,页面修改前:简历过多时,查看不方便,并且简历名称过长时,会不显示,不方便查找简历! // @author You // @match https://www.wondercv.com/cvs // @icon https://files.wondercv.com/PC/cvs/myresume_red.png // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js // @grant GM_xmlhttpRequest // @grant GM_getResourceText // @grant GM_getValue // @grant GM_setValue // @grant GM_openInTab // @grant GM_download // @grant GM_info // @grant GM_registerMenuCommand // @license MIT // ==/UserScript== (function() { 'use strict'; let Container = document.createElement('div'); Container.id = "sp-ac-container"; Container.style.position="fixed" Container.style.left="10px" Container.style.top="60px" Container.style['z-index']="999999" Container.innerHTML =`<button id="myBtnX" style="position:absolute; left:30px; top:20px;background-color: #ffb741;color: white;width: 27px;height: 76px;padding:3px;"> 整理定位 </button> ` document.body.appendChild(Container); $('#myBtnX').click(function(){ // 内部的this指的是原生对象 // 使用jquery对象用 $(this) $(".content").remove(); $('.no-online-cv-box').remove(); $('.menu-box-wrapper').remove(); $(".sidebar").css('width', '100%'); $(".cv-item-wrapper").css('width', '100%'); $(".cv-item-title").css("max-width", "none"); $('.tab-content').css("height", "932px"); }) setTimeout(function(){ $('#myBtnX').click(); },1500); // Your code here... })();