coolusername [none/use name]@hexbear.net to chapotraphouse@hexbear.netEnglish · 3 days agoMusk was boosted in Overwatch by his daughterswww.thegamer.comexternal-linkmessage-square32fedilinkarrow-up197arrow-down11file-text
arrow-up196arrow-down1external-linkMusk was boosted in Overwatch by his daughterswww.thegamer.comcoolusername [none/use name]@hexbear.net to chapotraphouse@hexbear.netEnglish · 3 days agomessage-square32fedilinkfile-text
minus-squareBountifulEggnog [she/her]@hexbear.netlinkfedilinkEnglisharrow-up4·2 days agoWith a bit of fiddling deepseek gave me this tamper monkey script, appears to work on my end: spoiler // ==UserScript== // @name Lemmy Post Filter // @namespace http://tampermonkey.net/ // @version 0.1 // @description Remove Lemmy posts containing specific keywords in their titles // @author Deepseek // @match https://hexbear.net/* // @match https://*.hexbear.net/* // @match https://lemmygrad.ml/* // @match https://*.lemmygrad.ml/* // @grant none // ==/UserScript== (function() { 'use strict'; // Add your keywords here (case insensitive) const KEYWORDS = [ 'elon', 'musk' // Add more keywords as needed ]; // Function to check if title contains any of the keywords function containsKeyword(title) { if (!title) return false; const lowerTitle = title.toLowerCase(); return KEYWORDS.some(keyword => lowerTitle.includes(keyword.toLowerCase())); } // Function to process posts function filterPosts() { const posts = document.querySelectorAll('.post-listing.mt-2'); posts.forEach(post => { const titleElement = post.querySelector('.d-inline-block'); if (titleElement) { const titleText = titleElement.textContent || titleElement.innerText; if (containsKeyword(titleText)) { // Remove the post post.style.display = 'none'; // Find and remove the HR after this post const nextElement = post.nextElementSibling; if (nextElement && nextElement.tagName === 'HR') { nextElement.style.display = 'none'; } console.log('Removed post with title:', titleText); } } }); } // Run initially filterPosts(); // Observe DOM changes for infinite scroll or dynamic content loading const observer = new MutationObserver(function(mutations) { filterPosts(); }); observer.observe(document.body, { childList: true, subtree: true }); })();
minus-squarepeppersky [he/him, any]@hexbear.netlinkfedilinkEnglisharrow-up2·2 days agoDamn if that works that’d be real useful, thanks a lot, I’m too stupid to do things like that even with AI
minus-squareBountifulEggnog [she/her]@hexbear.netlinkfedilinkEnglisharrow-up6·2 days agoYou aren’t stupid for not knowing how to do something Hope it works for you, I can try to help you install it if you need.
minus-squarepeppersky [he/him, any]@hexbear.netlinkfedilinkEnglisharrow-up4·2 days ago Is that that revolutionary kindness I heard so much about… Thank you so much, installing Userscripts does fall within my skill range tho. Thank you anyway for the offer
With a bit of fiddling deepseek gave me this tamper monkey script, appears to work on my end:
spoiler
// ==UserScript== // @name Lemmy Post Filter // @namespace http://tampermonkey.net/ // @version 0.1 // @description Remove Lemmy posts containing specific keywords in their titles // @author Deepseek // @match https://hexbear.net/* // @match https://*.hexbear.net/* // @match https://lemmygrad.ml/* // @match https://*.lemmygrad.ml/* // @grant none // ==/UserScript== (function() { 'use strict'; // Add your keywords here (case insensitive) const KEYWORDS = [ 'elon', 'musk' // Add more keywords as needed ]; // Function to check if title contains any of the keywords function containsKeyword(title) { if (!title) return false; const lowerTitle = title.toLowerCase(); return KEYWORDS.some(keyword => lowerTitle.includes(keyword.toLowerCase())); } // Function to process posts function filterPosts() { const posts = document.querySelectorAll('.post-listing.mt-2'); posts.forEach(post => { const titleElement = post.querySelector('.d-inline-block'); if (titleElement) { const titleText = titleElement.textContent || titleElement.innerText; if (containsKeyword(titleText)) { // Remove the post post.style.display = 'none'; // Find and remove the HR after this post const nextElement = post.nextElementSibling; if (nextElement && nextElement.tagName === 'HR') { nextElement.style.display = 'none'; } console.log('Removed post with title:', titleText); } } }); } // Run initially filterPosts(); // Observe DOM changes for infinite scroll or dynamic content loading const observer = new MutationObserver(function(mutations) { filterPosts(); }); observer.observe(document.body, { childList: true, subtree: true }); })();
Damn if that works that’d be real useful, thanks a lot, I’m too stupid to do things like that even with AI
You aren’t stupid for not knowing how to do something
Hope it works for you, I can try to help you install it if you need.
Is that that revolutionary kindness I heard so much about…
Thank you so much, installing Userscripts does fall within my skill range tho. Thank you anyway for the offer