Greasemonkey Scripts For vB: Now With A "I Can't Believe It's Not Fusetalk" Script

Page 8 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Spacehead

Lifer
Jun 2, 2002
13,067
9,858
136
Can someone create a Greasemonkey or Stylish script that will make necro'd threads a different color? That's getting really annoying.
I already have a GM script that give clicked links a different color so i would think it shouldn't be too hard. May make it adjustable as far as hat's concidered old... 6 months, 1yr, 2yrs etc.
 

pcslookout

Lifer
Mar 18, 2007
11,959
157
106
Can someone create a Greasemonkey or Stylish script that will make necro'd threads a different color? That's getting really annoying.
I already have a GM script that give clicked links a different color so i would think it shouldn't be too hard. May make it adjustable as far as hat's concidered old... 6 months, 1yr, 2yrs etc.

Great idea!

Can you share the link to the GM script that gives you clicked links a different color?
 

Spacehead

Lifer
Jun 2, 2002
13,067
9,858
136
Alot of the links in this thread are dead now so i'm not sure where i originally got it from. Digging around in GM & it looks like this is it.

Code:
// ==UserScript==
// @name          Anandtech - gives visited links another color 3
// @description	  Gives visited links another color on the new AT forums
// @include       http://forums.anandtech.com/*
// ==/UserScript==

function addVistedColor()
{
	var head, style;
	head = document.getElementsByTagName('head')[0];
	
	if (!head) { return; }
	
	style = document.createElement('style');
	style.type = 'text/css';
        style.innerHTML = "a:link{color:darkblue;} a:visited{color:#780000;}";      
	head.appendChild(style);
}

addVistedColor();
 

Kev

Lifer
Dec 17, 2001
16,367
4
81
Can someone create a Greasemonkey or Stylish script that will make necro'd threads a different color? That's getting really annoying.
I already have a GM script that give clicked links a different color so i would think it shouldn't be too hard. May make it adjustable as far as hat's concidered old... 6 months, 1yr, 2yrs etc.

the irony
 

zinfamous

No Lifer
Jul 12, 2006
111,857
31,346
146
Can someone create a Greasemonkey or Stylish script that will make necro'd threads a different color? That's getting really annoying.
I already have a GM script that give clicked links a different color so i would think it shouldn't be too hard. May make it adjustable as far as hat's concidered old... 6 months, 1yr, 2yrs etc.

the irony

Can one necro a stickied thread?

:hmm: