Adjust headline colors authors on washingtonpost.com
当前为
// ==UserScript==
// @name De-emphasize Some Washington Post Bylines
// @namespace http://tampermonkey.net/
// @version 2024-11-22
// @description Adjust headline colors authors on washingtonpost.com
// @author Leon Barrett
// @match https://www.washingtonpost.com/*
// @grant none
// @license MIT
// ==/UserScript==
const authorsToAdjust = ["george-f-will", "megan-mcardle"];
function bylineAuthor(byline) {
const link = byline.querySelector("a");
const match = new RegExp("https://www\.washingtonpost\.com/people/([^/]*)/").exec(link);
if (!match) {
return "unknown";
}
return match[1];
}
function getHeadline(byline) {
return byline.parentElement.querySelector("div.headline");
}
function adjustBylineColor(byline) {
const headline = getHeadline(byline);
const color = '#ddcccc'
headline.style.color = color;
byline.style.color = color;
}
(function() {
'use strict';
const bylines = document.querySelectorAll("div.byline");
bylines.values().filter(byline => authorsToAdjust.includes(bylineAuthor(byline))).forEach(byline => adjustBylineColor(byline));
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址