您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
悄咪咪!
// ==UserScript== // @name 南+隐藏图片 // @version 0.1 // @description 悄咪咪! // @author zfy2299 // @match *://www.spring-plus.net/* // @match *://www.level-plus.net/* // @icon https://www.google.com/s2/favicons?domain=spring-plus.net // @grant none // @require https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js // @namespace zfy2299_南+隐藏图片 // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { console.log('jquery引入成功'); let contentImg = $('th.r_one img'); $.each(contentImg, function(index, ele){ if(ele.onclick) { let imgSrc = ele.src; $(ele).replaceWith(`<div style='background: #76669d69;'><span style="color: #f00;font-weight: 900;">图片:</span><a href='${imgSrc}' target='_blank'>${imgSrc}</a></div>`); } }) }) window.onload = function () { console.log('脚本启动'); let userImg = document.querySelectorAll('.user-pic'); for (let item of userImg) { item.innerHTML = '头像'; } } // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址