Skip to content

Instantly share code, notes, and snippets.

@doceazedo
Created May 24, 2024 12:53
Show Gist options
  • Save doceazedo/d7ecc9d24fb5582b009af37f9933cdeb to your computer and use it in GitHub Desktop.
Save doceazedo/d7ecc9d24fb5582b009af37f9933cdeb to your computer and use it in GitHub Desktop.
Blur stickers
// ==UserScript==
// @name Blur stickers
// @namespace https://doceazedo.com/
// @version 2024-05-24
// @description Blur WhatsApp stickers
// @author DoceAzedo
// @match *://web.whatsapp.com/*
// @icon https://i.imgur.com/75yjGPK.jpeg
// @grant none
// ==/UserScript==
(function() {
'use strict';
const stylesheet = document.createElement("style");
stylesheet.innerText = `
img[alt="Figurinha sem etiqueta"]:not(:hover),
img[alt="Figurinha sem etiqueta"] + canvas:not(:hover) {
filter: blur(32px);
}
`;
document.head.appendChild(stylesheet);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment