发表于 2024年8月20日1年前 头部油猴都给写了就省略了,后面如下,供有同样困扰的朋友参考(function() { 'use strict'; // 创建一个样式元素 var style = document.createElement('style'); style.type = 'text/css'; // 定义 CSS 规则 style.innerHTML = ` a, h1, .topic_content, .markdown_body, .reply_content { font-weight: bold; color: #666666 !important; }.count_livid, meta { background-color: #000000 !important;} `; // 将样式添加到文档头部 document.head.appendChild(style);})();
(function() {
'use strict';
// 创建一个样式元素
var style = document.createElement('style');
style.type = 'text/css';
// 定义 CSS 规则
style.innerHTML = `
a, h1, .topic_content, .markdown_body, .reply_content {
font-weight: bold;
color: #666666 !important;
}
.count_livid, meta {
background-color: #000000 !important;
}
`;
// 将样式添加到文档头部
document.head.appendChild(style);
})();