Skip to content

Instantly share code, notes, and snippets.

@Pross
Created December 29, 2010 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pross/758715 to your computer and use it in GitHub Desktop.
Save Pross/758715 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name wporg_admin
// @namespace http://themes.trac.wordpress.org
// @include http://themes.trac.wordpress.org/query?*
// ==/UserScript==
document.body.innerHTML=document.body.innerHTML.replace(/theme-(.*)(,.*)/g,"theme-$1$2<a target=\"_blank\" href=\"http://wordpress.org/extend/themes/admin/$1\">[ADMIN]<\/a>");
// ==UserScript==
// @name wporg_admin_tickets
// @namespace http://themes.trac.wordpress.org
// @include http://themes.trac.wordpress.org/ticket/*
// ==/UserScript==
document.body.innerHTML=document.body.innerHTML.replace(/(<a href.*theme-(.*)<\/a>,)/,"$1 <a target=\"_blank\" href=\"http://wordpress.org/extend/themes/admin/$2\">[ADMIN]<\/a>");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment