您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Put a blur effect on your chats and avoid peeping toms
// ==UserScript== // @name WhatsApp privacity blur filter // @namespace http://tampermonkey.net/ // @version 0.2.1 // @author Facu | L4stIdi0t(updated dependencies) // @match https://web.whatsapp.com/ // @description Put a blur effect on your chats and avoid peeping toms // @icon https://www.google.com/s2/favicons?domain=whatsapp.com // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @require https://gitcdn.xyz/cdn/L4stIdi0t/whatsapp-privacity-blur/48d1d63ea60d5990c1eabc8b841a52b558455c33/userscript.js // @grant GM_addStyle // @run-at document-idle // @license Follow the licenses from the original makers, this is just an update to make it work again // ==/UserScript== //Change the 5px to the blur you want, higher number more blur waitForKeyElements ("._2nY6U > div", function(e) { var elemento = $(e[0].parentNode); elemento.css("filter", "blur(5px)"); }); //Change the 0px to how much blur when you hover over it GM_addStyle (` ._2nY6U { transition: .2s ease!important; } ._2nY6U:hover { filter: blur(0px)!important; } `)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址