Pastoid

The page you are looking at now is at this URL: http://pastoid.com/an2

This paste was last updated on February 16, 2009 at 10:41 pm.

Pasted Coderaw

// ==UserScript==
// @name          De_blankify Twitter
// @version       0.1
// @namespace     http://twofishcreative.com/greasemonkey
// @description   Remove target="_blank" from Twitter links
// @include       http://twitter.com/*
// ==/UserScript==
 
var tweets, tweet;
links = document.evaluate(
  "//span[@class='entry-content']/a",
  document,
  null,
  XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
  null
);
 
for (var i = 0; i < links.snapshotLength; i++) {
  link = links.snapshotItem(i);
  link.removeAttribute("target");
}

Toggle wordwrap

Referring DomainHits
Unknown Referer 127
pastoid.com 11
search.live.com 3
search.twitter.com 1
Is this paste spam?
<Hide