Skip to content

Instantly share code, notes, and snippets.

@szxw
Created September 11, 2014 10:15
Show Gist options
  • Save szxw/8fa91cbfa94091c56718 to your computer and use it in GitHub Desktop.
Save szxw/8fa91cbfa94091c56718 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @include http*://*/*
// ==/UserScript==
var as = document.getElementsByTagName("a");
for (var aa in as) {
if (as[aa].getAttribute("href") && as[aa].getAttribute("href") != "#") {
as[aa].target = "_blank";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment