Skip to content

Instantly share code, notes, and snippets.

@weapp
Created July 23, 2014 17:30
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 weapp/89a1f2d5302e91282cf2 to your computer and use it in GitHub Desktop.
Save weapp/89a1f2d5302e91282cf2 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Enlaces Entradas
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match http://entradas/*
// @copyright 2012+, You
// ==/UserScript==
$("a[href^=\\/]").not("a[href^=\\/entradas]").css({"padding":"2.5px", "outline": "1px dashed #000", "border": "2.5px solid #DD0"})
$("a[href]").not("a[href^=\\/]").not("a[href^=tel\\:]").not("a[href^=http]").not("a[href^=#]").css({"padding":"2.5px", "border": "2.5px solid #0DD"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment