Firefox userChrome.js greasemonkeyスクリプトスレ18at SOFTWARE
Firefox userChrome.js greasemonkeyスクリプトスレ18 - 暇つぶし2ch847:836
12/01/23 05:38:42.46 FgyFHngm0
>>839 , >>844
分かったよ
>>835
こんなんでどうよ
// ==UserScript==
// @name hoge
// @include URLリンク(www.realtek.com.tw)
// ==/UserScript==

removeTdColor();
setTrColor("red");
function setTrColor (color) {
Array.forEach(document.querySelectorAll(".etxt-bold-660099 tr"), function (node) {
node.style.color = color;
});
}
function removeTdColor () {
var hrefReg = /etxt\.css$/;
for (let i = 0, sheet; sheet = document.styleSheets[i]; ++i) {
if (!hrefReg.test(sheet.href))
continue;

for (let j = 0, rule; rule = sheet.cssRules[j]; ++j) {
if (rule.selectorText === ".etxt-top10-box") {
rule.style.color = "";
return;
}
}
};
}


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch