<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/greasemonkey-dev</id>
  <title type="text">greasemonkey-dev Google Group</title>
  <subtitle type="text">
  Discussions about development of the Greasemonkey extension for Firefox.
  </subtitle>
  <link href="/group/greasemonkey-dev/feed/atom_v1_0_msgs.xml" rel="self" title="greasemonkey-dev feed"/>
  <updated>2010-01-06T21:01:06Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Santa Claus</name>
  <email>samsonkalinichenko97...@gmail.com</email>
  </author>
  <updated>2010-01-06T21:01:06Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/a86cd28287df068b/9cf324a5aa63f9d2?show_docid=9cf324a5aa63f9d2</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/a86cd28287df068b/9cf324a5aa63f9d2?show_docid=9cf324a5aa63f9d2"/>
  <title type="text">Happy New Year</title>
  <summary type="html" xml:space="preserve">
  Happy New Year! A little gift: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://shrtb.us/New_year_video&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>esquifit</name>
  <email>esqui...@googlemail.com</email>
  </author>
  <updated>2010-01-04T16:00:55Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/b789cdf1d4aaa963?show_docid=b789cdf1d4aaa963</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/b789cdf1d4aaa963?show_docid=b789cdf1d4aaa963"/>
  <title type="text">Re: [greasemonkey-dev] Help with greasemonkey link code</title>
  <summary type="html" xml:space="preserve">
  I&#39;m not really sure whether firing the click event on an anchor &lt;br&gt; element actually triggers navigation to the url in the href attribute. &lt;br&gt; Maybe I&#39;m wrong, but I recall having read that this is not possible. &lt;br&gt; In this particular case, however, the following should be enough: &lt;br&gt; document.location.replace(docu ment.links[2].href); // you may want
  </summary>
  </entry>
  <entry>
  <author>
  <name>Marco Riato</name>
  <email>marcori...@yahoo.com</email>
  </author>
  <updated>2010-01-04T11:51:21Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/7e8741f907f0cb80?show_docid=7e8741f907f0cb80</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/7e8741f907f0cb80?show_docid=7e8741f907f0cb80"/>
  <title type="text">Re: [greasemonkey-dev] Help with greasemonkey link code</title>
  <summary type="html" xml:space="preserve">
  Hi, thanks for the help, I actually tried that, it still didn&#39;t click the link... &lt;br&gt; any ideas... &lt;br&gt; I am writing a script code for a job search site to help me with my job search, so your help is VERY much appreciated, this is the last part I cant get &lt;br&gt; Marco &lt;br&gt; To: greasemonkey-dev@googlegroups. com &lt;br&gt; Received: Sunday, January 3, 2010, 7:23 PM
  </summary>
  </entry>
  <entry>
  <author>
  <name>M.Terada</name>
  <email>teram...@gmail.com</email>
  </author>
  <updated>2010-01-04T03:23:53Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/8e47f527ce41e994?show_docid=8e47f527ce41e994</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/8e47f527ce41e994?show_docid=8e47f527ce41e994"/>
  <title type="text">Re: [greasemonkey-dev] Help with greasemonkey link code</title>
  <summary type="html" xml:space="preserve">
  Hi. &lt;br&gt; DOM Level 1 API will not work unless in &amp;quot;unsafeWindow&amp;quot;. &lt;br&gt; So we need to use DOM Level 2. &lt;br&gt; var obj = document.links[2]; &lt;br&gt; var e = document.createEvent(&#39;MouseEve nts&#39;); &lt;br&gt; e.initEvent(&#39;click&#39;, true, false); &lt;br&gt; obj.dispatchEvent(e); &lt;br&gt; ---- &lt;br&gt; teramako &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://d.hatena.ne.jp/teramako/&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; 2010/1/4 mriato &amp;lt;marcori...@yahoo.com&amp;gt;:
  </summary>
  </entry>
  <entry>
  <author>
  <name>mriato</name>
  <email>marcori...@yahoo.com</email>
  </author>
  <updated>2010-01-04T01:55:35Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/503e941e57f539dd?show_docid=503e941e57f539dd</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/90410a8d33fed8c8/503e941e57f539dd?show_docid=503e941e57f539dd"/>
  <title type="text">Help with greasemonkey link code</title>
  <summary type="html" xml:space="preserve">
  Hi, I am a REAL newbie with greasemonkey and javascript, and I have a &lt;br&gt; question. &lt;br&gt; A page I visit has a link, and to get to it I must click what looks &lt;br&gt; like a &amp;quot;button&amp;quot; with the words Details on it. It is not set up as a &lt;br&gt; form submit type button though (where I can use form.elements.click &lt;br&gt; ())... I&#39;ve used Firebug and got right to the Details &amp;quot;button&amp;quot; and the
  </summary>
  </entry>
  <entry>
  <author>
  <name>RodMcguire</name>
  <email>gibbonjab...@yahoo.com</email>
  </author>
  <updated>2010-01-02T20:27:32Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/64b416eb91f3c0a6/f5057517a37a2e41?show_docid=f5057517a37a2e41</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/64b416eb91f3c0a6/f5057517a37a2e41?show_docid=f5057517a37a2e41"/>
  <title type="text">Re: Proxy Greasemonkey</title>
  <summary type="html" xml:space="preserve">
  If all you want to do is to run greasemonkey on a computer where you &lt;br&gt; cannot install it, one solution is to get a USB memory stick and &lt;br&gt; install Portable Firefox and greasemonkey on the stick. &lt;br&gt; I&#39;ve done this in the past with no problem though it is conceivable &lt;br&gt; that some computer systems could block you from running applications
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nikolas Coukouma</name>
  <email>at...@atrus.org</email>
  </author>
  <updated>2010-01-02T18:36:25Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/64b416eb91f3c0a6/f6e889e5197b52d2?show_docid=f6e889e5197b52d2</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/64b416eb91f3c0a6/f6e889e5197b52d2?show_docid=f6e889e5197b52d2"/>
  <title type="text">Re: [greasemonkey-dev] Proxy Greasemonkey</title>
  <summary type="html" xml:space="preserve">
  Like mousehole?
  </summary>
  </entry>
  <entry>
  <author>
  <name>tcvr</name>
  <email>alip...@gmail.com</email>
  </author>
  <updated>2010-01-02T18:10:59Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/64b416eb91f3c0a6/338133b6a011e51a?show_docid=338133b6a011e51a</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/64b416eb91f3c0a6/338133b6a011e51a?show_docid=338133b6a011e51a"/>
  <title type="text">Proxy Greasemonkey</title>
  <summary type="html" xml:space="preserve">
  Hi there, &lt;br&gt; sometimes I am a guest in other PCs and I cannot install any add-ons. &lt;br&gt; So my question is: &lt;br&gt; would it be possible to develop a &amp;quot;proxy greasemonkey&amp;quot;? &lt;br&gt; I will put it on my home server. I will go to &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://my-sweet-home.myhost.org/?url=google.com&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; and the home proxy will: &lt;br&gt; 1) execute the greasemonkey javascripts
  </summary>
  </entry>
  <entry>
  <author>
  <name>vBm</name>
  <email>the....@gmail.com</email>
  </author>
  <updated>2010-01-01T15:10:46Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/08ccdeebf5c7f440/d914023ed121eadb?show_docid=d914023ed121eadb</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/08ccdeebf5c7f440/d914023ed121eadb?show_docid=d914023ed121eadb"/>
  <title type="text">Re: Early Greasemonkey 0.9.0 Preview Build</title>
  <summary type="html" xml:space="preserve">
  In case you want to uninstall script while script&#39;s directory is being &lt;br&gt; used (locked) by some other app GM does remove content of script&#39;s dir &lt;br&gt; but not the directory itself which is logic. Thou script&#39;s reference &lt;br&gt; is still present in User Scripts listing (Manage User Scripts...) and &lt;br&gt; can&#39;t be removed. After clicking again on Uninstall we get &amp;quot;Crap,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Anthony Lieuallen</name>
  <email>arant...@gmail.com</email>
  </author>
  <updated>2009-12-30T17:19:49Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/2e125e30077afc94?show_docid=2e125e30077afc94</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/2e125e30077afc94?show_docid=2e125e30077afc94"/>
  <title type="text">Re: [greasemonkey-dev] Access violation check conflicts with Ubiquity</title>
  <summary type="html" xml:space="preserve">
  Glad to know things are at least mostly solved. &lt;br&gt; At this point, I would hope that the 1.0 plans firm up. I&#39;m still not &lt;br&gt; completely clear if the plans I curently envision will actually work &lt;br&gt; (_and_ be secure enough) but if they do, all this &#39;access check &lt;br&gt; violation&#39; stuff would be finished. &lt;br&gt; (Not that this will happen anytime &amp;quot;soon&amp;quot;. But it should happen.)
  </summary>
  </entry>
  <entry>
  <author>
  <name>esquifit</name>
  <email>esqui...@googlemail.com</email>
  </author>
  <updated>2009-12-29T21:36:31Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/2fd8eb72ffd4d21e?show_docid=2fd8eb72ffd4d21e</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/2fd8eb72ffd4d21e?show_docid=2fd8eb72ffd4d21e"/>
  <title type="text">Re: [greasemonkey-dev] Access violation check conflicts with Ubiquity</title>
  <summary type="html" xml:space="preserve">
  2009/12/29 Johan Sundström &amp;lt;oyas...@gmail.com&amp;gt;: &lt;br&gt; Tested but it doesn&#39;t seem to work. There are to possible places for &lt;br&gt; the function passed to setTimeout: the script or the page. In the &lt;br&gt; first case, it doesn&#39;t work because the GM context doesn&#39;t exists any &lt;br&gt; longer when the timeout is reached. In the second case it doesn&#39;t work
  </summary>
  </entry>
  <entry>
  <author>
  <name>Johan Sundström</name>
  <email>oyas...@gmail.com</email>
  </author>
  <updated>2009-12-29T17:41:08Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/518600a195c58b4e?show_docid=518600a195c58b4e</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/518600a195c58b4e?show_docid=518600a195c58b4e"/>
  <title type="text">Re: [greasemonkey-dev] Access violation check conflicts with Ubiquity</title>
  <summary type="html" xml:space="preserve">
  How about putting the second block above in a function called from a &lt;br&gt; delayed setTimeout? That sounds like it should give the desired &lt;br&gt; effect.
  </summary>
  </entry>
  <entry>
  <author>
  <name>esquifit</name>
  <email>esqui...@googlemail.com</email>
  </author>
  <updated>2009-12-29T15:13:18Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/fa55b0829bce8edd?show_docid=fa55b0829bce8edd</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/fa55b0829bce8edd?show_docid=fa55b0829bce8edd"/>
  <title type="text">Re: [greasemonkey-dev] Access violation check conflicts with Ubiquity</title>
  <summary type="html" xml:space="preserve">
  I&#39;ve found a workaround for window.setTimeout( func, 0) when &lt;br&gt; javascript is blocked by Noscript. The idea is that although &lt;br&gt; javascript is not allowed, DOM events are still being fired. If you &lt;br&gt; attached a handler defined in GM scope, it will be called: &lt;br&gt; Instead of: &lt;br&gt; window.setTimeout( func , 0) &lt;br&gt; where func is a function that makes use of the GM API, use:
  </summary>
  </entry>
  <entry>
  <author>
  <name>esquifit</name>
  <email>esqui...@googlemail.com</email>
  </author>
  <updated>2009-12-28T23:09:13Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/4e57bda147f8b23c?show_docid=4e57bda147f8b23c</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/4e57bda147f8b23c?show_docid=4e57bda147f8b23c"/>
  <title type="text">Re: [greasemonkey-dev] Access violation check conflicts with Ubiquity</title>
  <summary type="html" xml:space="preserve">
  Thanks for your answer. Unfortunately the usual work around via &lt;br&gt; setTimeout is not an option for me, since I have javascript disabled &lt;br&gt; in every page by default (NoScript). &lt;br&gt; Nevertheles, maybe we could still allow file: urls from the extension &lt;br&gt; folder. After all, they could equally be chrome: urls, had the
  </summary>
  </entry>
  <entry>
  <author>
  <name>Anthony Lieuallen</name>
  <email>arant...@gmail.com</email>
  </author>
  <updated>2009-12-28T20:54:00Z</updated>
  <id>http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/448e0be95b9fbad2?show_docid=448e0be95b9fbad2</id>
  <link href="http://groups.google.com/group/greasemonkey-dev/browse_thread/thread/6a6c4e7a0d5fabef/448e0be95b9fbad2?show_docid=448e0be95b9fbad2"/>
  <title type="text">Re: [greasemonkey-dev] Access violation check conflicts with Ubiquity</title>
  <summary type="html" xml:space="preserve">
  Yes. Only &amp;quot;known good&amp;quot; source files are allowed. &lt;br&gt; The standard workaround [1] should probably work. This page could &lt;br&gt; certainly be a lot more discoverable. &lt;br&gt; True. The message was designed for the most common case, the case the &lt;br&gt; access check was designed for. &lt;br&gt; [1] &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://wiki.greasespot.net/0.7.20080121.0%2B_compatibility&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
</feed>
