Last active
September 17, 2024 01:05
-
-
Save nezzzumi/585ad64c70ecb5046c2fbadef958b081 to your computer and use it in GitHub Desktop.
remove burn fire
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name New script bsky.app | |
// @namespace Violentmonkey Scripts | |
// @match https://bsky.app/* | |
// @grant none | |
// @version 1.0 | |
// @author - | |
// @description 14/09/2024, 23:03:23 | |
// ==/UserScript== | |
function removeBurnFire() { | |
[...document.querySelectorAll("video")].forEach(v => { | |
if (v.src === 'https://t.gifs.bsky.app/i7f0rHKUCEoAAAP3/burn-fire.webm') { | |
v.remove(); | |
} | |
}) | |
} | |
setInterval(removeBurnFire, 300); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment