您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sticks the name of the author further up the post to allow css to hide articles by certain authors
// ==UserScript== // @name Add Slashdot author names to article element // @namespace ChoGGi // @description Sticks the name of the author further up the post to allow css to hide articles by certain authors // @include http://slashdot.org/ // @version 0.1 // @grant none // ==/UserScript== /* css rule example #firehoselist>article[authorname="Bennett Haselton"], #firehoselist>article[authorname="Douchebag"] { display: none ; } */ "use strict"; var articleList = document.getElementById("firehoselist").childNodes; for (var i = 0; i < articleList.length; i++){ try { var username = articleList[i].childNodes[5].firstElementChild.firstElementChild; if (username.getAttribute("href").search(/^\/~/) != -1) articleList[i].setAttribute("authorname",username.innerHTML); }catch(e){} }