View Single Post
Old 01-17-2014, 02:22 AM   #12
JimmyR
ɴₐɴ
JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.JimmyR ought to be getting tired of karma fortunes by now.
 
JimmyR's Avatar
 
Posts: 421
Karma: 2507940
Join Date: Jun 2011
Location: 37.2N 93.3W
Device: KV PW4 PW3 PW2
Quote:
Originally Posted by unboggling View Post
Thanks, Jimmy-Jim. That works great for Safari.
Great! Glad it works.

- -

Here's a quick and dirty script for you Greasemonkeys:
Code:
// ==UserScript==
// @name  Calibre Forum Image Fix      
// @description  Fix Calibre Editor Forum Image.
// @include      https://www.mobileread.com/forums/forumdisplay.php?f=166
// ==/UserScript==

(function() 
{

  var
  img = document.evaluate('//img[@src="https://www2.mobileread.com/i/mr/misc/f-262.png"]', document,null,9,null).singleNodeValue;

  img.setAttribute('src','https://www2.mobileread.com/i/mr/misc/f-234.png');
  	
})();
JimmyR is offline   Reply With Quote