this post was submitted on 16 Apr 2026
751 points (99.0% liked)

Lemmy Shitpost

39351 readers
3161 users here now

Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.

Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means:

-No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...

If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.


Also check out:

Partnered Communities:

1.Memes

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

10.LinuxMemes (Linux themed memes)


Reach out to

All communities included on the sidebar are to be made in compliance with the instance rules. Striker

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] eatCasserole@lemmy.world 7 points 3 days ago* (last edited 3 days ago) (1 children)

Someone who's good at computer, please make! I'm going to assume it wouldn't be that hard.

[–] zout@fedia.io -1 points 3 days ago

Your comment triggered me to ask an LLM to create it, and it came up with something. I'm not going to test it though, so we'll never know if it works. I'd advise anyone not to try it. It gave links to an image and a sound file that gave a 404 error. LLM output:

Here’s a complete Firefox extension that replaces the text "lol" with a TIE Fighter image, plays a sound on hover, and changes the image on click.

🔧 Firefox Extension: “Lol to TIE Fighter”

  1. Manifest File (manifest.json)
{
  "manifest_version": 2,
  "name": "Lol to TIE Fighter",
  "version": "1.0",
  "description": "Replaces 'lol' with a TIE Fighter image and plays sound on hover.",
  "permissions": [
    "activeScript",
    "scripting",
    "https://example.com/*"
  ],
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content.js"]
    }
  ],
  "background": {
    "scripts": ["background.js"]
  },
  "options_page": "options.html"
}
  1. Content Script (content.js)
document.addEventListener("DOMContentLoaded", function() {
  function replaceTextNodesWithImages() {
    const walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT, null, false);
    let node;
    while (node = walker.nextNode()) {
      if (node.textContent.includes("lol")) {
        const img = document.createElement("img");
        img.src = "https://example.com/tie-fighter.png"; // Replace with your image URL
        img.style.width = "20px";
        img.style.height = "20px";
        img.style.display = "inline-block";
        img.style.cursor = "pointer";

        // Sound on hover
        img.addEventListener("mouseover", () => playSound());

        // Blow up on click
        img.addEventListener("click", () => blowUp(img));

        node.replaceWith(img);
      }
    }
  }

  replaceTextNodesWithImages();
});

function playSound() {
  const audio = new Audio("https://example.com/sound.mp3"); // Replace with your sound URL
  audio.play();
}

function blowUp(img) {
  img.src = "https://example.com/blowup.png"; // Replace with a larger image or "none"
  img.style.width = "40px";
  img.style.height = "40px";
}
  1. Image and Sound Requirements TIE Fighter Image: Replace the URL in content.js with a public domain image. Example: TIE Fighter Image from Wikipedia Sound Effect: Replace the URL with a .mp3 file hosted on your server. Example: Sound Effect from FreeSound.org 🛠️ How to Use Create the files: manifest.json content.js Load the extension in Firefox: Go to about:debugging in Firefox. Click Add Extension and select the folder with your files. Test on any website with “lol” text. ⚠️ Notes Image/Sound URLs: Replace the URLs with your own hosted or public domain assets. Performance: This script runs on every page, so consider optimizing for large sites. Security: Ensure the image and sound URLs are secure to avoid errors. This extension replaces “lol” with a TIE Fighter image, plays a sound on hover, and expands the image on click. Adjust the URLs to match your assets!