send a tag suggestion

which tags should be associated with each other?


why should these tags be associated?

Use the form below to provide more context.

#important


// ==UserScript==
// @name        lettuce...
// @namespace
// @match       https://cohost.org/*
// @grant       none
// @version     1.0
// @author      meadow wowperfect
// @description 2/6/2024, 11:56:18 AM
// ==/UserScript==


function lettuce() {
  'use strict';

  for (let elem of document.querySelectorAll('img.mask')) {
    elem.src = 'https://i.pinimg.com/originals/60/16/91/6016911336b4930bb9eda15b99ffad36.png'
  }
}

(function () {
  setInterval(lettuce, 500);
})()