Make Reddit's promoted posts more distinguishable from normal posts
目前為
// ==UserScript==
// @name Highlight Reddit's promoted posts
// @namespace highlight_Reddit'_promoted_posts
// @description Make Reddit's promoted posts more distinguishable from normal posts
// @include https://www.reddit.com/
// @include https://www.reddit.com/r/*
// @version 1
// @grant none
// ==/UserScript==
let spans = Array.filter(document.getElementsByTagName("span"), (span) => span.textContent == "promoted")
spans.forEach((span) => span.parentElement.parentElement.parentElement.parentElement.style = "background-color: yellow")