<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dekay.org &#187; firefox</title>
	<atom:link href="http://www.dekay.org/blog/archives/tag/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dekay.org/blog</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 22:03:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>AppleScript for opening the current DevonAgent page in Firefox</title>
		<link>http://www.dekay.org/blog/archives/applescript-for-opening-the-current-devonagent-page-in-firefox</link>
		<comments>http://www.dekay.org/blog/archives/applescript-for-opening-the-current-devonagent-page-in-firefox#comments</comments>
		<pubDate>Wed, 01 Nov 2006 12:05:20 +0000</pubDate>
		<dc:creator>dekay</dc:creator>
				<category><![CDATA[applescript]]></category>
		<category><![CDATA[devonagent]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.dekay.org/blog/archives/applescript-for-opening-the-current-devonagent-page-in-firefox</guid>
		<description><![CDATA[&#8544; often need to open web pages in Firefox, even though DEVONagent is my favorite and default browser. As DA is very scriptable there is an easy solution to this, without having to manually copy the URL around. The following apple script will do it. Just copy it into ~/Application Support/DEVONagent/Scripts. Make sure the filename [...]
Related posts:<ol>
<li><a href='http://www.dekay.org/blog/archives/ogrady-kicks-firefox-into-the-bin' rel='bookmark' title='O&#8217;Grady kicks Firefox into the bin?'>O&#8217;Grady kicks Firefox into the bin?</a> <small>Jason complains about how Firefox is annoying him&#8230; although it...</small></li>
<li><a href='http://www.dekay.org/blog/archives/getting-googles-firefox-bookmark-sync-to-work' rel='bookmark' title='Getting Google\&#8217;s Firefox Bookmark Sync to Work'>Getting Google\&#8217;s Firefox Bookmark Sync to Work</a> <small>This article sounds helpful. But now that &#8544; have looked...</small></li>
<li><a href='http://www.dekay.org/blog/archives/quicksilver-and-ical' rel='bookmark' title='Quicksilver and iCal'>Quicksilver and iCal</a> <small>As long as there is no plugin for Quicksilver to...</small></li>
</ol>

Ähnliche Artikel bereitgestellt von <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>&#8544; often need to open web pages in <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>, even though <a href="http://www.devon-technologies.com/">DEVONagent</a> is my favorite and default browser. As DA is very scriptable there is an easy solution to this, without having to manually copy the URL around. The following <a href="http://www.apple.com/applescript/">apple script</a> will do it. Just copy it into ~/Application Support/DEVONagent/Scripts. Make sure the filename ends with ___ and a keyboard short cut, such as Cmd-Alt-Ctrl-o or similar. (here is a version of the script for you to download)</p>

<p><pre class="textmate-source brilliance_black_"><span class="source source_applescript"><span class="keyword keyword_control keyword_control_applescript">try</span>
<span class="meta meta_tell-block meta_tell-block_application meta_tell-block_application_generic meta_tell-block_application_generic_applescript">    <span class="keyword keyword_control keyword_control_applescript">tell</span> <span class="support support_class support_class_built-in support_class_built-in_applescript">application</span> <span class="string string_quoted string_quoted_double string_quoted_double_application-name string_quoted_double_application-name_applescript"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_applescript">"</span>DEVONagent<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_applescript">"</span></span>
        <span class="keyword keyword_control keyword_control_applescript">if</span> <span class="keyword keyword_operator keyword_operator_applescript">not</span> (<span class="support support_function support_function_standard-suite support_function_standard-suite_applescript">exists</span> browser <span class="constant constant_numeric constant_numeric_applescript">1</span>) <span class="keyword keyword_control keyword_control_applescript">then</span> <span class="support support_function support_function_built-in support_function_built-in_applescript">error</span> <span class="string string_quoted string_quoted_double string_quoted_double_applescript"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_applescript">"</span>No browser windows are open.<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_applescript">"</span></span>
        <span class="keyword keyword_control keyword_control_applescript">set</span> this_browser <span class="keyword keyword_control keyword_control_applescript">to</span> browser <span class="constant constant_numeric constant_numeric_applescript">1</span>
        <span class="keyword keyword_control keyword_control_applescript">set</span> this_URL <span class="keyword keyword_control keyword_control_applescript">to</span> the <span class="support support_class support_class_standardadditions support_class_standardadditions_internet support_class_standardadditions_internet_applescript">URL</span> <span class="keyword keyword_control keyword_control_reference keyword_control_reference_applescript">of</span> this_browser
    <span class="keyword keyword_control keyword_control_applescript">end tell</span></span></span></pre></p>

<p><span class="meta meta_tell-block meta_tell-block_application meta_tell-block_application_generic meta_tell-block_application_generic_applescript">    <span class="keyword keyword_control keyword_control_applescript">tell</span> <span class="support support_class support_class_built-in support_class_built-in_applescript">application</span> <span class="string string_quoted string_quoted_double string_quoted_double_application-name string_quoted_double_application-name_applescript"><span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_applescript">"</span>Firefox<span class="punctuation punctuation_definition punctuation_definition_string punctuation_definition_string_applescript">"</span></span>
        <span class="support support_function support_function_standard-suite support_function_standard-suite_applescript">activate</span>
        OpenURL this_URL
    <span class="keyword keyword_control keyword_control_applescript">end tell</span></span>
<span class="keyword keyword_control keyword_control_applescript">end try</span>
</p>
<div style="text-align:center;width:100%;"><div style="margin:0px 0px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9539411338398930";
/* 728x15, created 2/5/09 */
google_ad_slot = "0755827937";
google_ad_width = 728;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></div><p>Related posts:<ol>
<li><a href='http://www.dekay.org/blog/archives/ogrady-kicks-firefox-into-the-bin' rel='bookmark' title='O&#8217;Grady kicks Firefox into the bin?'>O&#8217;Grady kicks Firefox into the bin?</a> <small>Jason complains about how Firefox is annoying him&#8230; although it...</small></li>
<li><a href='http://www.dekay.org/blog/archives/getting-googles-firefox-bookmark-sync-to-work' rel='bookmark' title='Getting Google\&#8217;s Firefox Bookmark Sync to Work'>Getting Google\&#8217;s Firefox Bookmark Sync to Work</a> <small>This article sounds helpful. But now that &#8544; have looked...</small></li>
<li><a href='http://www.dekay.org/blog/archives/quicksilver-and-ical' rel='bookmark' title='Quicksilver and iCal'>Quicksilver and iCal</a> <small>As long as there is no plugin for Quicksilver to...</small></li>
</ol></p>
<p>Ähnliche Artikel bereitgestellt von <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dekay.org/blog/archives/applescript-for-opening-the-current-devonagent-page-in-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Google\&#8217;s Firefox Bookmark Sync to Work</title>
		<link>http://www.dekay.org/blog/archives/getting-googles-firefox-bookmark-sync-to-work</link>
		<comments>http://www.dekay.org/blog/archives/getting-googles-firefox-bookmark-sync-to-work#comments</comments>
		<pubDate>Thu, 15 Jun 2006 12:50:29 +0000</pubDate>
		<dc:creator>dekay</dc:creator>
				<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[synch]]></category>

		<guid isPermaLink="false">http://www.dekay.org/blog/archives/getting-googles-firefox-bookmark-sync-to-work</guid>
		<description><![CDATA[This article sounds helpful. But now that &#8544; have looked into my firefox directory &#8544; have found 100MB of log files of this google browser synch extension&#226;&#8364;&#166; is that necessary? Related posts: AppleScript for opening the current DevonAgent page in Firefox &#8544; often need to open web pages in Firefox, even... O&#8217;Grady kicks Firefox into [...]
Related posts:<ol>
<li><a href='http://www.dekay.org/blog/archives/applescript-for-opening-the-current-devonagent-page-in-firefox' rel='bookmark' title='AppleScript for opening the current DevonAgent page in Firefox'>AppleScript for opening the current DevonAgent page in Firefox</a> <small>&#8544; often need to open web pages in Firefox, even...</small></li>
<li><a href='http://www.dekay.org/blog/archives/ogrady-kicks-firefox-into-the-bin' rel='bookmark' title='O&#8217;Grady kicks Firefox into the bin?'>O&#8217;Grady kicks Firefox into the bin?</a> <small>Jason complains about how Firefox is annoying him&#8230; although it...</small></li>
<li><a href='http://www.dekay.org/blog/archives/why-firefox-is-better-than-omniweb' rel='bookmark' title='Why Firefox is better than OmniWeb'>Why Firefox is better than OmniWeb</a> <small>&#8544; have been in love with OmniWeb for some time,...</small></li>
</ol>

Ähnliche Artikel bereitgestellt von <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href=\"http://www.digitalmedievalist.com/it/archive/000313.html\">This</a> article sounds helpful. But now that &#8544; have looked into my firefox directory &#8544; have found 100MB of log files of this google browser synch extension&acirc;&#8364;&brvbar; is that necessary?</p>
<p>Related posts:<ol>
<li><a href='http://www.dekay.org/blog/archives/applescript-for-opening-the-current-devonagent-page-in-firefox' rel='bookmark' title='AppleScript for opening the current DevonAgent page in Firefox'>AppleScript for opening the current DevonAgent page in Firefox</a> <small>&#8544; often need to open web pages in Firefox, even...</small></li>
<li><a href='http://www.dekay.org/blog/archives/ogrady-kicks-firefox-into-the-bin' rel='bookmark' title='O&#8217;Grady kicks Firefox into the bin?'>O&#8217;Grady kicks Firefox into the bin?</a> <small>Jason complains about how Firefox is annoying him&#8230; although it...</small></li>
<li><a href='http://www.dekay.org/blog/archives/why-firefox-is-better-than-omniweb' rel='bookmark' title='Why Firefox is better than OmniWeb'>Why Firefox is better than OmniWeb</a> <small>&#8544; have been in love with OmniWeb for some time,...</small></li>
</ol></p>
<p>Ähnliche Artikel bereitgestellt von <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dekay.org/blog/archives/getting-googles-firefox-bookmark-sync-to-work/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Adblock Filter Sets</title>
		<link>http://www.dekay.org/blog/archives/firefox-adblock-filter-sets</link>
		<comments>http://www.dekay.org/blog/archives/firefox-adblock-filter-sets#comments</comments>
		<pubDate>Fri, 17 Jun 2005 10:12:00 +0000</pubDate>
		<dc:creator>dekay</dc:creator>
				<category><![CDATA[adblock]]></category>
		<category><![CDATA[advertisement]]></category>
		<category><![CDATA[anti-spam]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.dekay.org/blog/archives/firefox-adblock-filter-sets/</guid>
		<description><![CDATA[[Update 2005&#8211;09&#8211;12] The Adblock Filter Set has moved to a new address! This folder contains a huge list of Filtersets that you can import into Adblock. The lists are updated almost daily&#160;&#8211; thus ensuring an almost perfect anti-ad-coverage of the main internet sites. The function of this anti-spam list is really easy. It contains the [...]
Related posts:<ol>
<li><a href='http://www.dekay.org/blog/archives/anti-referrer-spam' rel='bookmark' title='Anti&#8209;(Referrer Spam)'>Anti&#8209;(Referrer Spam)</a> <small>Referrer Spam is quite a bit of pain in the...</small></li>
<li><a href='http://www.dekay.org/blog/archives/spam-karma' rel='bookmark' title='Spam Karma'>Spam Karma</a> <small>As previously mentioned in &#8222;Interview with a link spammer&#8220; there...</small></li>
<li><a href='http://www.dekay.org/blog/archives/ogrady-kicks-firefox-into-the-bin' rel='bookmark' title='O&#8217;Grady kicks Firefox into the bin?'>O&#8217;Grady kicks Firefox into the bin?</a> <small>Jason complains about how Firefox is annoying him&#8230; although it...</small></li>
</ol>

Ähnliche Artikel bereitgestellt von <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>[Update 2005&#8211;09&#8211;12]
The Adblock Filter Set has moved to <a href="http://www.pierceive.com/">a new address</a>!</p>

<hr />

<p><a href="http://www.geocities.com/pierceive/adblock/">This folder</a> contains a huge list of Filtersets that you can import into Adblock. The lists are updated almost daily&#160;&#8211; thus ensuring an almost perfect anti-ad-coverage of the main internet sites.</p>

<iframe src="http://rcm.amazon.com/e/cm?t=dekayorg-20&#038;o=1&#038;p=13&#038;l=st1&#038;mode=books&#038;search=Firefox%20hacks&#038;fc1=&#038;=1&#038;lc1=&#038;lt1=&#038;f=ifr&#038;bg1=&#038;f=ifr" marginwidth="0" marginheight="0" width="468" height="60" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe>

<p>The function of this anti-spam list is really easy. It contains the following:</p>

<ol>
<li><p>A list of domains that are know to provide spam and advertismenet banners</p></li>
<li><p>A list of URL snippets, folder names and file names which are known to be used for advertisement and offensive images.</p></li>
<li><p>Generic expressions which filter out most known ad formats.</p></li>
</ol>

<p>As a consequence you will be able to use adblock with firefeox without actually needing to manually block everything yourself. Enjoy ad-free web surfing without hassle and all that is for free!</p>

<p>But also remember: there are many sites out there which are useful and which are free&#160;&#8211; as their content creation is somewhat sponsored by adverts. Make sure from time to time to turn off your adblock on those sites and do click some adverts or buy something from their sponsors!</p>

<p>An interesting take on this fact can be read at <a href="http://www.coffeegeek.com/opinions/cafestage/08-25-2005">coffeegeek.com</a>.</p>
<p>Related posts:<ol>
<li><a href='http://www.dekay.org/blog/archives/anti-referrer-spam' rel='bookmark' title='Anti&#8209;(Referrer Spam)'>Anti&#8209;(Referrer Spam)</a> <small>Referrer Spam is quite a bit of pain in the...</small></li>
<li><a href='http://www.dekay.org/blog/archives/spam-karma' rel='bookmark' title='Spam Karma'>Spam Karma</a> <small>As previously mentioned in &#8222;Interview with a link spammer&#8220; there...</small></li>
<li><a href='http://www.dekay.org/blog/archives/ogrady-kicks-firefox-into-the-bin' rel='bookmark' title='O&#8217;Grady kicks Firefox into the bin?'>O&#8217;Grady kicks Firefox into the bin?</a> <small>Jason complains about how Firefox is annoying him&#8230; although it...</small></li>
</ol></p>
<p>Ähnliche Artikel bereitgestellt von <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dekay.org/blog/archives/firefox-adblock-filter-sets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

