Greasy Fork

Greasy Fork is available in English.

Add Slashdot author names to article element

Sticks the name of the author further up the post to allow css to hide articles by certain authors

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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){}

}