瀏覽單個文章
野口隆史
Elite Member
 
野口隆史的大頭照
 

加入日期: Mar 2001
您的住址: Rivia
文章: 6,988
稍微修改一下腳本
改成只改變 PCDVD 的配色方案
移除寬高度跟字體大小的修改
有需要自行取用
代碼:
// ==UserScript==
// @name          PCDVD - Dark Mode
// @namespace     http://userstyles.org
// @description	  PCDVD is a very famous forum in Taiwan and this style will improve the display quality.
// @author        Tronic Lin
// @homepage      https://userstyles.org/styles/196482
// @match         http://pcdvd.com.tw/*
// @match         https://pcdvd.com.tw/*
// @match         http://*.pcdvd.com.tw/*
// @match         https://*.pcdvd.com.tw/*
// @run-at        document-start
// @version       1.1
// @license       MIT
// @grant         GM_addStyle
// @downloadURL https://update.greasyfork.org/scrip...%20Mode.user.js
// @updateURL https://update.greasyfork.org/scrip...%20Mode.meta.js
// ==/UserScript==

(function() {
let css = "";
css += `
body
{
    background-color: #222425;
    color: #e8e8e8;
}

.page,
.alt2,
.alt2Active,
.panelsurround
{
    background-color: #2f2f2f;
}

.tcat,
.tfoot,
.alt1,
.alt1Active
{
    background-color: #222425;
}

.tborder
{
    background-color: #555;
}

a:link {
color: #ffb700;
}

a:visited {
color: #ffb300;
}
`;
   if (typeof GM_addStyle !== "undefined") {
  GM_addStyle(css);
} else {
  let styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(css));
  (document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();
__________________
Folding@home with GPGPU集中討論串

Unix Review: ArchLinuxSabayonOpenSolaris 2008.5Ubuntu 8.10
AVs Review: GDTCAntiVir SSESSKIS 09NIS 09Norton 360 V3

I Always Get What I Want.
舊 2024-09-23, 01:02 PM #7
回應時引用此文章
野口隆史離線中