Highlight waffleimages links

Highlights WaffleImages links on SA

当前为 2014-08-27 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Highlight waffleimages links
  3. // @namespace http://mathemaniac.org
  4. // @version 1.0
  5. // @description Highlights WaffleImages links on SA
  6. // @match http://forums.somethingawful.com/*
  7. // @copyright 2013, Sebastian Paaske Tørholm
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js
  9. // ==/UserScript==
  10.  
  11. $("img[src*='img.waffleimages.com']").css( { "border": "3px solid orange" } ).after("<div style='color: orange'>(WaffleImages)</div>");