<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussions on scripts by Andrew Pennebaker | Userscripts.org</title>
    <description>Recent posts on all scripts by Andrew Pennebaker at userscripts.org</description>
    <link>http://userscripts.org/users/17056/scripts</link>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by jasn</title>
      <description>&lt;p&gt;This is definitely my favorite script method for blocking flash stuff on the internet. However I am not able to install this as a regular user on my system. (latest Gentoo Linux, Firefox, Greasemonkey, as well as Adblock Plus and Noscript extensions installed). I am able to install it as root user, and was able to get it installed for my regular user account, by copying the script and config.xml from the gm_scripts directory for root's firefox config directory, to my regular user's firefox config directory. But not by doing the regular click to install.&lt;/p&gt;

&lt;p&gt;Any idea of what's going on?&lt;/p&gt;</description>
      <pubDate>Sat, 06 Oct 2007 16:38:39 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76394</guid>
      <author>jasn</author>
      <link>http://userscripts.org/posts/76394</link>
    </item>
    <item>
      <title>Archived Comments, replied by varanasi</title>
      <description>&lt;p&gt;I posted an update that deals with embeds and adds pix's modification, see below, here:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/12617&quot;&gt;http://userscripts.org/scripts/show/12617&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 28 Sep 2007 13:46:36 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76395</guid>
      <author>varanasi</author>
      <link>http://userscripts.org/posts/76395</link>
    </item>
    <item>
      <title>Archived Comments, replied by easier_rhino</title>
      <description>&lt;p&gt;This might be a minor thing, but while the script handles the &quot;object&quot; tag just fine, it doesn't deal with the &quot;embed&quot; tag at all.  I don't know the semantic differences between the two tags.&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jul 2007 19:44:07 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76396</guid>
      <author>easier_rhino</author>
      <link>http://userscripts.org/posts/76396</link>
    </item>
    <item>
      <title>Archived Comments, replied by Hongkong19</title>
      <description>&lt;p&gt;I can't get google dark of ANY version to work. I'm using firefox 2.0.0.4 or whatever and when i install this script it just puts the google logo/search bar at the bottom of the site...no darkness. any help?&lt;/p&gt;</description>
      <pubDate>Tue, 12 Jun 2007 04:03:46 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24395</guid>
      <author>Hongkong19</author>
      <link>http://userscripts.org/posts/24395</link>
    </item>
    <item>
      <title>Archived Comments, replied by pix</title>
      <description>&lt;p&gt;&lt;i&gt;So that would enable/disable all flash movies? What if you want to watch flash movies and block other flash ads on a site?&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;with the current code, as it iterates through the list of flash movies on a site, it keeps overwriting the &lt;tt&gt;placeholder&lt;/tt&gt; and &lt;tt&gt;flash&lt;/tt&gt; variables. so if you have more than one flash movie on a page, clicking the &lt;b&gt;[Play Flash]&lt;/b&gt; button only activates/deactivates the last flash movie on the page.&lt;/p&gt;

&lt;p&gt;with my fix, it doesn't use this variable from the click listener anymore, but rather finds these elements relative to the element calling the handler, so you can activate and deactivate individual movies on a page individually.&lt;/p&gt;

&lt;p&gt;ahh, i use flashblock now anyway ;)&lt;/p&gt;

&lt;p&gt;pix.&lt;/p&gt;</description>
      <pubDate>Tue, 22 May 2007 07:00:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76397</guid>
      <author>pix</author>
      <link>http://userscripts.org/posts/76397</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker</title>
      <description>&lt;p&gt;So that would enable/disable all flash movies? What if you want to watch flash movies and block other flash ads on a site?&lt;/p&gt;</description>
      <pubDate>Wed, 04 Apr 2007 03:17:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76398</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/posts/76398</link>
    </item>
    <item>
      <title>Archived Comments, replied by pix</title>
      <description>&lt;p&gt;here is a small fix to make this work with pages containing multiple flash movies.&lt;/p&gt;

&lt;p&gt;change these lines:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
    placeholder.addEventListener(
        'click',
        function() {
            if (flash.on) {
&lt;/pre&gt;
&lt;br /&gt;        
&lt;br /&gt;to&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
    placeholder.addEventListener(
        'click',
        function() {
            placeholder=this;
            flash=this.nextSibling;
            if (flash.on) {
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 04 Mar 2007 18:11:53 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76399</guid>
      <author>pix</author>
      <link>http://userscripts.org/posts/76399</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker</title>
      <description>&lt;p&gt;Thanks!&lt;/p&gt;</description>
      <pubDate>Sun, 25 Feb 2007 17:19:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:11473:28555</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/posts/28555</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker</title>
      <description>&lt;p&gt;I tried to fix Google Dark for Greasemonkey, but it's generally ugly. That's when I found Userstyles.org - skins for websites. You can install the Stylish addon then the themes or even a Greasemonkey script instead. For more info:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://mcandre.wordpress.com/2007/02/17/website-of-the-day-userstylesorg/&quot;&gt;http://mcandre.wordpress.com/2007/02/17/website...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 25 Feb 2007 17:18:48 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24396</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/posts/24396</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker</title>
      <description>&lt;p&gt;Sure! Pick whichever colors you like.&lt;/p&gt;</description>
      <pubDate>Sun, 25 Feb 2007 17:16:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76400</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/posts/76400</link>
    </item>
    <item>
      <title>Archived Comments, replied by Lee </title>
      <description>&lt;p&gt;How do I remove this script?  I use the &quot;images&quot; ink on google alot and this does not have it.  I need that link.&lt;/p&gt;</description>
      <pubDate>Sun, 25 Feb 2007 15:34:44 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24397</guid>
      <author>Lee </author>
      <link>http://userscripts.org/posts/24397</link>
    </item>
    <item>
      <title>Archived Comments, replied by ruesky09</title>
      <description>&lt;p&gt;and can you center it??&lt;/p&gt;</description>
      <pubDate>Thu, 22 Feb 2007 03:45:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24398</guid>
      <author>ruesky09</author>
      <link>http://userscripts.org/posts/24398</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon!</title>
      <description>&lt;p&gt;cool!! it's much much better than Flashblock (&lt;a href=&quot;https://addons.mozilla.org/firefox/433/&quot;&gt;https://addons.mozilla.org/firefox/433/&lt;/a&gt;) but it'll be very helpful to block flv players flash based like on youtube&lt;/p&gt;

&lt;p&gt;if I'll want to allow this kinda flash objects (those flv players) than I'll do it manualy, till then I'll use Flashblock at the same time with BlockFlash-Revisited (and BlockFlash {&lt;a href=&quot;http://userscripts.org/scripts/show/3204&quot;&gt;http://userscripts.org/scripts/show/3204&lt;/a&gt;} lol)&lt;/p&gt;

&lt;p&gt;BTW - thnX for the great color (I'm redhead, so its fit pretty well lol)&lt;/p&gt;

&lt;p&gt;if ya can, build another one in azure, light blue color. or you can give us a list of what color do you want and just pike it...&lt;/p&gt;</description>
      <pubDate>Wed, 21 Feb 2007 11:43:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76401</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/76401</link>
    </item>
    <item>
      <title>Archived Comments, replied by Ian Williams</title>
      <description>&lt;p&gt;Any chance you could write a script like this that could make white text on a black background for any site?&lt;/p&gt;</description>
      <pubDate>Tue, 20 Feb 2007 01:52:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24399</guid>
      <author>Ian Williams</author>
      <link>http://userscripts.org/posts/24399</link>
    </item>
    <item>
      <title>Archived Comments, replied by Peter Bunyan</title>
      <description>&lt;p&gt;Why did you change it from .tld to .com? .tld matches ALL top level domains, so if you visited google.co.uk or anything like that it would still work. Now, it only works if you visit google.com.&lt;/p&gt;

&lt;p&gt;Silly change there.&lt;/p&gt;</description>
      <pubDate>Sun, 18 Feb 2007 13:43:33 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24400</guid>
      <author>Peter Bunyan</author>
      <link>http://userscripts.org/posts/24400</link>
    </item>
    <item>
      <title>Archived Comments, replied by Firefoxman</title>
      <description>&lt;p&gt;From the code:&lt;/p&gt;

&lt;p&gt;// Replaced include/exclude lists from ... google.tld ... with ... google.com ...
&lt;br /&gt;// Replaced broken image link with 07designs logo&lt;/p&gt;</description>
      <pubDate>Sat, 17 Feb 2007 19:29:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24401</guid>
      <author>Firefoxman</author>
      <link>http://userscripts.org/posts/24401</link>
    </item>
    <item>
      <title>Archived Comments, replied by thuvap</title>
      <description>&lt;p&gt;Could you describe the tweak you made?  &lt;/p&gt;

&lt;p&gt;(I'm curious because this is one of the ones on my list to repair/improve then re-submit.  I'm just adding embedded Data:URI's for the pics instead of links to an external site though, which seems to be something different than what you changed.)&lt;/p&gt;</description>
      <pubDate>Sat, 17 Feb 2007 04:47:43 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24402</guid>
      <author>thuvap</author>
      <link>http://userscripts.org/posts/24402</link>
    </item>
    <item>
      <title>Archived Comments, replied by Paul Irish</title>
      <description>&lt;p&gt;Very cool! Nicely done. (Also I had in some paddingLeft in there to put in some space between the icon and text, you might want to experiment with that as paddingRight now..) Cheers&lt;/p&gt;</description>
      <pubDate>Sun, 03 Dec 2006 15:29:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:11473:28556</guid>
      <author>Paul Irish</author>
      <link>http://userscripts.org/posts/28556</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:06:11 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:11473:28554</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/28554</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:06:05 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10744:24394</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/24394</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76393</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/76393</link>
    </item>
  </channel>
</rss>
