Skip to content

Instantly share code, notes, and snippets.

@nezzzumi
Last active September 17, 2024 01:05
Show Gist options
  • Save nezzzumi/585ad64c70ecb5046c2fbadef958b081 to your computer and use it in GitHub Desktop.
Save nezzzumi/585ad64c70ecb5046c2fbadef958b081 to your computer and use it in GitHub Desktop.
remove burn fire
// ==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