<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-5604</id>
	<title>Nabble - MozDev - greasemonkey</title>
	<updated>2009-11-25T14:58:41Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/MozDev---greasemonkey-f5604.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/MozDev---greasemonkey-f5604.html" />
	<subtitle type="html">The old greasemonkey's list (&lt;a href=&quot;http://www.mozdev.org/mailman/listinfo/greasemonkey&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;greasemonkey@mozdev.org&lt;/a&gt;) which has been closed.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26521774</id>
	<title>Simple Redirect Script not Working</title>
	<published>2009-11-25T14:58:41Z</published>
	<updated>2009-11-25T14:58:41Z</updated>
	<author>
		<name>Terryphi</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm trying to write a script that gets rid of my schools annoying 'browser not supported' page, but its not working. It's one line long. could someone please give me a hand?
&lt;br&gt;&lt;br&gt;&amp;nbsp;==UserScript==
&lt;br&gt;// @name school redirect
&lt;br&gt;// @namespace rdschool
&lt;br&gt;// @include &lt;a href=&quot;http://pipeline.mycampus.ca/cp/home/check/post?supported=false&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pipeline.mycampus.ca/cp/home/check/post?supported=false&lt;/a&gt;&lt;br&gt;// ==/UserScript==
&lt;br&gt;&amp;nbsp;
&lt;br&gt;var loc = window.location.href;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;window.location.href = &amp;quot;&lt;a href=&quot;http://pipeline.mycampus.ca/cp/home/loginf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pipeline.mycampus.ca/cp/home/loginf&lt;/a&gt;&amp;quot;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Simple-Redirect-Script-not-Working-tp26521774p26521774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26273392</id>
	<title>ill pay someone to make a script for me.</title>
	<published>2009-11-09T12:47:31Z</published>
	<updated>2009-11-09T12:47:31Z</updated>
	<author>
		<name>dreck09</name>
	</author>
	<content type="html">i have a website for my business that logs you out after 60 minutes but its more like 10. &amp;nbsp;support says it works fine. &amp;nbsp;can some make a script that fools the site into thinking im still using it so it doesnt boot me off all the time?
&lt;br&gt;&lt;br&gt;if your interested let me know and how much you charge, thx</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ill-pay-someone-to-make-a-script-for-me.-tp26273392p26273392.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26079170</id>
	<title>Replace Inline CSS Background:URL</title>
	<published>2009-10-27T07:55:21Z</published>
	<updated>2009-10-27T07:55:21Z</updated>
	<author>
		<name>jmc15john</name>
	</author>
	<content type="html">I'm having some difficulty replacing a background image used throughout a page I'm trying to modify. &amp;nbsp;The background:URL only shows up in a few tr's inside a couple different tables throughout the website.
&lt;br&gt;&lt;br&gt;Example of code from website:
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;&amp;lt;td style=&amp;quot;height:25px; color:#FFFFFF; font-weight:bold; background:URL('./images/row_backgroud_grad.gif'); text-align:left;&amp;quot;&amp;gt;Number&amp;lt;/td&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;table width=&amp;quot;220&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot; id=&amp;quot;header&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;tr style=&amp;quot;background:URL('./images/row_backgroud_grad.gif'); height:25px;&amp;quot;&amp;gt;
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;I would like to make a script to search through the website for row_backgroud_grad.gif and replace it with an image of my own. &amp;nbsp;
&lt;br&gt;&lt;br&gt;I've used this code to successfully replace images with with ID img and a src.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var imgs = document.getElementsByTagName('img')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; imgs[0].src = &amp;quot;&lt;a href=&quot;http://photo-hosting.winsoftmagic.com/1/99z7bc4lis.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://photo-hosting.winsoftmagic.com/1/99z7bc4lis.jpg&lt;/a&gt;&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;And I've tried some stuff like this with XPath with no luck. &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;------------------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var thisImg
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var backImg = document.evaluate(&amp;quot;//img[contains(@src, 'row_backgroud_grad')&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (var i=0;i&amp;lt;backImg.snapshotLength;i++) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var thisImg = backImg.snapshotItem(i);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var src = thisImg.src;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var srcMatch = src.match('./images/row_backgroud_grad.gif');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (srcMatch != null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; thisImg.src = '&lt;a href=&quot;http://www.myurl.com/myimage/newback.gif';&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myurl.com/myimage/newback.gif';&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;-------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;Now I realize this above example won't work because it's trying to replace the string src which is not found in the inline style I am trying to edit. &amp;nbsp;I've tried replacing src with background:URL but I can't seem to get anything to work. &amp;nbsp;Any suggestions???
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Jmc15john
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-Inline-CSS-Background%3AURL-tp26079170p26079170.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25876810</id>
	<title>modifying Yahoo Finance Portfolio tables with greasemonkey</title>
	<published>2009-10-13T09:57:30Z</published>
	<updated>2009-10-13T09:57:30Z</updated>
	<author>
		<name>krick</name>
	</author>
	<content type="html">I'm trying to modify my yahoo finance portfolio with greasemonkey so that I can cut and paste the table to a spreadsheet. &amp;nbsp;Here's the URL, but you'll have to log into yahoo and create your own portfolio to actually see anything... &amp;nbsp; &lt;a href=&quot;http://finance.yahoo.com/p?k=pf_2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://finance.yahoo.com/p?k=pf_2&lt;/a&gt;&lt;br&gt;&lt;br&gt;The unmodified page has several span tags with 'display:none' that show up when I cut and paste the page. &amp;nbsp;Additionally, the table has small arrow images indicating up or down before the data in certain cells that also shows up.
&lt;br&gt;&lt;br&gt;I'm trying to strip out all the span tags and img tags using this seemingly simple greasemonkey code, but it doesn't seem to work right and I'm not sure what I'm doing wrong...
&lt;br&gt;&lt;br&gt;//-------------------------
&lt;br&gt;&lt;br&gt;var allItems, thisItem;
&lt;br&gt;allItems = document.getElementsByTagName('span');
&lt;br&gt;for (var i = 0; i &amp;lt; allItems.length; i++) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; thisItem = allItems[i];
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (thisItem.style == 'display:none')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; thisItem.parentNode.removeChild(thisItem);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;allItems = document.getElementsByTagName('img');
&lt;br&gt;for (var i = 0; i &amp;lt; allItems.length; i++) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; thisItem = allItems[i];
&lt;br&gt;&amp;nbsp; &amp;nbsp; thisItem.parentNode.removeChild(thisItem);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;//------------------------------------</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/modifying-Yahoo-Finance-Portfolio-tables-with-greasemonkey-tp25876810p25876810.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25825760</id>
	<title>Greasemonkey script to Header?</title>
	<published>2009-10-09T11:23:00Z</published>
	<updated>2009-10-09T11:23:00Z</updated>
	<author>
		<name>koopa13</name>
	</author>
	<content type="html">I recently developed a Greasemonkey script, but now I don't want to use Greasemonkey anymore, I want apply the script to the head of my HTML page so that the script will run on my page without Greasemonkey. How can I do this?? What changes do I have to make to my code?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Greasemonkey-script-to-Header--tp25825760p25825760.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25518447</id>
	<title>Simple Html search, store and replace script</title>
	<published>2009-09-18T21:12:59Z</published>
	<updated>2009-09-18T21:12:59Z</updated>
	<author>
		<name>Stephen304</name>
	</author>
	<content type="html">I need to make a script that searches a page for a certain title, stores it, searches for a block of code, and replaces it with a link with the title in the link.
&lt;br&gt;&lt;br&gt;Ex.
&lt;br&gt;&lt;br&gt;Awesome_cool_thing.zip &amp;lt;----- Copy
&lt;br&gt;&amp;lt;picture&amp;gt;
&lt;br&gt;Oh noes!!! &amp;lt;----- Cut
&lt;br&gt;www.place.com/downloads/Awesome_cool_thing.zip &amp;lt;------ paste
&lt;br&gt;&lt;br&gt;&lt;br&gt;Could anybody help me out with examples of a searching piece of scrip and an example of how to store bits of stuff, and basically how to do this?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Simple-Html-search%2C-store-and-replace-script-tp25518447p25518447.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25321402</id>
	<title>Could anyone please write a very small script for me?</title>
	<published>2009-09-06T13:10:50Z</published>
	<updated>2009-09-06T13:10:50Z</updated>
	<author>
		<name>Nahum</name>
	</author>
	<content type="html">&lt;a href=&quot;https://sheilta.apps.openu.ac.il/pls/mtl/student.login&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sheilta.apps.openu.ac.il/pls/mtl/student.login&lt;/a&gt;&lt;br&gt;&lt;br&gt;I need to fill the 3 text fields by
&lt;br&gt;USERNAME
&lt;br&gt;PASSWORD
&lt;br&gt;ID
&lt;br&gt;and press the button:
&lt;br&gt;&lt;img src=&quot;http://old.nabble.com/file/p25321402/ishur.gif&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;big thanks ahead.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Could-anyone-please-write-a-very-small-script-for-me--tp25321402p25321402.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25176264</id>
	<title>JQuery Ajax functions doesn't work...</title>
	<published>2009-08-27T10:45:19Z</published>
	<updated>2009-08-27T10:45:19Z</updated>
	<author>
		<name>AnHeLLiDo</name>
	</author>
	<content type="html">Hi guys.
&lt;br&gt;&lt;br&gt;I'm tryin tu import some html file using JQuery and it's impossible for me, also using the direct AJAX metod i can't do this.
&lt;br&gt;&lt;br&gt;Here is my code...
&lt;br&gt;&lt;br&gt;function GM_wait() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(typeof unsafeWindow.jQuery == 'undefined'){ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.setTimeout(GM_wait,100); 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; else { 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $ = unsafeWindow.jQuery; letsJQuery(); 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;GM_wait();
&lt;br&gt;&lt;br&gt;&lt;br&gt;function letsJQuery() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(document).ready(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;va&amp;quot;); //Works
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.get(working_url_of_my_file, function(data){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;.column:last&amp;quot;).prepend(data);	
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;yendo&amp;quot;); //Doesn't work :(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;fue&amp;quot;);	//Works		
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Any idea??</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JQuery-Ajax-functions-doesn%27t-work...-tp25176264p25176264.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24736333</id>
	<title>document.getElementById not returning elements on initial page load</title>
	<published>2009-07-30T04:04:17Z</published>
	<updated>2009-07-30T04:04:17Z</updated>
	<author>
		<name>simon_</name>
	</author>
	<content type="html">Hey,
&lt;br&gt;&lt;br&gt;I was wondering if someone could help me. &amp;nbsp;I've written a small script to fill in a form which I have to do a lot for me work.
&lt;br&gt;&lt;br&gt;I'm getting something strange happening where the script does not work when I first load the page. &amp;nbsp;If I refresh the page then the script works and the form is filled as expected.
&lt;br&gt;&lt;br&gt;The page doesn't change upon requests. &amp;nbsp;What is more, I can inspect the source and the DOM and the element which is reported as being null (document.getElementById is returning it null) is there.
&lt;br&gt;&lt;br&gt;I can also inspect the page via a Javascript shell in that page's context. &amp;nbsp;Running document.getElementById in the shell returns the element correctly.
&lt;br&gt;&lt;br&gt;Has anyone ideas for what this may be?
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/document.getElementById-not-returning-elements-on-initial-page-load-tp24736333p24736333.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24555183</id>
	<title>Write Greasemonkey scripts with Firebug?</title>
	<published>2009-07-19T02:06:52Z</published>
	<updated>2009-07-19T02:06:52Z</updated>
	<author>
		<name>rittergig</name>
	</author>
	<content type="html">Is there a way to write and edit Greasemonkey scripts with/ within Firebug?
&lt;br&gt;That would be pretty cool!
&lt;br&gt;&lt;br&gt;Thanks!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Write-Greasemonkey-scripts-with-Firebug--tp24555183p24555183.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24281647</id>
	<title>tweaking the Google Adwords page</title>
	<published>2009-06-30T16:30:56Z</published>
	<updated>2009-06-30T16:30:56Z</updated>
	<author>
		<name>mortona</name>
	</author>
	<content type="html">The &lt;a href=&quot;https://adwords.google.com/select/KeywordToolExternal&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Google Adwords&lt;/a&gt;&amp;nbsp;tool spits out a list of keywords. &amp;nbsp;I'd like to turn these into links to google search results. &amp;nbsp;
&lt;br&gt;&lt;br&gt;I can get the words with:
&lt;br&gt;&lt;br&gt;var c0 = document.getElementsByClassName('c0');
&lt;br&gt;&lt;br&gt;&lt;br&gt;How would I loop through this array and replace the text with links?
&lt;br&gt;&lt;br&gt;Thanks!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/tweaking-the-Google-Adwords-page-tp24281647p24281647.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24183344</id>
	<title>Moving buttons help :(</title>
	<published>2009-06-24T04:51:15Z</published>
	<updated>2009-06-24T04:51:15Z</updated>
	<author>
		<name>evilspawn4</name>
	</author>
	<content type="html">Hi i recently downloaded the &amp;quot;Turn off the lights&amp;quot; youtube script for greasemonkey and I'm having problems with it
&lt;br&gt;&lt;br&gt;as you can see i use adblock plus and the buttons are a little 2 close for comfort
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/file/p24183344/notgood1.jpg&quot; target=&quot;_top&quot;&gt;notgood1.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;also the buttons being there can sometimes trigger my real player download button to appear and block me from hitting it witch gets really annoying
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/file/p24183344/notgood2.jpg&quot; target=&quot;_top&quot;&gt;notgood2.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;as you can see i didn't come running to the forums first thing crying like a little baby...i actually did some searching on google but to no avail :(
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/file/p24183344/triedgoogle.jpg&quot; target=&quot;_top&quot;&gt;triedgoogle.jpg&lt;/a&gt;&lt;br&gt;&lt;br&gt;so would one of you grease monkey guru's please help me out :D
&lt;br&gt;&lt;br&gt;ty for reading and hope to hear from you soon :)
&lt;br&gt;&lt;br&gt;P.S. this is the source if you need it
&lt;br&gt;&lt;br&gt;// ==UserScript==
&lt;br&gt;// @name 	Turn Off the Lights
&lt;br&gt;// @author 	Tayfun Sen
&lt;br&gt;// @namespace tayfunsen.com
&lt;br&gt;// @version 	0.2
&lt;br&gt;// @description Enabling the lights out feature on YouTube on every video.
&lt;br&gt;// @source 	&lt;a href=&quot;http://userscripts.org/scripts/show/49726&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://userscripts.org/scripts/show/49726&lt;/a&gt;&lt;br&gt;// @license 	GPL 2 or later
&lt;br&gt;// @include 	&lt;a href=&quot;http://*.youtube.com/watch?*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://*.youtube.com/watch?*&lt;/a&gt;&lt;br&gt;// @include 	&lt;a href=&quot;http://youtube.com/watch?*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://youtube.com/watch?*&lt;/a&gt;&lt;br&gt;// ==/UserScript==
&lt;br&gt;//
&lt;br&gt;// YouTube Lights-Out user script.
&lt;br&gt;// This is a Greasemonkey user script.
&lt;br&gt;//
&lt;br&gt;// To install, you need Greasemonkey: 
&lt;br&gt;// &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/748&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://addons.mozilla.org/en-US/firefox/addon/748&lt;/a&gt;&lt;br&gt;//
&lt;br&gt;// --------------------------------------------------
&lt;br&gt;//
&lt;br&gt;// Started with me wanting the &amp;quot;lights out&amp;quot; feature on many videos that I like.
&lt;br&gt;// It is currently found on some YouTube videos but not all of them.
&lt;br&gt;// 
&lt;br&gt;// Copyright (c) 21 May 2009, Tayfun Sen
&lt;br&gt;// See my web site: &lt;a href=&quot;http://blog.tayfunsen.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.tayfunsen.com&lt;/a&gt;&amp;nbsp;(mostly in Turkish, sorry!)
&lt;br&gt;// 
&lt;br&gt;//
&lt;br&gt;// Released under the GPL license
&lt;br&gt;// &lt;a href=&quot;http://www.gnu.org/copyleft/gpl.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/copyleft/gpl.html&lt;/a&gt;&lt;br&gt;//
&lt;br&gt;// This program is free software; you can redistribute it and/or modify
&lt;br&gt;// it under the terms of the GNU General Public License as published by
&lt;br&gt;// the Free Software Foundation; either version 2 of the License, or
&lt;br&gt;// (at your option) any later version.
&lt;br&gt;//
&lt;br&gt;// This program is distributed in the hope that it will be useful,
&lt;br&gt;// but WITHOUT ANY WARRANTY; without even the implied warranty of
&lt;br&gt;// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. &amp;nbsp;See the
&lt;br&gt;// GNU General Public License for more details.
&lt;br&gt;//
&lt;br&gt;// You should have received a copy of the GNU General Public License
&lt;br&gt;// along with this program. &amp;nbsp;If not, see &amp;lt;&lt;a href=&quot;http://www.gnu.org/licenses/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/licenses/&lt;/a&gt;&amp;gt;.
&lt;br&gt;&lt;br&gt;(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; // Add longform style if it is not already existing.
&lt;br&gt;&amp;nbsp; &amp;nbsp; var vidTitleEl = document.getElementById(&amp;quot;watch-vid-title&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (vidTitleEl.getAttribute(&amp;quot;class&amp;quot;).indexOf(&amp;quot;longform&amp;quot;) == -1) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vidTitleEl.setAttribute(&amp;quot;class&amp;quot;, vidTitleEl.getAttribute(&amp;quot;class&amp;quot;) + &amp;quot; longform&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // Get the child element whose children will be the new buttons.
&lt;br&gt;&amp;nbsp; &amp;nbsp; var buttonsEl = document.getElementById(&amp;quot;watch-longform-buttons&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (buttonsEl == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // YouTube pages must have changed. An update is needed then.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // Here comes the buttons.
&lt;br&gt;&amp;nbsp; &amp;nbsp; var lights_off_switch = document.createElement('div');
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_off_switch.setAttribute('id', 'lights-off-switch');
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_off_switch.setAttribute('class', 'reverse-tooltip-wrapper');
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_off_switch.setAttribute('style', &amp;quot;z-index: 0;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_off_switch.innerHTML = &amp;nbsp;'&amp;lt;button id=&amp;quot;watch-longform-lights-off&amp;quot; class=&amp;quot;master-sprite&amp;quot; onmouseout=&amp;quot;toggleSimpleTooltip(this, false)&amp;quot; onmouseover=&amp;quot;toggleSimpleTooltip(this, true)&amp;quot; onclick=&amp;quot;toggleLights(true); this.blur()&amp;quot;/&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;reverse-tooltip-wrapper-box hid&amp;quot; style=&amp;quot;display: none;&amp;quot;&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;reverse-tooltip-box&amp;quot; style=&amp;quot;background-image: url(/img/tooltip-reverse.gif);&amp;quot;&amp;gt;Turn down the lights&amp;lt;/div&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;img class=&quot;reverse-tooltip-box-bot&quot; src=&quot;http://s.ytimg.com/yt/img/pixel-vfl73.gif&quot; style=&quot;background-image: url(/img/tooltip-reverse.gif);&quot; /&gt;&amp;nbsp;\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;';
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; var lights_on_switch = document.createElement('div');
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_on_switch.setAttribute('id', 'lights-on-switch');
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_on_switch.setAttribute('class', 'reverse-tooltip-wrapper');
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_on_switch.setAttribute('style', &amp;quot;z-index: 0;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; lights_on_switch.innerHTML = '&amp;lt;button id=&amp;quot;watch-longform-lights-on&amp;quot; class=&amp;quot;master-sprite&amp;quot; onmouseout=&amp;quot;toggleSimpleTooltip(this, false)&amp;quot; onmouseover=&amp;quot;toggleSimpleTooltip(this, true)&amp;quot; onclick=&amp;quot;toggleLights(false); this.blur()&amp;quot;/&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;reverse-tooltip-wrapper-box hid&amp;quot; style=&amp;quot;display: none;&amp;quot;&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;reverse-tooltip-box&amp;quot; style=&amp;quot;background-image: url(/img/tooltip-reverse.gif);&amp;quot;&amp;gt;Turn up the lights&amp;lt;/div&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;img class=&quot;reverse-tooltip-box-bot&quot; src=&quot;http://s.ytimg.com/yt/img/pixel-vfl73.gif&quot; style=&quot;background-image: url(/img/tooltip-reverse.gif);&quot; /&gt;&amp;nbsp;\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;'; 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; var player_toggle_switch = document.createElement('div'); 
&lt;br&gt;&amp;nbsp; &amp;nbsp; player_toggle_switch.setAttribute('id', 'player-toggle-switch');
&lt;br&gt;&amp;nbsp; &amp;nbsp; player_toggle_switch.setAttribute('class', 'reverse-tooltip-wrapper');
&lt;br&gt;&amp;nbsp; &amp;nbsp; player_toggle_switch.setAttribute('style', &amp;quot;z-index: 0;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; player_toggle_switch.innerHTML = '&amp;lt;button id=&amp;quot;watch-longform-player&amp;quot; class=&amp;quot;master-sprite&amp;quot; onmouseout=&amp;quot;toggleSimpleTooltip(this, false)&amp;quot; onmouseover=&amp;quot;toggleSimpleTooltip(this, true)&amp;quot; onclick=&amp;quot;toggleWidePlayer(!hasClass(_gel(\'baseDiv\'), \'watch-wide-mode\')); return false&amp;quot;/&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;reverse-tooltip-wrapper-box hid&amp;quot; style=&amp;quot;display: none;&amp;quot;&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;reverse-tooltip-box&amp;quot; style=&amp;quot;background-image: url(/img/tooltip-reverse.gif);&amp;quot;&amp;gt;Change Player Size&amp;lt;/div&amp;gt; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;img class=&quot;reverse-tooltip-box-bot&quot; src=&quot;http://s.ytimg.com/yt/img/pixel-vfl73.gif&quot; style=&quot;background-image: url(/img/tooltip-reverse.gif);&quot; /&gt;&amp;nbsp;\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;';
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // Get the place to insert the buttons:
&lt;br&gt;&amp;nbsp; &amp;nbsp; // Currently buttons are inserted as the first buttons.
&lt;br&gt;&amp;nbsp; &amp;nbsp; var insertionPlace = buttonsEl.firstChild;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // Add toggle view button.
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (document.getElementById('player-toggle-switch') == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Add the toggle video button.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; buttonsEl.insertBefore(player_toggle_switch, insertionPlace);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // Enable the lights out feature if it is not already enabled.
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (document.getElementById('lights-off-switch') == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Add the lights-off buttons.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; buttonsEl.insertBefore(lights_off_switch, insertionPlace);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; buttonsEl.insertBefore(lights_on_switch, insertionPlace);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Also add the needed JS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var headEl = document.getElementsByTagName(&amp;quot;head&amp;quot;)[0];
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var newScript = document.createElement('script');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; newScript.type = &amp;quot;text/javascript&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; newScript.innerHTML = 'function toggleLights(lightsOff) { \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (lightsOff) { \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; addClass(document.body, \'watch-lights-off\'); \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else { \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; removeClass(document.body, \'watch-lights-off\'); \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (!lightsOff) { \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hideDiv(\'watch-longform-shade\'); \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else { \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _gel(\'watch-longform-shade\').style.height = parseInt(_gel(\'baseDiv\').offsetHeight) + \'px\'; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; showDiv(\'watch-longform-shade\'); \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Append this JS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; headEl.appendChild(newScript); 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Append the shade div as well.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (document.getElementById('watch-longform-shade') == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var shadeEl = document.createElement('div');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; shadeEl.setAttribute(&amp;quot;id&amp;quot;,&amp;quot;watch-longform-shade&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; shadeEl.style.display = &amp;quot;none&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var baseDivEl = document.getElementById(&amp;quot;baseDiv&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; baseDivEl.appendChild(shadeEl);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;})();
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Moving-buttons-help-%3A%28-tp24183344p24183344.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23819072</id>
	<title>help extracting html to my website</title>
	<published>2009-06-01T10:50:24Z</published>
	<updated>2009-06-01T10:50:24Z</updated>
	<author>
		<name>Khanyboy</name>
	</author>
	<content type="html">hi
&lt;br&gt;&lt;br&gt;heres my requirement. i need to load the html on a certain website (not owned by me but safe) into a variable and then send it to a page on my website for analysis.
&lt;br&gt;&lt;br&gt;any suggestions please? i am new to Greasemonkey so be gentle
&lt;br&gt;&lt;br&gt;K</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/help-extracting-html-to-my-website-tp23819072p23819072.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23553320</id>
	<title>Wait for page to load before continue</title>
	<published>2009-05-14T21:39:44Z</published>
	<updated>2009-05-14T21:39:44Z</updated>
	<author>
		<name>CaseyD</name>
	</author>
	<content type="html">I have a script that changes to a new link in a loop using &amp;quot;window.location.href = url&amp;quot;. &amp;nbsp;The script needs to do this many times (about 25 times). &amp;nbsp;But, I need for the script to pause after each time before the script continues. 
&lt;br&gt;&lt;br&gt;If I put in a delay by using &amp;quot;alert(&amp;quot;pause&amp;quot;)&amp;quot; in the loop, every thing works fine. &amp;nbsp;How do I tell the script to wait until &amp;quot;url&amp;quot; has finished loading?
&lt;br&gt;&lt;br&gt;This is not my exact code, but is what I am trying to do:
&lt;br&gt;&lt;br&gt;for (i=0;i&amp;lt;x.length;i++)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; window.location.href = &amp;quot;&lt;a href=&quot;http://www.abcxyz.com/page_&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.abcxyz.com/page_&lt;/a&gt;&amp;quot; + x;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Thanks!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wait-for-page-to-load-before-continue-tp23553320p23553320.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23551738</id>
	<title>Disabling AJAX in Yahoo Mail</title>
	<published>2009-05-14T18:04:02Z</published>
	<updated>2009-05-14T18:04:02Z</updated>
	<author>
		<name>katcill</name>
	</author>
	<content type="html">How do I turn off AJAX in Yahoo's web-based email client?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Disabling-AJAX-in-Yahoo-Mail-tp23551738p23551738.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23501147</id>
	<title>Re: Replace width and height</title>
	<published>2009-05-12T04:56:37Z</published>
	<updated>2009-05-12T04:56:37Z</updated>
	<author>
		<name>namit</name>
	</author>
	<content type="html">&lt;a href=&quot;http://userscripts.org/scripts/show/48895&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://userscripts.org/scripts/show/48895&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-width-and-height-tp23471086p23501147.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23471086</id>
	<title>Replace width and height</title>
	<published>2009-05-10T08:24:05Z</published>
	<updated>2009-05-10T08:24:05Z</updated>
	<author>
		<name>namit</name>
	</author>
	<content type="html">I have this in a page
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp;var so = new SWFObject(&amp;quot;newplayer.swf&amp;quot;,&amp;quot;single&amp;quot;,&amp;quot;400&amp;quot;,&amp;quot;330&amp;quot;,&amp;quot;7&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addParam(&amp;quot;allowfullscreen&amp;quot;,&amp;quot;true&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addParam(&amp;quot;allowScriptAccess&amp;quot;,&amp;quot;always&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addParam(&amp;quot;wmode&amp;quot;,&amp;quot;opaque&amp;quot;); 
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;companionId&amp;quot;,&amp;quot;campid&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;autostart&amp;quot;,&amp;quot;false&amp;quot;); &amp;nbsp; 
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;file&amp;quot;,&amp;quot;&lt;a href=&quot;http://www.supernovatube.com/cdn2/1241971882/f950c021e9fdff1b51ed47f3cf7c9106/86.47.56.182/618671.flv&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.supernovatube.com/cdn2/1241971882/f950c021e9fdff1b51ed47f3cf7c9106/86.47.56.182/618671.flv&lt;/a&gt;&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;width&amp;quot;,&amp;quot;400&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;height&amp;quot;,&amp;quot;330&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;pid&amp;quot;,&amp;quot;remoralimited&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;title&amp;quot;,&amp;quot;fastpasstv.com boner425&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;categories&amp;quot;,&amp;quot;TV&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;keywords&amp;quot;,&amp;quot;TV&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;duration&amp;quot;,&amp;quot;2582&amp;quot;);
&lt;br&gt;&amp;nbsp;so.addVariable(&amp;quot;id&amp;quot;,&amp;quot;184f5564d34e0d953c33&amp;quot;);
&lt;br&gt;&amp;nbsp;so.write(&amp;quot;adaptvDiv&amp;quot;);
&lt;br&gt;&amp;nbsp;&amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;How do i replace the width and height in this?
&lt;br&gt;&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-width-and-height-tp23471086p23471086.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23361260</id>
	<title>Re: Replace FRAME</title>
	<published>2009-05-03T17:03:44Z</published>
	<updated>2009-05-03T17:03:44Z</updated>
	<author>
		<name>jhayes</name>
	</author>
	<content type="html">(function() {
&lt;br&gt;&amp;nbsp; frameset = document.getElementsByTagName('frameset')[0];
&lt;br&gt;&amp;nbsp; if (frameset) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; frame = document.getElementsByTagName('frame')[1];
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (frame &amp;&amp; frame.name == '---FRAME-NAME----') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; frame.src = '--NEWFRAMEURL--'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; frameset.rows = '120,*'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;})();
&lt;br&gt;&lt;br&gt;see above (also resizes the frames)</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-FRAME-tp22970877p23361260.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23346797</id>
	<title>Re: Replace FRAME</title>
	<published>2009-05-02T07:49:07Z</published>
	<updated>2009-05-02T07:49:07Z</updated>
	<author>
		<name>namit</name>
	</author>
	<content type="html">How did you do that, can i have code?
&lt;br&gt;&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-FRAME-tp22970877p23346797.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23326664</id>
	<title>Re: Replace FRAME</title>
	<published>2009-04-30T17:20:27Z</published>
	<updated>2009-04-30T17:20:27Z</updated>
	<author>
		<name>jhayes</name>
	</author>
	<content type="html">I figured it out.
&lt;br&gt;Created a script for it.
&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-FRAME-tp22970877p23326664.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23280515</id>
	<title>Re: Is my script running? (Problem with URLs, Facebook)</title>
	<published>2009-04-28T09:28:36Z</published>
	<updated>2009-04-28T09:28:36Z</updated>
	<author>
		<name>mightythor</name>
	</author>
	<content type="html">I find that grease monkey is looking for an exact match when deciding whether to execute a script. &amp;nbsp;Even proper wildcards don't always produce a hit. &amp;nbsp;With facebook, the workaround seems to be to hit Refresh. &amp;nbsp;If you are at your home, for example, and the address has a bunch of irrelevant garbage in it, hitting Refresh eliminates the garbage, and the url is re-written to include just &lt;a href=&quot;http://www.facebook.com/home.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.facebook.com/home.php&lt;/a&gt;, which will fire your script. </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-my-script-running--%28Problem-with-URLs%2C-Facebook%29-tp23052081p23280515.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23193074</id>
	<title>java executes greasemonkey script</title>
	<published>2009-04-23T02:01:58Z</published>
	<updated>2009-04-23T02:01:58Z</updated>
	<author>
		<name>gurkerl</name>
	</author>
	<content type="html">Hi, does anybody know an api or a technique to execute greasemonkey scripts from java?
&lt;br&gt;Maybe there is an Rhino api for greasemonkey that executes the javascript code in these scripts.
&lt;br&gt;Please respond!
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/java-executes-greasemonkey-script-tp23193074p23193074.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23052081</id>
	<title>Is my script running? (Problem with URLs, Facebook)</title>
	<published>2009-04-14T20:52:27Z</published>
	<updated>2009-04-14T20:52:27Z</updated>
	<author>
		<name>bdc</name>
	</author>
	<content type="html">I'm writing a script to run on facebook.com/home.php, but it doesn't execute under all circumstances, which I find rather bizarre.
&lt;br&gt;&lt;br&gt;I have included &lt;a href=&quot;http://www.facebook.com/home.php*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.facebook.com/home.php*&lt;/a&gt;. When I enter the URL into the address bar the script runs marvelously. When I navigate there by clicking 'home' or on the logo (these URLs are of the form &lt;a href=&quot;http://www.facebook.com/home.php#/home.php?ref=logo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.facebook.com/home.php#/home.php?ref=logo&lt;/a&gt;), the script does not run.
&lt;br&gt;&lt;br&gt;There are three possibilities:
&lt;br&gt;&lt;br&gt;1. The problem lies with Facebook. This is most probable. Facebook is so obfuscated with Javascript that it's possible some internal mechanism I don't understand (regarding the way it deals with URLs) is messing with the basic function of the Greasemonkey script. Have you written scripts for Facebook before?
&lt;br&gt;&lt;br&gt;2. The problem lies with Greasemonkey. I doubt this is the case, but if so, has anyone experienced a bug like this before? Is there a fix?
&lt;br&gt;&lt;br&gt;3. The problem lies with me. I don't think this is likely, because the effect still occurs even when the script is shortened to &amp;quot;alert(0)&amp;quot;.
&lt;br&gt;&lt;br&gt;Ideas?
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-my-script-running--%28Problem-with-URLs%2C-Facebook%29-tp23052081p23052081.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22970877</id>
	<title>Replace FRAME</title>
	<published>2009-04-09T06:23:02Z</published>
	<updated>2009-04-09T06:23:02Z</updated>
	<author>
		<name>jhayes</name>
	</author>
	<content type="html">Hi, I am trying to replace a frame on a website I frequent often. I want to insert a custom frame there, with a new src.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Replace-FRAME-tp22970877p22970877.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22080613</id>
	<title>Detecting Ajax requests</title>
	<published>2009-02-18T07:04:41Z</published>
	<updated>2009-02-18T07:04:41Z</updated>
	<author>
		<name>claye</name>
	</author>
	<content type="html">Anyone know if there is a way to detect AJAX requests, possibly using XMLHttpRequest? 
&lt;br&gt;&lt;br&gt;Here is why I ask: I am using a .NET application that is 100% AJAX, but the developers did a horrible job, and the requests take a VERY long time. I just want to load an animated loading gif or set the cursor to &amp;quot;wait&amp;quot; while requests are being sent and received so that I'm not sitting like a fool for 60 seconds after ever click I make, wondering if anything is happening or not. </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Detecting-Ajax-requests-tp22080613p22080613.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22051193</id>
	<title>reassigning a function</title>
	<published>2009-02-16T22:08:54Z</published>
	<updated>2009-02-16T22:08:54Z</updated>
	<author>
		<name>gregie156</name>
	</author>
	<content type="html">Hello
&lt;br&gt;i wanted to alter an onClick behavior of some buttons on a site by changing what the onclick function does. the function is called cmdItemOpen so i wrote the following code
&lt;br&gt;&lt;br&gt;cmdItemOpen = function(){
&lt;br&gt;//my new code
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;this seemed to have had the desired effect. but then suddenly the behavior returned to the original one. i've done some testing and it seems that the rest of the script runs ok, except for the function reasigning part. to test i put some alerts throughout the script and they run except the one in my cmdItemOpen function. any thoughts on why this happens and how this could be fixed? thanks.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/reassigning-a-function-tp22051193p22051193.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21852624</id>
	<title>Overriding a hard-coded Javascript variable??</title>
	<published>2009-02-05T06:37:55Z</published>
	<updated>2009-02-05T06:37:55Z</updated>
	<author>
		<name>JonathanHeard</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&amp;nbsp; &amp;nbsp;I'm hoping someone can help shed some light on a little problem I'm trying to solve...
&lt;br&gt;&lt;br&gt;I have to use an Oracle Forms application which is lauched by some utterly horrible javascript. It does crude browser detection and then concatenates a whole bunch of variables into another variable starting with an EMBED tag and finally does a document.writeln of the composed HTML to start a Java Applet.
&lt;br&gt;&lt;br&gt;What I want to do is override a variable which defines the application's look-and-feel., because the hard-coded Look and Feel called 'oracle' is horrible and very slow and I far prefer the 'generic' one.
&lt;br&gt;&lt;br&gt;When I view the launch page's source, the variable is just defined as:
&lt;br&gt;&amp;nbsp; var xuilaf &amp;nbsp; &amp;nbsp;= &amp;quot;oracle&amp;quot;
&lt;br&gt;&lt;br&gt;Which then later gets munged into a big string with:
&lt;br&gt;&amp;nbsp; var NShtml = xHTMLpreApplet;
&lt;br&gt;&amp;nbsp; NShtml += '&amp;lt;EMBED';
&lt;br&gt;&amp;nbsp; ...
&lt;br&gt;&amp;nbsp; NShtml += ' &amp;nbsp; &amp;nbsp;lookAndFeel=&amp;quot;' &amp;nbsp; &amp;nbsp; &amp;nbsp;+ xuilaf + '&amp;quot;';
&lt;br&gt;&amp;nbsp; ...
&lt;br&gt;&amp;nbsp; document.writeln(NShtml);
&lt;br&gt;&lt;br&gt;In Opera 9.x, it couldn't be more simple to override this - the user Javascript is simply:
&lt;br&gt;window.opera.defineMagicVariable( 'xuilaf', function () { return &amp;quot;generic&amp;quot;; }, null );
&lt;br&gt;&lt;br&gt;But I cannot achieve the same result using Grease Monkey (I need to run this application in FireFox for other reasons)...
&lt;br&gt;&lt;br&gt;So In Grease Monkey I have tried:
&lt;br&gt;unsafeWindow.xuilaf = &amp;quot;generic&amp;quot;;
&lt;br&gt;&lt;br&gt;And I've tried:
&lt;br&gt;unsafeWindow.watch('xuilaf', 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function(property, oldval, newval) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; newval = 'generic'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert('Hit')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return newval
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;**BUT** The watch never gets triggered unless I add a further line in Grease Monkey which changes the value. From what I can tell, any changes I make using GreaseMonkey seem to be actioned after it's already embedded the Java Applet launcher, which is too late.
&lt;br&gt;&lt;br&gt;I also tried to define unsafeWindow.xuilaf itself as a function which just returns &amp;quot;generic&amp;quot; but I kept getting syntax errors.
&lt;br&gt;&lt;br&gt;I've found nothing helpful in the GreaseMonkey documentation -- Can anyone point me in the right direction with this?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Jonathan
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overriding-a-hard-coded-Javascript-variable---tp21852624p21852624.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21683658</id>
	<title>calling a specific div</title>
	<published>2009-01-27T03:30:07Z</published>
	<updated>2009-01-27T03:30:07Z</updated>
	<author>
		<name>noordung</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;JavaScript is not my field and is a bit above my knowledge but I'm trying to get this thing working...
&lt;br&gt;&lt;br&gt;I'm trying to &amp;quot;call&amp;quot; a specific div, which doesn't have an id - only a class attribute. If I use getElementsByClassName it obviously returns me all elements with this class. But I would like to call only a specific one.
&lt;br&gt;&lt;br&gt;I'm thinking of modifying the HTML so I can insert an id att. into the div I want, then calling this id later in the script. Would that work or should I save myself some time?
&lt;br&gt;&lt;br&gt;Any suggestions well appreciated.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/calling-a-specific-div-tp21683658p21683658.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21655045</id>
	<title>Help with replacing background image</title>
	<published>2009-01-25T10:32:28Z</published>
	<updated>2009-01-25T10:32:28Z</updated>
	<author>
		<name>PolarDude</name>
	</author>
	<content type="html">Currently I have a script that replaces 2 images on this site &lt;a href=&quot;http://forums.station.sony.com/swg/forums/list.m&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.station.sony.com/swg/forums/list.m&lt;/a&gt;&amp;nbsp;But i cannot get it to replace the background image. 
&lt;br&gt;&lt;br&gt;here is what my script looks like I want it to replace the top_stretch.jpg with the top_middle_1.jpg but it doesnt work. it does work with replacing the top_left.jpg because that is an image. as the top_stretch is a background. 
&lt;br&gt;&lt;br&gt;// ==UserScript==
&lt;br&gt;// @name &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SWG Forum
&lt;br&gt;// @namespace &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://userscripts.org/scripts/7671&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://userscripts.org/scripts/7671&lt;/a&gt;&lt;br&gt;// @include &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://forums.station.sony.com/swg/forums/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.station.sony.com/swg/forums/*&lt;/a&gt;&lt;br&gt;// ==/UserScript==
&lt;br&gt;&lt;br&gt;var heart = new Object();
&lt;br&gt;heart.src = &amp;quot;&lt;a href=&quot;http://dl.getdropbox.com/u/525938/top_middle_1.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/525938/top_middle_1.jpg&lt;/a&gt;&amp;quot;;
&lt;br&gt;var totalstats = new Object();
&lt;br&gt;totalstats.src = &amp;quot;&lt;a href=&quot;http://dl.getdropbox.com/u/525938/top_left_2.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/525938/top_left_2.jpg&lt;/a&gt;&amp;quot;;
&lt;br&gt;&lt;br&gt;&lt;br&gt;//
&lt;br&gt;//// define the images to replace
&lt;br&gt;var imageList = new Object();
&lt;br&gt;imageList[&amp;quot;&lt;a href=&quot;http://forums.station.sony.com/swg/styles/SWG/swg_classic/images/top_left.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.station.sony.com/swg/styles/SWG/swg_classic/images/top_left.jpg&lt;/a&gt;&amp;quot;] = {remove: false, bg: &amp;quot;#000000&amp;quot;, fg: &amp;quot;#000&amp;quot;, newimage:
&lt;br&gt;&lt;br&gt;totalstats.src};
&lt;br&gt;imageList[&amp;quot;&lt;a href=&quot;http://forums.station.sony.com/swg/styles/SWG/swg_classic/images/top_stretch.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.station.sony.com/swg/styles/SWG/swg_classic/images/top_stretch.jpg&lt;/a&gt;&amp;quot;] = {remove: false, fg: &amp;quot;#000&amp;quot;, newimage:
&lt;br&gt;&lt;br&gt;heart.src};
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;// replace images with replacements
&lt;br&gt;&lt;br&gt;// grab all the images on the page
&lt;br&gt;var images = document.evaluate('//img', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
&lt;br&gt;// loop through all of the images on the page
&lt;br&gt;for (var i = 0; i &amp;lt; images.snapshotLength; i++) {
&lt;br&gt;// place the current image into a variable
&lt;br&gt;var img = images.snapshotItem(i);
&lt;br&gt;// check if the current image is to be replaced with a new version
&lt;br&gt;if (imageList[img.src]) {
&lt;br&gt;// replace the current image with one from above
&lt;br&gt;img.src = imageList[img.src].newimage;
&lt;br&gt;}
&lt;br&gt;} </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-with-replacing-background-image-tp21655045p21655045.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21541201</id>
	<title>Script request (game)</title>
	<published>2009-01-19T03:24:07Z</published>
	<updated>2009-01-19T03:24:07Z</updated>
	<author>
		<name>bamaplaya1</name>
	</author>
	<content type="html">alright i actually have 2 requests. the first should be super easy.
&lt;br&gt;&lt;br&gt;both are for the game &lt;a href=&quot;http://www.drugrunners.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;drugrunners.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;1) alright there are set times for Grow(:10, :40) and for Sales.(:25, :55) basically i want the greasemonkey to pop up an alert 5min b4 each 1 reminding me.
&lt;br&gt;&lt;br&gt;&lt;br&gt;2) alright this 1 could be a bit tricky, id like to add a couple more categories to the investigated page. enemies are red on this page, would be nice to find someway to let you sort by enemy, putting all of them at the top of the list. and would also like to be able to sort by cracking/bashing. tho not sure if that would be possible</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Script-request-%28game%29-tp21541201p21541201.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21394717</id>
	<title>Session Cookies</title>
	<published>2009-01-10T16:37:33Z</published>
	<updated>2009-01-10T16:37:33Z</updated>
	<author>
		<name>Thread7</name>
	</author>
	<content type="html">Is there a way to use GreaseMonkey to clear session cookies? &amp;nbsp; If not, what about automatically closing the browser and reopening it?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Session-Cookies-tp21394717p21394717.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21392753</id>
	<title>Executing remote script</title>
	<published>2009-01-10T13:06:36Z</published>
	<updated>2009-01-10T13:06:36Z</updated>
	<author>
		<name>kakamaica</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I want to write a simple greasemonkey script that does a GM_xmlhttpRequest to my server and runs the code that it receives (by doing an &amp;quot;eval&amp;quot; of the result).
&lt;br&gt;&lt;br&gt;The problem is that the received script needs to call some protected GM functions (such as GM_getValue) and so I get an error:
&lt;br&gt;&lt;br&gt;&amp;quot;Greasemonkey access violation: unsafeWindow cannot call GM_getValue.&amp;quot;
&lt;br&gt;&lt;br&gt;Any ideas on how I can solve this?
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Executing-remote-script-tp21392753p21392753.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21224670</id>
	<title>Script that does essentially the same thing as Interclue's firfox extension</title>
	<published>2008-12-30T15:23:02Z</published>
	<updated>2008-12-30T15:23:02Z</updated>
	<author>
		<name>ScottVP</name>
	</author>
	<content type="html">I am looking for a script in greasemonkey that is basically the same thing as globefeed.com's script, except there script doesn't show vbulletin forum posts... I only need a script like this for vbulletin posts. Globefeed.com's would've been perfect BUT it doesn't show the live page, it shows something that has been around a long time. 
&lt;br&gt;&lt;br&gt;Can anyone help me find or make a script like this please? I don't have much to give, thanks. 
&lt;br&gt;&lt;br&gt;Also it does NOT have to be as intricate as Interclues extension, but I would like it to be able to see images that were posted in the posts... </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Script-that-does-essentially-the-same-thing-as-Interclue%27s-firfox-extension-tp21224670p21224670.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21224607</id>
	<title>Thumbnail preview of page (Real time)</title>
	<published>2008-12-30T15:16:19Z</published>
	<updated>2008-12-30T15:16:19Z</updated>
	<author>
		<name>ScottVP</name>
	</author>
	<content type="html">I am looking for a script in greasemonkey that is basically the same thing as globefeed.com's script, except there script doesn't show vbulletin forum posts... I only need a script like this for vbulletin posts. Globefeed.com's would've been perfect BUT it doesn't show the live page, it shows something that has been around a long time. 
&lt;br&gt;&lt;br&gt;Can anyone help me find or make a script like this please? I don't have much to give, thanks. </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Thumbnail-preview-of-page-%28Real-time%29-tp21224607p21224607.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21196430</id>
	<title>Seeking simple filter - delete HTML line containing string</title>
	<published>2008-12-28T13:50:21Z</published>
	<updated>2008-12-28T13:50:21Z</updated>
	<author>
		<name>gpetty</name>
	</author>
	<content type="html">&lt;br&gt;I'm a non-scripter who is hoping to find an existing greasemonkey script that does (or can be readily adapted to do) the following extremely simple task:
&lt;br&gt;&lt;br&gt;1) For a user-specified website (e.g., www.annoyingforum.com) , scan the source of the page to be displayed for any of a small set of user-specified strings (e.g., &amp;quot;posted by: idiot&amp;quot;, &amp;quot;posted by: psycho&amp;quot;, etc.).
&lt;br&gt;&lt;br&gt;2) Delete the entire line of HTML containing the offending string.
&lt;br&gt;&lt;br&gt;3) Display the remaining content in the usual way.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Seeking-simple-filter---delete-HTML-line-containing-string-tp21196430p21196430.html" />
</entry>

</feed>
