<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Tumblr H8 | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/45673</link>
    <description>Recent comments on userscript: Tumblr H8</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Clicking on h8 tries to open something in a new tab, replied by sietelle</title>
      <description>&lt;p&gt;yep, I noticed that too, but have just been dealin with it. dunno why it's happening. script hasn't been updated in 2 years lol.. so who knows if it will get fixed. Maybe someone else can provide some small changes to the code we can make&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2012 18:37:21 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:116401:473990</guid>
      <author>sietelle</author>
      <link>http://userscripts.org/posts/473990</link>
    </item>
    <item>
      <title>Clicking on h8 tries to open something in a new tab, replied by Laura McDaniel</title>
      <description>&lt;p&gt;I don't really know how to explain it. The script seems to be working, but the moment I click on &quot;h8,&quot; a new tab pops up with a link that never goes anywhere. 
&lt;br /&gt;e.g.: &lt;a href=&quot;http://www.tumblr.com/31431331306&quot;&gt;http://www.tumblr.com/31431331306&lt;/a&gt; and &lt;a href=&quot;http://www.tumblr.com/31431331306&quot;&gt;http://www.tumblr.com/31431331306&lt;/a&gt; (I don't actually hate these posts, but eh, I needed examples)&lt;/p&gt;</description>
      <pubDate>Thu, 13 Sep 2012 00:58:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:116401:460847</guid>
      <author>Laura McDaniel</author>
      <link>http://userscripts.org/posts/460847</link>
    </item>
    <item>
      <title>tumblr&amp;#39;s doing somethin&amp;#39; with their posts, replied by sietelle</title>
      <description>&lt;p&gt;now the alignment of the 'h8' button is out of whack. this happens on both firefox (greasemonkey) and chrome (extension).&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://24.media.tumblr.com/tumblr_m6z1ojKUN91qivsi0o1_400.png&quot; /&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 11 Jul 2012 01:07:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:114130:452005</guid>
      <author>sietelle</author>
      <link>http://userscripts.org/posts/452005</link>
    </item>
    <item>
      <title>Google Chrome?, replied by Julia Mae</title>
      <description>&lt;p&gt;The official chrome extension is finally up! You can grab it here: &lt;a href=&quot;http://bit.ly/tumblr-h8&quot;&gt;http://bit.ly/tumblr-h8&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for your patience.&lt;/p&gt;</description>
      <pubDate>Tue, 10 May 2011 21:44:02 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:341197</guid>
      <author>Julia Mae</author>
      <link>http://userscripts.org/posts/341197</link>
    </item>
    <item>
      <title>Google Chrome?, replied by ale5000</title>
      <description>&lt;p&gt;@Vague Rant: Probably it can already work on Opera if you install the &quot;Greasemonkey Emulation&quot; script: &lt;a href=&quot;http://userscripts.org/scripts/show/88932&quot;&gt;http://userscripts.org/scripts/show/88932&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 21 Nov 2010 00:09:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:300015</guid>
      <author>ale5000</author>
      <link>http://userscripts.org/posts/300015</link>
    </item>
    <item>
      <title>Google Chrome?, replied by Julia Mae</title>
      <description>&lt;p&gt;I'm working on updating for chrome as we speak. Endless scroll is working now, though.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Nov 2010 18:12:42 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:299950</guid>
      <author>Julia Mae</author>
      <link>http://userscripts.org/posts/299950</link>
    </item>
    <item>
      <title>Google Chrome?, replied by Vague Rant</title>
      <description>&lt;p&gt;Opera user here, but H8 likewise doesn't work for us rare few. Looks like a great functionality for reblogs that just keep going round and round my dashboard, so I hope I can make use of it some day, maybe after Safari and Chrome.&lt;/p&gt;</description>
      <pubDate>Mon, 21 Jun 2010 11:56:51 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:263259</guid>
      <author>Vague Rant</author>
      <link>http://userscripts.org/posts/263259</link>
    </item>
    <item>
      <title>Google Chrome?, replied by Freevo</title>
      <description>&lt;p&gt;Hi! It is very easy to implement the script in Chrome. &lt;/p&gt;

&lt;p&gt;Chrome does not implement the GM_ functions, so you have to write something like this:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;if( typeof GM_setValue == 'undefined' ) {
&lt;br /&gt;  GM_setValue = function( varName, varValue ) {
&lt;br /&gt;    localStorage[varName] = varValue;
&lt;br /&gt;  }
&lt;br /&gt;  GM_getValue = function( varName, defaultValue ) {
&lt;br /&gt;    if( typeof localStorage[varName] == 'undefined' ) return defaultValue;
&lt;br /&gt;    return localStorage[varName];
&lt;br /&gt;  }
&lt;br /&gt;}
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;One more thing. Many of us use the endless scrolling function in tumblr, and it does not work quite well with your script, because it only listens to the window.onload event. 
&lt;br /&gt;You should also add an event listener to the post list, like this: &lt;/p&gt;

&lt;p&gt;&lt;code&gt;
&lt;br /&gt;document.getElementById('posts').addEvenetListener('DOMNodeInserted', function() {
&lt;br /&gt;  // here you can implement a per-post checking and hiding
&lt;br /&gt;  // attributes[0].srcElement contains the post element itself.
&lt;br /&gt;}, true);
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 13 Apr 2010 21:08:23 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:243174</guid>
      <author>Freevo</author>
      <link>http://userscripts.org/posts/243174</link>
    </item>
    <item>
      <title>Google Chrome?, replied by Julia Mae</title>
      <description>&lt;p&gt;i've never tried it on chrome! safari is the next place i want to get it to work, but i'll add chrome to the list. thanks for the feedback!&lt;/p&gt;</description>
      <pubDate>Tue, 23 Feb 2010 13:38:42 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:223257</guid>
      <author>Julia Mae</author>
      <link>http://userscripts.org/posts/223257</link>
    </item>
    <item>
      <title>Incompatible with., replied by Julia Mae</title>
      <description>&lt;p&gt;yes, this has recently come to my attention. not a trivial update, but i'll get to it soon.&lt;/p&gt;</description>
      <pubDate>Tue, 23 Feb 2010 13:37:56 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45703:223256</guid>
      <author>Julia Mae</author>
      <link>http://userscripts.org/posts/223256</link>
    </item>
    <item>
      <title>Incompatible with., replied by efrenefren</title>
      <description>&lt;p&gt;it's incompatible with autopager and endless scrolling&lt;/p&gt;</description>
      <pubDate>Tue, 09 Feb 2010 16:29:11 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45703:218220</guid>
      <author>efrenefren</author>
      <link>http://userscripts.org/posts/218220</link>
    </item>
    <item>
      <title>Google Chrome?, replied by efrenefren</title>
      <description>&lt;p&gt;Is this working on Google Chrome?&lt;/p&gt;</description>
      <pubDate>Thu, 04 Feb 2010 12:08:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45267:215899</guid>
      <author>efrenefren</author>
      <link>http://userscripts.org/posts/215899</link>
    </item>
  </channel>
</rss>
