<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>bookmarklets &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/bookmarklets/</link>
	<description>Feed of posts on WordPress.com tagged "bookmarklets"</description>
	<pubDate>Mon, 30 Nov 2009 14:58:14 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Power surf Using Bookmarklets!]]></title>
<link>http://myjabber.wordpress.com/2009/11/12/power-surf-using-bookmarklets/</link>
<pubDate>Thu, 12 Nov 2009 20:54:45 +0000</pubDate>
<dc:creator>gabz911</dc:creator>
<guid>http://myjabber.wordpress.com/2009/11/12/power-surf-using-bookmarklets/</guid>
<description><![CDATA[Technorati Tags: browser,bookmarklets,tools,internet Bookmarklets are snippets of code that are stor]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:77fa5c39-d129-4ab7-aec4-8b1fcd3ac4fd" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/browser">browser</a>,<a rel="tag" href="http://technorati.com/tags/bookmarklets">bookmarklets</a>,<a rel="tag" href="http://technorati.com/tags/tools">tools</a>,<a rel="tag" href="http://technorati.com/tags/internet">internet</a></div>
<p><span style="color:rgb(81,81,81);">Bookmarklets are snippets of code that are stored just like normal bookmarks but when used they can have a variety of effects e.g. Search the page, remove excess animations etc… Here are a few of my favourites that I use when I’m surfing. <strike>If you decide to use them, then just drag them into your bookmark bar/folder and click them to activate.</strike></span><br />EDIT: I have realised that for some reason the bookmarklets arent working so you must visit the sites provided and drag them into your bar from there<br /><span style="color:rgb(81,81,81);"><br />1. </span><a href="http://brettterpstra.com/share/readability2.html">Readability2</a><span style="color:rgb(81,81,81);">-This great little utility gets rid of anything irrelevant to the article/page you are reading yet keeps any images that are relevent.</p>
<p></span><span style="color:rgb(81,81,81);">2. <a href="http://www.imilly.com/bm.htm">[Google Site Search]</a>- By clicking this you bring up a box that allows you to search the site you are on using Google&#8217;s own search engine. Great for when a websites built in search just won’t bring up the results you need.</span></p>
<p><span style="color:rgb(81,81,81);">3. <a href="http://lifehacker.com/242811/lifehacker-code-supercharged-gmailthis-bookmarklet">[Supercharged GmailThis]</a>- This brings up a new mail window for Gmail with a link already inserted for the page you are viewing. From the window you can also add text or choose to save the message as a draft.</span></p>
<p><span style="color:rgb(81,81,81);">4. <a href="http://jmesnil.net/weblog/2004/07/16/a-bookmarklet-to-split-html-document-within-the-browser/">Split Horizontally</a>- Clicking this splits the window in half allowing you to have two different web pages open simultaneously. Extremely useful for comparing products or researching.</span></p>
<p><span style="color:rgb(81,81,81);">5.<a href="http://1024k.de/bookmarklets/video-bookmarklets.html">All-In-One Video Bookmarklet</a>- There are plenty of services that allow you to download internet videos in .flv but what if you want to put it on your phone or iPod? Well this bookmarklet makes it easy to grab a video in flash .avi and .mp4 formats.</span></p>
<p><span style="color:rgb(81,81,81);">Do you have a bookmarklet that you use continually? Let us know in the comments section…</span></p>
<p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=959d733c-75e2-8310-91dd-8e0655a70962" /></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Map UK Postcodes Bookmarklet]]></title>
<link>http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/</link>
<pubDate>Tue, 10 Nov 2009 23:50:43 +0000</pubDate>
<dc:creator>osblues</dc:creator>
<guid>http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/</guid>
<description><![CDATA[Today I found a really neat use for my Get Elements By Content function which I wrote recently.  I w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Today I found a really neat use for my <a href="/2009/11/11/javascript-getelementsbycontent/">Get Elements By Content</a> function which I wrote recently.  I wanted to create a bookmarklet that allowed me to visit a page, click on the link and turn any UK postcodes in the page to a link to a Google Map.  Well, it&#8217;s pretty simple -</p>
<div style="overflow:auto;width:100%;">
<pre>var pc=gbc('[a-z]{1,2}\\d{1,2}[a-z]? \\d[a-z]{2}');
for(var i=0;i&#60;pc.length;i++){
 pc[i].innerHTML=pc[i].innerHTML.replace(/([a-z]{1,2}\d{1,2}[a-z]? \d[a-z]{2})/ig,'&#60;a href="http://maps.google.co.uk/maps?f=q&#38;hl=en&#38;q=$1,UK&#38;ie=UTF8&#38;z=16&#38;om=1&#38;iwloc=addr"&#62;$1&#60;/a&#62;');
}</pre>
</div>
<p>Obviously you need to &#8216;gbc&#8217; function from my last post, but other than that, you just need to turn it into a bookmarklet and away you go.  If you have any problems, let me know.</p>
<p><a title="add to del.icio.us" rel="nofollow" href="http://del.icio.us/post?url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="del.icio.us:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/delicious.gif" alt="add to del.icio.us" /></a> :: <a title="add to Technorati" rel="nofollow" href="http://technorati.com/faves/?add=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="Technorati:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/technorati.gif" alt="Bookmark Post in Technorati" /></a> :: <a title="add to Blinkslist" rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&#38;Description=&#38;Url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;Title=Google+Map+UK+Postcodes+Bookmarklet"><img title="blinklist:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/blinklist.gif" alt="Add to Blinkslist" /></a> :: <a title="add to Furl" rel="nofollow" href="http://www.furl.net/storeIt.jsp?u=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;t=Google+Map+UK+Postcodes+Bookmarklet"><img title="furl:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/furl.gif" alt="add to furl" /></a> :: <a title="Digg it" rel="nofollow" href="http://digg.com/submit?phase=2&#38;url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/"><img title="Digg it:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/digg.gif" alt="Digg it" /></a> :: <a title="add to ma.gnolia" rel="nofollow" href="http://ma.gnolia.com/bookmarklet/add?url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="ma.gnolia:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/magnolia.gif" alt="add to ma.gnolia" /></a> :: <a title="Stumble it!" rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/&#38;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="Stumble it:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/stumbleit.gif" alt="Stumble It!" /></a> :: <a title="add to Simpy" rel="nofollow" href="http://www.simpy.com/simpy/LinkAdd.do?url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="simpy:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/simpy.png" alt="add to simpy" /></a> :: <a title="seed the vine" rel="nofollow" href="http://www.newsvine.com/_tools/seed&#38;save?url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="newsvine:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/newsvine.gif" alt="seed the vine" /></a> :: <a title="add to Reddit" rel="nofollow" href="http://reddit.com/submit?url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="reddit:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/reddit.gif" alt="" /></a> :: <a title="add to Fark" rel="nofollow" href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;new_comment=Google+Map+UK+Postcodes+Bookmarklet"><img title="fark:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/fark.png" alt="" /></a> :: <a title="add to TailRank" rel="nofollow" href="http://tailrank.com/share/?text=&#38;link_href=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/&#38;title=Google+Map+UK+Postcodes+Bookmarklet"><img src="http://osblues.files.wordpress.com/2008/07/tailrank.gif" alt="TailRank" /></a> :: <a title="post to FaceBook" rel="nofollow" href="http://www.facebook.com/sharer.php?u=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/&#38;t=Google+Map+UK+Postcodes+Bookmarklet"><img title="facebook:Google+Map+UK+Postcodes+Bookmarklet" src="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" alt="post to facebook" /></a> :: <a title="bookmark on Google" rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&#38;bkmk=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="Google:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/google_bmarks.gif" alt="Bookmark on Google" /></a> :: <a title="add to Netscape" rel="nofollow" href="http://www.netscape.com/submit/?U=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="NetScape:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/netscape.gif" alt="Add to Netscape" /></a> :: <a title="share on Yahoo!" rel="nofollow" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="Yahoo:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/yahoo_myweb.gif" alt="Share on Yahoo" /></a> :: <a title="add this to Live" rel="nofollow" href="https://favorites.live.com/quickadd.aspx?marklet=1&#38;mkt=en-us&#38;url=http://osblues.com/2009/11/11/google-map-uk-postcodes-bookmarklet/;title=Google+Map+UK+Postcodes+Bookmarklet"><img title="Live:Google+Map+UK+Postcodes+Bookmarklet" src="http://osblues.files.wordpress.com/2008/07/windows_live.gif" alt="Add this to Live" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[100+ Useful Bookmarklets For Better Productivity | Ultimate List]]></title>
<link>http://nwlink.wordpress.com/2009/10/31/100-useful-bookmarklets-for-better-productivity-ultimate-list/</link>
<pubDate>Sat, 31 Oct 2009 00:04:45 +0000</pubDate>
<dc:creator>Yash Kalra</dc:creator>
<guid>http://nwlink.wordpress.com/2009/10/31/100-useful-bookmarklets-for-better-productivity-ultimate-list/</guid>
<description><![CDATA[In a nutshell, bookmarklets are small little applications you can place as browser&#8217;s bookmark ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In a nutshell, bookmarklets are small little applications you can place as browser&#8217;s bookmark bar and they each perform a specific function, depending on what they are coded for. Bookmarklets are usually written in Javascript and they are extremely easy to install/remove. Bookmarklets work in most common used browsers like Firefox, Opera and Safari but probably lesser support in Internet Explorer.</p>
<p>In this article, we&#8217;ll show you some of the most useful bookmarklets for designers, developers or even if you are a net surfer, they might just come in handy. <em>Installing a bookmarklet</em> is simple &#8211; all you need to do is drag them to your bookmark toolbar, that&#8217;s all.</p>
<h3>Why bookmarklet are cool?</h3>
<p>They are efficient! We figured you might compare it with add-ons and browser plug-ins. Here are some advantages of bookmarklets over plug-ins we can quickly come out with:</p>
<ul>
<li>Hassle-less installation &#8211; Installing a bookmarklet is simple. All you need to do is drag it up to the bookmark toolbar. To remove them, just right click on it and hit delete.</li>
<li>Light &#8211; If you&#8217;ve installed more than 15 add-ons in your Firefox, you&#8217;ll probably find it slower to start. Bookmarklets are just couple of lines of Javascript codes. You can have 50 and Firefox doesn&#8217;t even lag a bit.</li>
<li>No updates &#8211; Most plugins require update especially when there is a new version of the browser. Boomarklet on the other hand, are less likely to require an update.</li>
<li>Cross Browser compatibility &#8211; Bookmarklets are written with Javascripts, they work in most browsers.</li>
</ul>
<p><span></p>
<h3>Social Bookmarking and Sharing</h3>
<p>Here are a bunch of social bookmarking bookmarklets that might come in handy:</p>
<ul>
<li><a href="//digg.com/submit?phase=3&#38;url='+encodeURIComponent(location.href)+'&#38;title='+encodeURIComponent(document.title)" class="bookmarklets"><strong>Digg this!</strong></a></li>
<li><a href="//delicious.com/save?url='+encodeURIComponent(window.location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;v=5&#38;';a=function(){if(!window.open(f+'noui=1&#38;jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()" class="bookmarklets"><strong>Delicious</strong></a></li>
<li><a href="//www.designfloat.com/submit.php?url='+escape(q),'','resizable,location,menubar,toolbar,scrollbars,status'));" class="bookmarklets"><strong>Design Float</strong></a></li>
<li><a href="//reddit.com/submit?url='+location.href+'&#38;title='+encodeURIComponent(document.title)})()" class="bookmarklets"><strong>Reddit</strong></a></li>
<li><a href="//www.mixx.com/submit?page_url='+escape(window.location)))()" class="bookmarklets"><strong>Mixx</strong></a></li>
<li><a href="//designmoo.com/submit?url='+encodeURIComponent(location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;body='+encodeURIComponent(document.getSelection()),'',''));" class="bookmarklets"><strong>Designmoo</strong></a></li>
<li><a href="//www.facebook.com/share',l=d.location,e=encodeURIComponent,p='.php?src=bm&#38;v=4&#38;i=1250537391&#38;u='+e(l.href)+'&#38;t='+e(d.title);1;try{if (!/^(.*.)?facebook.[^.]*$/.test(l.host))throw(0);share_internal_bookmarklet(p)}catch(z) {a=function() {if (!window.open(f+'r'+p,'sharer','toolbar=0,status=0,resizable=1,width=626,height=436'))l.href=f+p};if (/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0)" class="bookmarklets"><strong>Facebook</strong></a> &#8211; Share links in Facebook.</li>
<li><a href="//www.stumbleupon.com/url/&#34;+b.location,'StumbleUpOn','location=1,status=1,scrollbars=1,resizable=1,alwaysRaised=1,width=800px,height=600px');a.setTimeout(function(){d.focus()},60)})();" class="bookmarklets"><strong>Stumble Upon?</strong></a> &#8211; Check if a site/page has been Stumble Uponed.</li>
<li><a href="." class="bookmarklets"><strong>Tumblr</strong></a> &#8211; Share images on Tumblr.</li>
<li><a href="." class="bookmarklets"><strong>Gmail This</strong></a> &#8211; Quickly paste a link in Gmail</li>
</ul>
<h3>Browser resize</h3>
<p><a href="http://www.hongkiat.com/blog/firefox-resize-bookmarklet-now-with-re-positioning/"><strong>Here&#8217;s a complete article</strong></a> of browser resizing bookmarklets with positioning capability. </p>
<p><a href="http://www.hongkiat.com/blog/firefox-resize-bookmarklet-now-with-re-positioning/"><img src="http://hongki.at/images/bookmarklets/browser-resize.jpg" alt="browser resize bookmarklets" height="300"></a></p>
<h3>Readability, Download and Prints</h3>
<p><a href="//bit.ly/',l=d.location,p='?v=3&#38;u='+enc(l.href) +'&#38;s='+enc(d.title)+' '+s2,u=f+p;try{if(!/^(.*.)?tumblrzzz[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a =function(){if(!w.open(u))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else a();}void(0)" class="bookmarklets"><strong>Shorten URL</strong></a> &#8211; In this case, we use bit.ly&#8217;s shortening bookmarklet. <a href="http://www.hongkiat.com/blog/url-shortening-services-the-ultimate-list/"><strong>Click here</strong></a> for a list of URL shorteners with bookmarklet scripts.</p>
<p><a href="." class="bookmarklets"><strong>Kwout</strong></a> &#8211; Make a screen shot of any website you are in with <a href="http://kwout.com/"><strong>Kwout</strong></a>.</p>
<p><a href="//aviary.com/' + location.href;" class="bookmarklets"><strong>Print Screen</strong></a> &#8211; Another print screen bookmarklet. By <a href="http://www.aviary.com"><strong>Aviary</strong></a>.</p>
<p><a href="//browsershots.org/?url='+escape(location))" class="bookmarklets"><strong>Browsershot</strong></a> &#8211; Get a browsershot printscreen of any website.</p>
<p><a href="." class="bookmarklets"><strong>Better Readability</strong></a> &#8211; This bookmarklet cleans up the page, leaving you with nothing but clean content for better readability. You can create a customized version at <a href="http://lab.arc90.com/experiments/readability/"><strong>Arc90 Lab</strong></a>. </p>
<p><img src="http://hongki.at/images/bookmarklets/better-readability.jpg" alt="better readability" height="326"></p>
<p><a href='//tidyread.com/tidyread.js?u="+encodeURIComponent(document.location.href)+"&#38;t="+encodeURIComponent(document.title);document.body.appendChild(s)})();' class="bookmarklets"><strong>Tidy Read</strong></a> &#8211; Tidy up your page for better readability.</p>
<p><a href="." class="bookmarklets"><strong>Remove bloat</strong></a>- Remove all occurrences of Flash, Java,and other third-party iframes.</p>
<p><a href="document.body.contentEditable = 'true'; document.designMode='on'; void 0" class="bookmarklets"><strong>Edit Website</strong></a> &#8211; Allows you to edit any websites you viewed. Original display will be restored upon refresh. <br /><img src="http://hongki.at/images/bookmarklets/edit-website.jpg" alt="edit website" height="266"></p>
<p><a href="." class="bookmarklets"><strong>Customize Print</strong></a> &#8211; Allows you to customize the layout, fonts, colors, etc before printing a webpage. By <a href="http://www.printwhatyoulike.com/"><strong>printwhatyoulike</strong></a>.</p>
<p><a href="//www.pdfdownload.org/web2pdf/Default.aspx?left=0&#38;right=0&#38;top=0&#38;bottom=0&#38;page=0&#38;cURL='+document.location.href));" class="bookmarklets"><strong>Download as PDF</strong></a> (Firefox) &#8211; Convert and save page as PDF. <a href="http://www.pdfdownload.org/pdf_bookmarklet.html"><strong>Click here</strong></a> for bookmarklets of other browsers. By <a href="http://www.pdfdownload.org/pdf_bookmarklet.html"><strong>pdfdownload</strong></a>.</p>
<p><a href="." class="bookmarklets"> Bookmark This Link // All-In-One Video Bookmarklet&#8221;&#62;<strong>Download video</strong></a> &#8211; Supports YouTube, Google Video, Metacafe, Myspace, Break.com, Putfile, Dailymotion, Sevenload, MyVideo.de and Clipfish.de.</p>
<p><strong>More:</strong> <a href="." class="bookmarklets"><strong>Zoom in</strong></a>, <a href="." class="bookmarklets"><strong>Zoom out</strong></a>, <a href="void(document.body.background='')" class="bookmarklets"><strong>Remove background</strong></a>, <a href="for(nIx5Bs=0;nIx5Bs&#60;document.all.length;nIx5Bs++){if(document.all[nIx5Bs].tagName=='A'){with(document.all[nIx5Bs].style){if(backgroundColor=='yellow'){void(backgroundColor=document.bgColor)}else{void(backgroundColor='yellow')}}}}" class="bookmarklets"><strong>Highlight links</strong></a></p>
<h3>Traffic, Password and Site Information</h3>
<p><a href="(function(){C=document.cookie.split(" class="bookmarklets">&#60;2;++sl)for(p=&#8221;/&#8221;+location.pathname;p;p=p.substring(0,p.lastIndexOf(&#8216;/&#8217;)))for(i%20in%20C)if(c=C[i]){document.cookie=c+&#8221;;%20domain=&#8221;+d.slice(sl)+&#8221;;%20path=&#8221;+p.slice(1)+&#8221;/&#8221;+&#8221;;%20expires=&#8221;+new%20Date((new%20Date).getTime()-1e11).toGMTString()}})()&#8221;&#62;<strong>Zap Cookie</strong></a> &#8211; Removes cookies set by the site, including cookies with paths and domains.</p>
<p><a href='nn" + s); else alert("There are no passwords in forms on this page.");})();' class="bookmarklets"><strong>Show Password</strong></a> &#8211; Set a password and forgot? This bookmarklet takes in your ***** from form field and output you the actual password. </p>
<p><img src="http://hongki.at/images/bookmarklets/password.jpg" alt="get password" height="380"></p>
<p><a href="//www.sitonomy.com/?url='+location.href)" class="bookmarklets"><strong>Site Info</strong></a> &#8211; A bookmarklet that gives you information (advertising network, platform, widgets, etc) of the website you are currently viewing. By <a href="http://www.sitonomy.com/"><strong>sitonomy</strong></a>.</p>
<p><a href="//builtwith.com/?'+location.host));" class="bookmarklets"><strong>Site Info</strong></a> &#8211; Another bookmarklet to find site info By <a href="http://buildwith.com"><strong>Buildwith</strong></a>.</p>
<p><a href="//www.netsol.com/cgi-bin/whois/whois?SearchType=do&#38;STRING=' + h[p-2] + '.' + h[p-1]; } else { alert('This bookmarklet can only look up owners for .com, .net, .org, and .edu domains.'); } void(0); })();" class="bookmarklets"><strong>Domain owner</strong></a> &#8211; Tells you who own the domain of the site you are viewing.</p>
<p><a href="//del.icio.us/url?url='+document.location.href));" class="bookmarklets"><strong>Delicious</strong></a> &#8211; Shows you who, how many people bookmarked the site in delicious.</p>
<p><a href="//www.alexa.com/data/details/traffic_details?q=&#38;url='+location.hostname" class="bookmarklets"><strong>Alexa</strong></a> &#8211; Shows you the Alexa ranking of the site.</p>
<p><a href="//siteanalytics.compete.com/'+location.host));" class="bookmarklets"><strong>Compete</strong></a> &#8211; Shows compete.com ranking.</p>
<p><a href="//technorati.com/blogs/'+encodeURIComponent(location.host)+'?sub=bloginfo'" class="bookmarklets"><strong>Technorati</strong></a> &#8211; Find out more information about a particular blog. <a href="http://technorati.com/tools/favelets.html"><strong>Click here</strong></a> for more Technorati bookmarklets.</p>
<p><a href="//www.attentionmeter.com/am_bookmarklet.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" class="bookmarklets"><strong>AttentionMeter</strong></a> &#8211; Gives you the Alexa, Quancast, Crunchbase, Alexa and Technorati ranking of the site in a lightbox.</p>
<p><a href="void(window.open(" class="bookmarklets"><strong>Uptime Check</strong></a> &#8211; Check if a website is down for everyone or just you. By <a href="http://downforeveryoneorjustme.com/"><strong>downforeveryoneorjustme</strong></a>.</p>
<h3>Design and Develop</h3>
<p><a href="//www.karmatics.com/aardvark/loader.js')" class="bookmarklets"><strong>Aardvark</strong></a> &#8211; Aardvark is a Firefox plugin that gives you HTML element details like ID, class, image, position, etc of the page you are viewing. Good news is, it also comes in bookmarklet format.</p>
<p><a href="//www.andybudd.com/images/layoutgrid.png)');void(myDiv.style.position='absolute');void(myDiv.style.width='100%');void(myDiv.style.height='100%');void(myDiv.style.top='0');void(myDiv.style.left='0');void(myBody.appendChild(myDiv));" class="bookmarklets"><strong>Layout Grid</strong></a> &#8211; Applies a layout grid image to the body of the page. </p>
<p><img src="http://hongki.at/images/bookmarklets/grid-display.jpg" alt="grid display" height="205"></p>
<p><a>=0;i&#8211;)d.images[i].src=&#8217;g//j.gif&#8217;;}d.close()&#8221; class=&#8221;bookmarklets&#8221;&#62;<strong>Disable Image</strong></a>, <a href="void(d=document);if(frames.length){alert('Script doesn/'t work in frames');}else{while((el=d.getElementsByTagName('img')).length){el[0].parentNode.removeChild(el[0])}}d.close()" class="bookmarklets"><strong>Remove Image</strong></a>.</p>
<p><a href="//westciv.com/mri/theMRI.js');" class="bookmarklets"><strong>Test Selectors</strong></a> &#8211; Test and play with selectors. By <a href="http://westciv.com/mri/"><strong>Westciv</strong></a>.</p>
<p><a href="//www.sprymedia.co.uk/design/design/media/js/design-loader.js');" class="bookmarklets"><strong>Spry Media</strong></a> &#8211; Created by Spry Media, this bookmarklet allow you to view a page in grid view, with ruler measurement, measuring points with units and much more.</p>
<p><a href="//westciv.com/xray/thexray.js');" class="bookmarklets"><strong>XRAY</strong></a> &#8211; See box model for any element on any site. By <a href="http://westciv.com/xray/index.html"><strong>Westciv</strong></a>.</p>
<p><a href="void(setInterval(function(){var qs='?'+new Date().getTime(),l,i=0;while(l=document.getElementsByTagName('link')[i++]){if(l.rel&#38;&#38;'stylesheet'==l.rel.toLowerCase()){if(!l._h)l._h=l.href;l.href=l._h+qs}}},2000));" class="bookmarklets"><strong>Reload CSS</strong></a> &#8211; Reloads CSS every 2 seconds. Useful for those who&#8217;s constantly editing on the design and need a fresh look at the effects.</p>
<p><a href="void(window.open(" class="bookmarklets"><strong>Validate RSS</strong></a> &#8211; Check site RSS validity with feedvalidator.org.</p>
<p><a href="//jigsaw.w3.org/css-validator/validator?uri=" class="bookmarklets"><strong>Validate CSS</strong></a> &#8211; Validate site&#8217;s CSS. More CSS bookmarklets &#8211; <a href="." class="bookmarklets"><strong>View CSS</strong></a>, <a href="." class="bookmarklets"><strong>List Compute CSS</strong></a>.</p>
<p><a href="void(window.open(" class="bookmarklets"><strong>Validate HTML</strong></a>- Check if site is using valid HTML based on w3.org. More HTML bookmarklets &#8211; <a href="d.g(l));with(c) {for(i=0;i&#60;length;i++){if(item(i).getAttribute('href')==cs)location.reload();}}void(L=d.createElement(l));void(L.s=L.setAttribute);void(L.s('rel','StyleSheet'));void(L.s('href',cs));void(H.appendChild(L));" class="bookmarklets"><strong>Show tables</strong></a>, <a href="var t=document.getElementsByTagName('th');for (i=0;i&#60;t.length;i++){void(t[i].style.border='1px solid yellow');void(t[i].style.padding='6px');void(t[i].style.color='yellow');void(t[i].style.background='black');}" class="bookmarklets"><strong>Show table headings</strong></a>, <a href="var t=document.getElementsByTagName('td');for (i=0;i&#60;t.length;i++){void(t[i].style.border='1px solid navy');void(t[i].style.padding='6px');void(t[i].style.color='navy');void(t[i].style.background='#E5E5E5');}" class="bookmarklets"><strong>Show table cells</strong></a>.</p>
<h3>Dictionary and Translation</h3>
<p>Quickly search and get answers from these online sites:</p>
<ul>
<li><a href="''));wikiw.focus();" class="bookmarklets"><strong>Wikipedia</strong></a></li>
<li><a href="//www.acronymfinder.com/af-query.asp?String=exact&#38;Acronym='+escape(Qr)+'&#38;Find=Find'" class="bookmarklets"><strong>Acronym Finder</strong></a></li>
<li><a href="//www.urbandictionary.com/define.php?term='+escape(q)})()" class="bookmarklets"><strong>Urban Dictionary</strong></a></li>
<li><a href="//dictionary.reference.com/search?r=1&#38;q='+escape(q); })()" class="bookmarklets"><strong>Dictionary.com</strong></a></li>
<li><a href="//thesaurus.reference.com/search?r=1&#38;q='+escape(q); })()" class="bookmarklets"><strong>Thesaurus.com</strong></a></li>
<li><a href="//www.reference.com/search?r=1&#38;q='+escape(q); })()" class="bookmarklets"><strong>Reference.com</strong></a></li>
</ul>
<p>These following bookmarklets allow you to quickly translate a webpage from one language to another using <a href="http://www.google.com/language_tools?hl=en"><strong>Google translate</strong></a>.</p>
<ul>
<li><a href="." class="bookmarklets"><strong>German to English</strong></a></li>
<li><a href="." class="bookmarklets"><strong>Chinese Simplified to English</strong></a></li>
<li><a href="." class="bookmarklets"><strong>Chinese Traditional to English</strong></a></li>
<li><a href="." class="bookmarklets"><strong>Italian to English</strong></a></li>
<li><a href="." class="bookmarklets"><strong>Spanish to English</strong></a></li>
<li><a href="." class="bookmarklets"><strong>Japanese to English</strong></a></li>
</ul>
<p>You can also try this <a href="."><strong>Auto Detect Language</strong></a> bookmarklet, or visit <a href="http://www.unusualbookmarklets.com/translation.htm"><strong>unusualbookmarklets</strong></a> for a complete set and various methods of translation bookmarklets.</p>
<h3>Useful Tools and More Bookmarklets</h3>
<p><a href="http://www.labnol.org/internet/manage-bookmarklets-efficiently/7964/"><strong>How to Efficiently Manage Your Collection of Bookmarklets</strong></a> &#8211; Efficiently manage bookmarklets across all browsers and computers.</p>
<p><a href="http://www.7is7.com/software/bookmarklets/translate.html"><strong>Translation Bookmarklets</strong></a> &#8211; Great list of various translation bookmarklets.</p>
<p><a href="http://www.howtocreate.co.uk/bookmarklets.html"><strong>howtocreate.co.uk</strong></a> &#8211; More bookmarklets for designers and developers.</p>
<p><a href="for(nIx5Bs=0;nIx5Bs&#60;document.all.length;nIx5Bs++){if(document.all[nIx5Bs].tagName=='A'){with(document.all[nIx5Bs].style){if(backgroundColor=='yellow'){void(backgroundColor=document.bgColor)}else{void(backgroundColor='yellow')}}}}" class="bookmarklets"><strong>Blummy</strong></a> &#8211; Organize your bookmarklets, by <a href="http://www.blummy.com/"><strong>Blummy.com</strong></a>. </p>
<p><img src="http://hongki.at/images/bookmarklets/blummy.jpg" alt="blummy" height="249"></p>
<p><a href="http://www.webreference.com/js/column35/creating.html"><strong>webreference.com</strong></a> &#8211; How to create Bookmarklets.</p>
<p><a href="http://www.bookmarklets.com/tools/categor.html"><strong>Bookmarklets.com</strong></a></p>
<p><a href="https://www.squarefree.com/bookmarklets/"><strong>Squarefree.com</strong></a></p>
<p><a href="http://pimpmysafari.com/bookmarklets/"><strong>PimpMySafari</strong></a> &#8211; Great collection of bookmarklets for Safari browser.</p>
<p class="zoundry_raven_tags">  <!-- Tag links generated by Zoundry Raven. Do not manually edit. http://www.zoundryraven.com -->  <span class="ztags"><span class="ztagspace">Technorati</span> : <a href="http://www.technorati.com/tag/Bookmarklets" class="ztag" rel="tag">Bookmarklets</a></span>  <br /> <span class="ztags"><span class="ztagspace">Del.icio.us</span> : <a href="http://del.icio.us/tag/Bookmarklets" class="ztag" rel="tag">Bookmarklets</a></span>  <br /> <span class="ztags"><span class="ztagspace">Zooomr</span> : <a href="http://www.zooomr.com/search/photos/?q=Bookmarklets" class="ztag" rel="tag">Bookmarklets</a></span>  <br /> <span class="ztags"><span class="ztagspace">Flickr</span> : <a href="http://www.flickr.com/photos/tags/Bookmarklets" class="ztag" rel="tag">Bookmarklets</a></span> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Restoring workflow sanity: Working around Merx's new "improved" linking style]]></title>
<link>http://holistictendencies.wordpress.com/2009/10/23/restoring-workflow-sanity-working-around-merxs-new-improved-linking-style/</link>
<pubDate>Fri, 23 Oct 2009 22:14:06 +0000</pubDate>
<dc:creator>bsprout</dc:creator>
<guid>http://holistictendencies.wordpress.com/2009/10/23/restoring-workflow-sanity-working-around-merxs-new-improved-linking-style/</guid>
<description><![CDATA[Merx unhelpfully changed their linking style to use an onClick event. Such a helpful change: what us]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Merx unhelpfully changed their linking style to use an onClick event. Such a helpful change: what used to take me a few minutes of navigating and clicking now takes four times as long.  Way to go Merx!</p>
<p>Fortunately a bit of JavaScript, rolled up into a <a href="(function(){var%20rewrite=function(node){var%20arrLinks=node.getElementsByTagName('a');for(var%20i=0;i&#60;arrLinks.length;i++){var%20oLink=arrLinks[i];if(oLink.onclick==null){continue;}var%20funcText=oLink.onclick.toString();var%20start=funcText.indexOf('NavigatePage(');if(oLink.href!=''&#124;&#124;start&#60;0){continue;}start=funcText.indexOf('/',start);var%20end=funcText.indexOf(')',start)-1;if(start&#60;0&#124;&#124;end&#60;0){continue;}oLink.href=funcText.substring(start,end);oLink.onclick=null;}};var%20tbls=document.getElementsByTagName('td');for(var%20i=0;i&#60;tbls.length;i++){if(tbls[i].className=='ContentListOdd'&#124;&#124;tbls[i].className=='ContentListEven'){rewrite(tbls[i]);}}})()">bookmarklet</a>, can work around most of their damage.  Just drag the &#8220;bookmarklet&#8221; link to your browser&#8217;s toolbar.</p>
<p>The text of the bookmarklet is here.  We can&#8217;t simply rewrite every anchor as some, particularly the page count links, have to be performed using their broken <code>NavigatePage()</code> function.</p>
<pre>javascript:(function(){
    var rewrite = function(node) {
	var arrLinks = node.getElementsByTagName('a');
	for(var i = 0; i &#60; arrLinks.length; i++) {
	    var oLink = arrLinks[i];
	    if(oLink.onclick == null) { continue; }
	    var funcText = oLink.onclick.toString();
	    var start = funcText.indexOf('NavigatePage(');
	    if(oLink.href != "" &#124;&#124; start &#60; 0) { continue; }
	    start = funcText.indexOf('/', start);
	    var end = funcText.indexOf(')', start) - 1;
	    if(start &#60; 0 &#124;&#124; end &#60; 0) { continue; }
	    oLink.href = funcText.substring(start, end);
	    oLink.onclick = null;
	}
    };
    var tbls = document.getElementsByTagName('td');
    for(var i = 0; i &#60; tbls.length; i++) {
	if(tbls[i].className == "ContentListOdd"
	&#124;&#124; tbls[i].className == "ContentListEven") {
	    rewrite(tbls[i]);
	}
    }
})()
</pre>
<p>Score one for Firefox: I had a syntax error that I had great difficulty finding in Safari, whereas Firefox pointed it out immediately.  But Safari&#8217;s error console has much more functionality.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bookmarklets para el desplazamiento automático de la página.]]></title>
<link>http://noctuido.wordpress.com/2009/10/21/bookmarklets-para-el-desplazamiento-automatico-de-la-pagina/</link>
<pubDate>Wed, 21 Oct 2009 07:01:34 +0000</pubDate>
<dc:creator>noctuido</dc:creator>
<guid>http://noctuido.wordpress.com/2009/10/21/bookmarklets-para-el-desplazamiento-automatico-de-la-pagina/</guid>
<description><![CDATA[Ayer tras observar los bookmarklets que traía el navegador Galeon, decidí añadirlos a otros navegado]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ayer tras observar los bookmarklets que traía el navegador Galeon, decidí añadirlos a otros navegadores. Unos de este tipo de bookmarklets son los que mueven de forma automática las páginas en sentido vertical, moviendo la página de forma vertical en el sentido de nuestra lectura.</p>
<p>Los bookmarklets se añaden como marcadores, pero en vez de poner la URL, ponemos el código javascript con el que se generará una determinada función en el navegador.</p>
<p>Añadirlos es sencillo. Clic derecho sobre la barra de marcadores–&#62; <strong>Nuevo Marcador…</strong>/<strong>Add page… </strong>en <strong>nombre</strong>/<strong>name</strong> ponemos la denominación y en dirección/URL pegamos la línea de código. Luego si queremos desde Firefox en el menú Marcadores–&#62; Administrar marcadores, o desde Chromium en el menú Herramientas–&#62; Bookmark Manager podemos cambiarlos de sitio, simplemente arrastrándolos con el puntero del ratón.</p>
<p>Para desplazamiento muy lento:</p>
<pre>javascript:var wN2sc8Rl;Sa5gNA9k=new Function('clearTimeout(wN2sc8Rl)');document.onkeydown=Sa5gNA9k;Sa5gNA9k();void(wN2sc8Rl=setInterval('if(pageYOffset&#60;document.height-innerHeight){window.scrollBy(0,1)}else{Sa5gNA9k()}',150))</pre>
<p>Para desplazamiento lento:</p>
<pre>javascript:var wN2scRl;Sa5gNA9k=new Function('clearTimeout(wN2scRl)');document.onkeydown=Sa5gNA9k;Sa5gNA9k();void(wN2scRl=setInterval('if(pageYOffset&#60;document.height-innerHeight){window.scrollBy(0,1)}else{Sa5gNA9k()}',50))</pre>
<p>Para desplazamiento rápido:</p>
<pre>javascript:var wN2scRl;Sa5gNA9k=new Function('clearTimeout(wN2scRl)');document.onkeydown=Sa5gNA9k;Sa5gNA9k();void(wN2scRl=setInterval('if(pageYOffset&#60;document.height-innerHeight){window.scrollBy(0,2)}else{Sa5gNA9k()}',50))</pre>
<p>Para desplazamiento muy rápido:</p>
<pre>javascript:var wN2scRl;Sa5gNA9k=new Function('clearTimeout(wN2scRl)');document.onkeydown=Sa5gNA9k;Sa5gNA9k();void(wN2scRl=setInterval('if(pageYOffset&#60;document.height-innerHeight){window.scrollBy(0,10)}else{Sa5gNA9k()}',50))</pre>
<p>Para desplazamiento personalizado:</p>
<pre>javascript:var wN2scRl;S3g=new Function('clearTimeout(wN2scRl)');document.onkeydown=S3g;a7T=prompt('Rate...','');if(a7T!=null){S3g();void(wN2scRl=setInterval('if(pageYOffset&#60;document.height-innerHeight){scrollBy(0,a7T)}else{S3g()}',50))}else{void(null)}</pre>
<p>Una vez añadido en un marcador, tan solo debemos pulsarlo para que la página comience a desplazarse. Para detener el desplazamiento, basta con pulsar la tecla &#8220;Esc&#8221;.</p>
<p>Con estos bookmarklets nos ahorraremos tener que mover el scroll del ratón o la barra de desplazamiento lateral. Muy indicado para conocer nuestra  velocidad de lectura. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kleine Lesezeichen mit großer Wirkung]]></title>
<link>http://lousberg.wordpress.com/2009/10/17/kleine-lesezeichen-mit-groser-wirkung/</link>
<pubDate>Sat, 17 Oct 2009 14:00:13 +0000</pubDate>
<dc:creator>lousberg</dc:creator>
<guid>http://lousberg.wordpress.com/2009/10/17/kleine-lesezeichen-mit-groser-wirkung/</guid>
<description><![CDATA[Klein, aber oho! Sooo &#8220;klein&#8221; sind Bookmarklets trotz des niedlich klingenden Namens ja ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_619" class="wp-caption alignleft" style="width: 290px"><a href="http://www.flickr.com/photos/seafrost/515393926/sizes/m/"><img class="size-full wp-image-619  " title="FlickrCC von Sea Frost" src="http://lousberg.wordpress.com/files/2009/10/klein-aber-oho.jpg" alt="Klein, aber oho!" width="280" height="210" /></a><p class="wp-caption-text">Klein, aber oho!</p></div>
<p>Sooo &#8220;klein&#8221; sind <strong>Bookmarklets</strong> trotz des niedlich klingenden Namens ja eigentlich nicht. Im Vergleich zu den gewöhnlichen Lesezeichen haben sie sogar richtig Power.</p>
<p>Zunächst übte ich ein wenig mit dem Bookmarklet <strong>Direkt Bloggen</strong>. Wenn ich es richtig erkannt habe, wird diese Technik auch gerne in <a href="http://infobib.de/blog/">Infobib</a> oder <a href="http://log.netbib.de">netbib</a> verwendet. Die Autoren können auf diese Weise in Windeseile die neuesten fachbezogenen Nachrichten in der bibliothekarischen Welt verbreiten.</p>
<p><strong>Bookmarklets</strong> erfüllen vor allem dann ihren Sinn, wenn man gewisse Anwendungen sehr häufig nutzt. Sie dienen der Arbeitserleichterung.</p>
<p>In meiner Lesezeichen-Symbolleiste findet sich nun auch ein Bookmarklet für <a href="http://log.netbib.de/">snipURL</a>.</p>
<p>Natürlich habe ich mich auch in den Artikel des von mir in dieser Woche schon gelobten Tom vertieft <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Wie viele Bookmarklets es doch sonst noch so gibt &#8230;, unglaublich.</p>
<p>Toms Lieblings-Bookmarklet für das <a href="http://dict.leo.org/">Leo-Wörterbuch</a> wollte ich dann auch gleich mal ausprobieren. Unter dem Punkt <strong>Toolbars</strong> findet man in Leo sehr detaillierte Anleitungen zum Bookmarklet. Dort habe ich dann auch erfahren, dass sich bereits ein Suchfenster für Leo in meinem Browser (Firefox) befindet.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PageRank de Google y Ranking de Alexa en el navegador]]></title>
<link>http://noctuido.wordpress.com/2009/10/14/pagerank-de-google-y-ranking-de-alexa-en-el-navegador/</link>
<pubDate>Wed, 14 Oct 2009 21:54:55 +0000</pubDate>
<dc:creator>noctuido</dc:creator>
<guid>http://noctuido.wordpress.com/2009/10/14/pagerank-de-google-y-ranking-de-alexa-en-el-navegador/</guid>
<description><![CDATA[Puede darse el caso de que estemos interesados en saber qué PageRank,  y qué sitio ocupa en el ranki]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Puede darse el caso de que estemos interesados en saber qué PageRank,  y qué sitio ocupa en el ranking de Alexa la web que tengamos activa en la ventana del navegador. Para averiguar esos datos,  podemos visitar las búsquedas de <a href="http://www.alexa.com/">Alexa</a> o del <a href="http://www.mipagerank.com/">PageRank</a> en el propio sitio. Para este propósito lo más lógico sería visitar los respectivos sitios e introducir la URL de la web en cuestión y esperar que nos muestre el puesto que tiene. A efectos prácticos esto es un poco engorroso, ya que disponemos de herramientas más inmediatas como:</p>
<p><strong>Un Bookmarklet</strong>.</p>
<p>Un bookmarklet se añade como cualquier marcador, ponemos el nombre p.e de &#8220;Rank&#8221;, con la salvedad de que en el campo &#8220;URL&#8221; en <strong>Google Chrome</strong> o <strong>Arora</strong> y &#8220;dirección&#8221; en <strong>Firefox</strong> ponemos el código javascrip que ha facilitado el portal <a href="http://www.chromefans.org/chrome-plugins/google-alexa-page-rank-status.htm">Chromefans</a>:</p>
<pre>javascript:void(window.open("http://www.chromefans.org/pr/?u="+escape(location.href), "PageRank%20Status%20-%20ChromeFans","width=405,height=120,top=0,left=0,location=0"))
</pre>
<p>Una vez añadido el marcador,  nos aparecerá una ventana emergente con los datos del Page Rank y el puesto del Ranking de Alexa.</p>
<div id="attachment_1639" class="wp-caption aligncenter" style="width: 520px"><img class="size-full wp-image-1639" title="Pantallazo-2" src="http://noctuido.wordpress.com/files/2009/10/pantallazo-21.png" alt="Bookmarklet con el Page Rank y el  Ranking de Alexa" width="510" height="285" /><p class="wp-caption-text">Bookmarklet con el Page Rank y el  Ranking de Alexa</p></div>
<p><strong>Extensiones.</strong></p>
<p>Para los navegadores <strong>Mozilla Firefox</strong>, <strong>Seamonkey</strong> (depende de la versión), <strong>Flock</strong> (depende de la versión) y otros derivados de Firefox (IceCat, Swiftweasel&#8230;) están disponibles las extensiones <a href="https://addons.mozilla.org/es-ES/firefox/addon/321">SearchStatus</a> o las más sofisticadas y con más escalas de medición como <a href="https://addons.mozilla.org/es-ES/firefox/addon/3036">SeoQuake</a> o <a href="https://addons.mozilla.org/es-ES/firefox/addon/13927">SEO Toolbar</a> que nos muestran los resultados obtenidos por estos sitios de forma permanente.</p>
<div id="attachment_1642" class="wp-caption aligncenter" style="width: 201px"><img class="size-full wp-image-1642" title="Pantallazo-3" src="http://noctuido.wordpress.com/files/2009/10/pantallazo-3.png" alt="Extensión SearhStatus en Firefox" width="191" height="88" /><p class="wp-caption-text">Extensión SearhStatus en Firefox</p></div>
<p>Para los navegadores <strong>Google Chrome</strong>, <strong>Chromium </strong>o <strong>SRWare Iron</strong> está disponible la extensión <a href="http://download.chromefans.org/id55/pagerank.crx">Page Rank Status Extension</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Toms Adventskalender]]></title>
<link>http://lousberg.wordpress.com/2009/10/14/toms-adventskalender/</link>
<pubDate>Wed, 14 Oct 2009 18:16:21 +0000</pubDate>
<dc:creator>lousberg</dc:creator>
<guid>http://lousberg.wordpress.com/2009/10/14/toms-adventskalender/</guid>
<description><![CDATA[Eigentlich ist es noch viel zu früh, um über die Adventszeit zu sprechen. Die Geschäftsleute wappnen]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Eigentlich ist es noch viel zu früh, um über die Adventszeit zu sprechen. Die Geschäftsleute wappnen sich bereits für das lohnende Weihnachtsgeschäft. Der fleißige Tom hat es trotzdem schon verdient, erwähnt zu werden:</p>
<p><a href="http://stichpunkt.de/advent/kalender.html"><strong>Toms Adventskalender</strong></a> ist einer der schönsten und interessantesten digitalen Adventskalender, die ich kenne. Aber wahrscheinlich erzähle ich vielen von uns nichts Neues.  Hoffentlich gibt es den Kalender auch in diesem Jahr wieder. Er öffnet sich seit ein paar Jahren erst immer pünktlich am 1. Dezember.</p>
<p>Aber lassen wir <strong>Tom</strong> selbst zu Wort kommen (&#8230; und mich gleichzeitig die Anwendung des Bookmarklets üben <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  &#8230;):</p>
<p>Wie jedes Jahr ist mein Adventskalender am 1. Dezember wieder geöffnet. Eine Auswahl der interessantesten und lustigsten Fundsachen des vergangenen Jahres verbirgt sich hinter den 24 &#8220;Fensterchen&#8221;, alles garantiert kitsch- und kommerzfrei. Ein kleines tägliches Schmunzeln bis Weihnachten.</p>
<p>Wer dabei auf den Geschmack kommt, kann die besten 24 Adventskalender besuchen, &#8220;für alle, die jeden Tag alle 24 Fensterchen aufmachen wollen&#8221;.</p>
<p>via <a href="http://www.stichpunkt.de/index.html">Stichpunkt.de &#8211; Toms Stichpunkte rund ums Web</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[TWITTER - PBTweet Enhances Your Twitter Experience]]></title>
<link>http://atliphoneblog.wordpress.com/2009/09/23/twitter-pbtweet-enhances-your-twitter-experience/</link>
<pubDate>Wed, 23 Sep 2009 17:49:00 +0000</pubDate>
<dc:creator>atliphoneblog</dc:creator>
<guid>http://atliphoneblog.wordpress.com/2009/09/23/twitter-pbtweet-enhances-your-twitter-experience/</guid>
<description><![CDATA[Image via CrunchBase By Jason Fitzpatrick (Edit, to draft, Slurp) Copy this whole post to another si]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="zemanta-img" style="float:right;display:block;width:220px;margin:1em;"><a href="http://www.crunchbase.com/product/twitter"><img src="http://www.crunchbase.com/assets/images/resized/0000/2755/2755v2-max-450x450.png" alt="Image representing Twitter as depicted in Crun..." height="49" width="210" /></a><span class="zemanta-img-attribution">Image via <a href="http://www.crunchbase.com">CrunchBase</a></span></p>
<div class="post-byline">                      By <cite><a href="http://lifehacker.com/people/jfitzpatrick/posts/" title="Click here to read posts written by JASON FITZPATRICK">Jason Fitzpatrick</a></cite>  <span class="editor_controls gawkerwidget gawkerWidget_editorcontrols gwId_244" style="display:none;">       (<span class="for_editors control cn_for_editors" style="display:none;"><a class="edit_link control cn_edit_link" href="http://publish.lifehacker.com/ged/5349420" target="_new" title="edit this post">Edit</a>,     <a class="draft_link control cn_draft_link postId_5349420" href="http://lifehacker.com/5349420/pbtweet-enhances-your-twitter-experience#" title="Make this post DRAFT">to draft</a>,       </span><a class="slurp_toggle control cn_slurp_toggle" href="http://lifehacker.com/5349420/pbtweet-enhances-your-twitter-experience#" title="Syndicate this post to an other site">Slurp</a>)
<div class="slurp_dialog control cn_slurp_dialog" style="display:none;">
<p>Copy this whole post to another site</p>
<div id="formelements">
<div class="right">
<div class="right">         <button type="submit" class="bttn slurp_bttn slurp_button control cn_slurp_button">Slurp</button>         <a class="slurp_cancel control cn_slurp_cancel" href="http://lifehacker.com/5349420/pbtweet-enhances-your-twitter-experience#">cancel</a>        </div>
<div class="slurp_indicator control cn_slurp_indicator right" style="display:none;"><img alt="sending request" src="http://cache-foo.gawkerassets.com/gawker/assets/base.v8/img/progressIndicator_roller.gif" height="16" width="16" /></div>
</p></div>
<p>               select site        advertising consumerist deadspin defamer fleshbot gay fleshbot gawker gizmodo idolator io9 jalopnik jezebel kotaku lifehacker valleywag artists gawkershop sploid                                   </p></div>
</p></div>
<p>       </span>  </div>
<div style="float:right;">      </div>
<p>          <!-- google_ad_section_start -->
<p><a rel="lytebox" href="http://cache.gawker.com/assets/images/lifehacker/2009/09/2009-09-12_203040.jpg"><img src="http://cache.gawker.com/assets/images/17/2009/09/500x_2009-09-12_203040.jpg" class="left image500" width="500" /></a>PBTweet is a <a class="zem_slink freebase/guid/9202a8c04000641f800000000484d119" href="http://twitter.com" title="Twitter" rel="homepage">Twitter</a>-enhancement available as a bookmarklet, GreaseKit script, and <a class="zem_slink freebase/guid/9202a8c04000641f80000000006186b9" href="http://www.greasespot.net/" title="Greasemonkey" rel="homepage">GreaseMonkey</a> script, which allows you to enhance and tweak Twitter in Safari, Chrome, and <a class="zem_slink freebase/guid/9202a8c04000641f80000000001675f3" href="http://maps.google.com/maps?ll=45.1238,-123.1138&#38;spn=1.0,1.0&#38;q=45.1238,-123.1138%20%28Mozilla%20Firefox%29&#38;t=h" title="Mozilla Firefox" rel="geolocation">Firefox</a>.</p>
<p>What are some of the enhancements provided by PBTweet? You can thread conversations, PBTweet puts quick-response buttons directly under each tweet so you can translate the text, re-tweet, and use a via @ tag.</p>
<p><a class="zem_slink freebase/guid/9202a8c04000641f800000000003f3a0" href="http://en.wikipedia.org/wiki/Uniform_Resource_Locator" title="Uniform Resource Locator" rel="wikipedia">URLs</a> shortened using tinyurl.com, <a class="zem_slink" href="http://www.bit.ly" title="bit.ly" rel="homepage">bit.ly</a>, ff.im, twurl.il and <a class="zem_slink" href="http://is.gd" title="is.gd" rel="homepage">is.gd</a> can be expanded with a mouse-over. Pictures shared with twitPic.com, tumblr.com, brightkite.com ,MovaPic.com, <a class="zem_slink" href="http://www.tradevibes.com/company/profile/12seconds" title="12seconds" rel="homepage">12seconds</a> and bcphotoshare.com are thumbnailed. You&#8217;ll never have to click through to keep reading, PBTweet enabled infinite-scrolling on your Twitter feed. Check out the video below to see it in action.</p>
<p>  <span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/TAkUG0FXjd0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/TAkUG0FXjd0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span><img src="http://cache.gawker.com/assets/images/lifehacker/2009/09/TAkUG0FXjd0.jpg" class="left image340" width="340" /></p>
<p>Safari/Chrome users can take advantage of PBTweet via bookmarklet or GreaseKit script. Firefox users don&#8217;t get a bookmarklet, but there is a Greasemonkey script available.</p>
<div class="related"><a href="http://web.me.com/t_trace/pbtweet.html">PBTweet</a> [via <a href="http://www.downloadsquad.com/2009/08/31/pbtweet-twitter-userscript-for-google-chrome/">DownloadSquad</a>]<br /><a href="http://lifehacker.com/5349420/pbtweet-enhances-your-twitter-experience">source</a></div>
<p>Related articles by Zemanta
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5302630/untiny-reveals-shortened-url-destinations">﻿Untiny Reveals Shortened URL Destinations [URLs]</a> (lifehacker.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.thaibrother.com/blog/?p=16431">Bring Back the Small Google Search Box</a> (thaibrother.com)</li>
<li class="zemanta-article-ul-li"><a href="http://thenextweb.com/2009/08/25/tweetmeme-releases-url-shortener-retwtme-sigh/">Tweetmeme releases their own URL Shortener: Retwt.me (sigh)</a> (thenextweb.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.mwd.com/2009/09/set-google-search-back-to-what-it-was/">Set Google Search Back To What It Was</a> (mwd.com)</li>
<li class="zemanta-article-ul-li"><a href="http://talkitup.typepad.com/weblog/2009/07/monitoring-urls-on-twitter.html">Monitoring URLs on Twitter</a> (talkitup.typepad.com)</li>
<li class="zemanta-article-ul-li"><a href="http://technology.johnsamuel.in/main/index.php/2009/05/26/destroytwitter-dont-worry-its-yet-another-twitter-client/">DestroyTwitter: Don&#8217;t worry, It&#8217;s yet another Twitter Client</a> (technology.johnsamuel.in)</li>
<li class="zemanta-article-ul-li"><a href="http://www.chrisbrogan.com/spread-your-wings-get-more-retweet-action-today/">Spread Your Wings- Get More Retweet Action Today</a> (chrisbrogan.com)</li>
<li class="zemanta-article-ul-li"><a href="http://thenextweb.com/2009/09/08/helvetwitter-twitter-beautiful/">Helvetwitter: Have you ever seen Twitter look this beautiful?</a> (thenextweb.com)</li>
<li class="zemanta-article-ul-li"><a href="http://news.cnet.com/8301-17939_109-10249597-2.html?part=rss&#38;subj=Webware">Preview tiny URLS in Firefox</a> (news.cnet.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.thaibrother.com/blog/?p=14894">Preview tiny URLS in Firefox</a> (thaibrother.com)</li>
</ul>
<div style="margin-top:10px;height:15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/76359ad9-fb65-44e7-8eed-0be258385950/" title="Reblog this post [with Zemanta]"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=76359ad9-fb65-44e7-8eed-0be258385950" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution"></span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[100+ Useful Bookmarklets For Better Productivity | Ultimate List]]></title>
<link>http://vietphotoshop.wordpress.com/2009/09/18/100-useful-bookmarklets-for-better-productivity-ultimate-list-2/</link>
<pubDate>Fri, 18 Sep 2009 15:09:43 +0000</pubDate>
<dc:creator>jocphoto</dc:creator>
<guid>http://vietphotoshop.wordpress.com/2009/09/18/100-useful-bookmarklets-for-better-productivity-ultimate-list-2/</guid>
<description><![CDATA[(Photoshop.VN) &#8211; In a nutshell, bookmarklets are small little applications you can place as br]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>(<a href="http://photoshop.vn/home/">Photoshop.VN</a>) &#8211; In a nutshell, bookmarklets are small little applications you can place as browser’s bookmark bar and they each perform a specific function, depending on what they are coded for. Bookmarklets are usually written in Javascript and they are extremely easy to install/remove. Bookmarklets work in most common used browsers like Firefox, Opera and Safari but probably lesser support in Internet Explorer.<!--more-->
<p><span class="Apple-style-span" style="color:rgb(105,105,105);font-family:'Lucida Grande';font-size:16px;line-height:normal;"></p>
<h1 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:35px;font-family:Georgia, Helvetica, sans-serif;vertical-align:baseline;color:rgb(85,85,85);text-transform:capitalize;background-color:rgb(255,255,255);border-color:initial;border-style:initial;border-width:0;margin:0 0 15px;padding:0;">I<span class="Apple-style-span" style="color:rgb(50,50,50);font-family:'Lucida Grande';font-size:12px;text-transform:none;line-height:20px;">n this article, we&#8217;ll show you some of the most useful <a href="http://photoshop.vn/home/topic/bookmarklets">bookmarklets</a> for <a href="http://photoshop.vn/home/topic/designers">designers</a>, developers or even if you are a net surfer, they might just come in handy. <em>Installing a <a href="http://photoshop.vn/home/topic/bookmarklet">bookmarklet</a></em> is simple &#8211; all you need to do is drag them to your bookmark toolbar, that&#8217;s all.</span></h1>
<div class="post" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:.75em;font-family:'Lucida Grande', 'Lucida Sans Unicode', helvetica, sans-serif;vertical-align:baseline;color:rgb(50,50,50);background-color:rgb(255,255,255);border-color:initial;border-style:initial;border-width:0;margin:0 0 20px;padding:0 0 25px;">
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Why <a href="http://photoshop.vn/home/topic/bookmarklet">bookmarklet</a> Are Cool?</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">They are efficient! We figured you might compare it with add-ons and browser plug-ins. Here are some advantages of <a href="http://photoshop.vn/home/topic/bookmarklets">bookmarklets</a> over plug-ins we can quickly come out with:</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">Hassle-less installation &#8211; Installing a <a href="http://photoshop.vn/home/topic/bookmarklet">bookmarklet</a> is simple. All you need to do is drag it up to the bookmark toolbar. To remove them, just right click on it and hit delete.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">Light &#8211; If you&#8217;ve installed more than 15 add-ons in your <a href="http://photoshop.vn/home/topic/firefox">firefox</a>, you&#8217;ll probably find it slower to start. <a href="http://photoshop.vn/home/topic/bookmarklets">bookmarklets</a> are just <a href="http://photoshop.vn/home/topic/couple-lines">couple of lines</a> of Javascript codes. You can have 50 and <a href="http://photoshop.vn/home/topic/firefox">firefox</a> doesn&#8217;t even lag a bit.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">No updates &#8211; Most plugins require update especially when there is a new version of the browser. Boomarklet on the other hand, are less likely to require an update.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">Cross Browser compatibility &#8211; Bookmarklets are written with Javascripts, they work in most browsers.</li>
</ul>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"> </p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Social Bookmarking And Sharing</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">Here are a bunch of <a href="http://photoshop.vn/home/topic/social-bookmarking">social bookmarking</a> bookmarklets that might come in handy:</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//digg.com/submit?phase=3&#38;url='+encodeURIComponent(location.href)+'&#38;title='+encodeURIComponent(document.title)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Digg this!</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//delicious.com/save?url='+encodeURIComponent(window.location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;v=5&#38;';a=function(){if(!window.open(f+'noui=1&#38;jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Delicious</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.designfloat.com/submit.php?url='+escape(q),'','resizable,location,menubar,toolbar,scrollbars,status'));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Design Float</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//reddit.com/submit?url='+location.href+'&#38;title='+encodeURIComponent(document.title)})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Reddit</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.mixx.com/submit?page_url='+escape(window.location)))()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Mixx</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//designmoo.com/submit?url='+encodeURIComponent(location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;body='+encodeURIComponent(document.getSelection()),'',''));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Designmoo</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.facebook.com/share',l=d.location,e=encodeURIComponent,p='.php?src=bm&#38;v=4&#38;i=1250537391&#38;u='+e(l.href)+'&#38;t='+e(d.title);1;try{if%20(!/^(.*.)?facebook.[^.]*$/.test(l.host))throw(0);share_internal_bookmarklet(p)}catch(z)%20{a=function()%20{if%20(!window.open(f+'r'+p,'sharer','toolbar=0,status=0,resizable=1,width=626,height=436'))l.href=f+p};if%20(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Facebook</strong></a> &#8211; Share links in Facebook.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.stumbleupon.com/url/%22+b.location,'StumbleUpOn','location=1,status=1,scrollbars=1,resizable=1,alwaysRaised=1,width=800px,height=600px');a.setTimeout(function(){d.focus()},60)})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Stumble Upon?</strong></a> &#8211; Check if a site/page has been Stumble Uponed.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.tumblr.com/share',l=d.location,e=encodeURIComponent,p='?v=3&#38;u='+e(l.href)%20+'&#38;t='+e(d.title)%20+'&#38;s='+e(s),u=f+p;try{if(!/^(.*.)?tumblr[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a%20=function(){if(!w.open(u,'t','toolbar=0,resizable=0,status=1,width=450,height=430'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();}void(0)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Tumblr</strong></a> &#8211; Share images on <a href="http://photoshop.vn/home/topic/tumblr">tumblr</a>.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//mail.google.com/mail/?view=cm&#38;fs=1&#38;tf=1&#38;to=&#38;su='%20+%20escape(document.title)%20+%20'&#38;body='%20+%20escape(Q)%20+%20escape('n')%20+%20escape(location.href)%20+%20'&#38;zx=RANDOMCRAP&#38;shva=1&#38;disablechatbrowsercheck=1&#38;ui=1','gmailForm','scrollbars=yes,width=680,height=510,top=175,left=75,status=no,resizable=yes');if%20(!document.all)%20T%20=%20setTimeout('popw.focus()',50);void(0);" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Gmail This</strong></a> &#8211; Quickly paste a link in Gmail</li>
</ul>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Browser Resize</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.hongkiat.com/blog/firefox-resize-bookmarklet-now-with-re-positioning/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Here&#8217;s a complete article</strong></a> of browser resizing bookmarklets with positioning <a href="http://photoshop.vn/home/topic/capability">capability</a>.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<a href="http://www.hongkiat.com/blog/firefox-resize-bookmarklet-now-with-re-positioning/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><img src="http://hongki.at/images/bookmarklets/browser-resize.jpg" width="450" height="300" alt="browser resize bookmarklets" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></a></p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Readability, Download And <a href="http://photoshop.vn/home/topic/prints">prints</a></h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//bit.ly/',l=d.location,p='?v=3&#38;u='+enc(l.href)%20+'&#38;s='+enc(d.title)+'%20'+s2,u=f+p;try{if(!/^(.*.)?tumblrzzz[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a%20=function(){if(!w.open(u))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();}void(0)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Shorten URL</strong></a> &#8211; In this case, we use bit.ly&#8217;s shortening bookmarklet. <a href="http://www.hongkiat.com/blog/url-shortening-services-the-ultimate-list/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Click here</strong></a> for a list of URL shorteners with bookmarklet <a href="http://photoshop.vn/home/topic/scripts">scripts</a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets">%20b.offsetHeight)h=b.scrollHeight;else%20h=b.offsetHeight;w.open(%E2%80%99http://kwout.com/grab?address=%E2%80%99+encodeURIComponent(location.href)+%E2%80%99&#38;scroll=%E2%80%99+(y/h));})();%E2%80%9D&#62;<strong>Print Screen</strong></a> %E2%80%93 Make a screen shot of any website you are in with <a><strong>Kwout</strong></a> &#8211; Make a screen shot of any website you are in with <a href="http://kwout.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Kwout</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//aviary.com/'%20+%20location.href;" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Print Screen</strong></a> &#8211; Another print screen bookmarklet. By <a href="http://www.aviary.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Aviary</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//browsershots.org/?url='+escape(location))" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Browsershot</strong></a> &#8211; Get a browsershot <a href="http://photoshop.vn/home/topic/prints">prints</a>creen of any website.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//lab.arc90.com/experiments/readability/css/readability-print.css';_readability_print_css.media='print';_readability_print_css.type='text/css';document.getElementsByTagName('head')[0].appendChild(_readability_print_css);})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Better Readability</strong></a> &#8211; This bookmarklet cleans up the page, leaving you with nothing but clean content for better readability. You can create a customized version at <a href="http://lab.arc90.com/experiments/readability/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Arc90 Lab</strong></a>.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/better-readability.jpg" width="400" height="326" alt="better readability" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//tidyread.com/tidyread.js?u=%22+encodeURIComponent(document.location.href)+%22&#38;t=%22+encodeURIComponent(document.title);document.body.appendChild(s)})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Tidy Read</strong></a> &#8211; Tidy up your page for better readability.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:(function(){function R(w){try{var d=w.document,j,i,t,T,N,b,r=1,C;for(j=0;t=[&#34;object&#34;,&#34;embed&#34;,&#34;applet&#34;,&#34;iframe&#34;][j];++j){T=d.getElementsByTagName(t);for(i=T.length-1;(i+1)&#38;&#38;(N=T[i]);&#8211;i)if(j!=3&#124;&#124;!R((C=N.contentWindow)?C:N.contentDocument.defaultView)){b=d.createElement(&#34;div&#34;);b.style.width=N.width; b.style.height=N.height;b.innerHTML=&#34;<del>&#8220;+(j==3?&#8221;third-party &#8220;+t:t)+&#8221;</del>&#8220;;N.parentNode.replaceChild(b,N);}}}catch(E){r=0}return r}R(self);var i,x;for(i=0;x=frames[i];++i)R(x)})()&#8221; style=&#8221;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: inherit; vertical-align: baseline; background-color: rgb(246, 246, 246); border-top-style: solid; border-top-color: rgb(255, 255, 255); text-decoration: underline; color: rgb(34, 119, 221); &#8220;&#62;<strong>Remove bloat</strong></a>- Remove all occurrences of Flash, Java,and other third-party iframes.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="document.body.contentEditable%20=%20'true';%20document.designMode='on';%20void%200" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Edit Website</strong></a> &#8211; Allows you to edit any websites you viewed. Original display will be restored upon refresh.<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/edit-website.jpg" width="400" height="266" alt="edit website" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.printwhatyoulike.com/';window._pwyl_pro_id=null;window._pwyl_bmkl=document.createElement('script');window._pwyl_bmkl.setAttribute('type','text/javascript');window._pwyl_bmkl.setAttribute('src',window._pwyl_home+'static/compressed/pwyl_bookmarklet_10.js');window._pwyl_bmkl.setAttribute('pwyl','true');document.getElementsByTagName('head')[0].appendChild(window._pwyl_bmkl);}})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Customize Print</strong></a> &#8211; Allows you to customize the layout, fonts, colors, etc before printing a webpage. By<a href="http://www.printwhatyoulike.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>printwhatyoulike</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.pdfdownload.org/web2pdf/Default.aspx?left=0&#38;right=0&#38;top=0&#38;bottom=0&#38;page=0&#38;cURL='+document.location.href));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Download as PDF</strong></a> (<a href="http://photoshop.vn/home/topic/firefox">firefox</a>) &#8211; Convert and save page as PDF. <a href="http://www.pdfdownload.org/pdf_bookmarklet.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Click here</strong></a> for bookmarklets of other browsers. By <a href="http://www.pdfdownload.org/pdf_bookmarklet.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>pdfdownload</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function in2html(txt){if(!txt){return &#39;&#39;}var txthtml=txt.replace(/&#38;/g,&#39;&#38;&#39;).replace(/&#60;/g,&#39;/g,&#8217;&#62;&#8217;);return(txthtml);}var backlink=in2html(loc),embmedia=new Array(),filetype=&#8221;,fileURL=new Array(),found=false,home=&#8217;http://1024k.de/bookmarklets/video-bookmarklets.html&#8217;,hometitle=&#8217;title=&#8221;Author&#8217;s homepage&#8221;&#8216;,host=window.location.hostname,iframe,link,loc=window.location.href,logobottom,logobottomimgsrc=&#8217;data:image/png;base64,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&#8217;,logotop,logotopimgsrc=&#8217;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAABOCAMAAACNDREzAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADAUExURfn4966ml9Pe0cDSvYuHdbrMtk9GMXVlQenp47mkeMTVwol4Ui0nF8azjc/bzODk3JaRghYRCKqVaXFpV9rX0cnFwJeEW7KdcWBZSauSYcnZx3&#215;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&#8217;,mediahost=false,scriptmedia=new Array(),source,urlend,urlstart,urlstra=&#8217;
<div class="filelink"><a href="',urlstrb='" title="Download video from ',urlstrc='">Download link</a> &#8216;,urlstrd=&#8217;</div>
<p>Right-click -&#62; &#8220;Save Target As&#8221;&#8216;,videoid,xmlhttp=false,xmlhttp_url=false,xmlobject;function rev(str){if(!str){return &#8221;}var revstr=&#8221;;for(i=str.length-1;i&#62;=0;i&#8211;){revstr+=str.charAt(i)}return revstr;}function xmlhttp_request(){if(window.XMLHttpRequest){try{xmlhttp=new XMLHttpRequest();}catch(e){xmlhttp=false;}}return xmlhttp;}function outputxhtml(){if(fileURL.length!==0){if(logotopimgsrc!==false){logotop=&#8217;<a href="'+backlink+'" title="(back to '+mediahost+')"><img alt="" class="logoimgtop" src="'+logotopimgsrc+'" /></a>&#8216;;}else{logotop=&#8221;;}if(logobottomimgsrc!==false){logobottom=&#8217;<a href="'+home+'"><img alt="" class="logoimgbottom" src="'+logobottomimgsrc+'" /></a>&#8216;;}else{logobottom=&#8221;;}link=fileURL.join(&#8216;</li>
<li>&#8216;);document.write(&#8216;Video Download, &#8216;+host+&#8217;<!--body { margin:0;padding:0 11px;background-color:#818181;font:normal 12px arial,helvetica,sans-serif; }.pagebox { background-color:#FFFFFF;position:relative;min-width:458px;max-width:505px;margin:34px auto;padding:34px;border:1px solid #696969;-moz-border-radius:10px; }h1, h2 { border-bottom:1px solid #C8C8C8; }h1 { margin:0 15px 10px 75px;font-size:18px; }h2 { margin:0 15px 0 75px;padding:2px 15px 15px 0;font-weight:normal;font-size:15px; }ul { margin:12px 15px 5px 93px;padding:0;list-style:square; }.filelink { width:175px;float:left; }.backlink { margin:15px 15px 0 75px;padding:15px 15px 2px 0;border-top:1px solid #C8C8C8; }.link { position:absolute;right:10px;bottom:-22px;}a.linktext { font-weight:normal;font-size:11px;color:#4B4B4B;text-decoration:none; }.logotop { position:absolute;left:11px;top:28px;}.logoimgtop { width:86px;height78px;border:none; }.logobottom { position:absolute;right:10px;bottom:8px;}.logoimgbottom { width:91px;height31px;border:none; }.donation { width:69px;height38px;border:none;position:absolute;left:21px;top:118px; }-->
<div class="pagebox">
<div class="logotop">&#8216;+logotop+&#8217;</div>
<h1>Video Download, &#8216;+host+&#8217;</h1>
<h2>The following media has been found on the <span class="em">&#8216;+mediahost+&#8217;</span> website.</h2>
<ul>
<li>&#8216;+link+&#8217;</li>
</ul>
<p class="backlink">Return to <a href="'+backlink+'" title="(back to '+mediahost+')">&#8216;+mediahost+&#8217;</a> website</p>
<div class="link"><a class="linktext" href="'+home+'">(script by 1024k.de)</a></div>
<div class="donation">
<div></div>
</div>
<div class="logobottom">&#8216;+logobottom+&#8217;</div>
</div>
<p>&#8216;);document.close();}else{alert(&#8216;No video file has been found.&#8217;);}}function extracturls(){if(host.match(/break./i)!=null){mediahost=&#8217;Break.com&#8217;}else if(host.match(/clipfish.de/i)!=null){mediahost=&#8217;Clipfish&#8217;}else if(host.match(/dailymotion./i)!=null){mediahost=&#8217;Dailymotion&#8217;}else if(host.match(/google./i)!=null){mediahost=&#8217;Google&#8217;}else if(host.match(/metacafe./i)!=null){mediahost=&#8217;Metacafe&#8217;}else if(host.match(/myspace./i)!=null){mediahost=&#8217;Myspace&#8217;}else if(host.match(/myvideo./i)!=null){mediahost=&#8217;MyVideo&#8217;}else if(host.match(/putfile./i)!=null){mediahost=&#8217;Putfile&#8217;}else if(host.match(/sevenload./i)!=null){mediahost=&#8217;Sevenload&#8217;}else if(host.match(/youtube./i)!=null){mediahost=&#8217;YouTube&#8217;}switch(mediahost){case&#8217;Break.com&#8217;:embmedia=document.getElementById(&#8216;break_player&#8217;);if(embmedia!=null){source=unescape(embmedia.getAttribute(&#8216;flashvars&#8217;));if(source.match(/videoPath=/i)!==null){urlstart=source.indexOf(&#8216;videoPath=&#8217;)+10;urlend=source.indexOf(&#8216;.flv&#8217;,urlstart)+4;source=in2html(source.substring(urlstart,urlend));filetype=&#8217;(.flv)&#8217;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;source=source.replace(/.flv/,&#8217;.wmv&#8217;);filetype=&#8217;(.wmv)&#8217;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}}outputxhtml();break;case&#8217;Clipfish&#8217;:embmedia=document.getElementsByTagName(&#8216;embed&#8217;);if(embmedia.length==0){outputxhtml();}for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;src&#39;)!==null){videoid=unescape(embmedia[i].getAttribute(&#39;src&#39;));if(videoid.indexOf(&#39;videoid=&#39;)!=-1){found=true;urlstart=videoid.indexOf(&#39;videoid=&#39;)+8;if(videoid.indexOf(&#39;&#38;&#39;,urlstart)!=-1){urlend=videoid.indexOf(&#39;&#38;&#39;,urlstart);}else{urlend=videoid.length;}videoid=videoid.substring(urlstart,urlend);xmlhttp_url=&#39;http://&#39;+host+&#39;/video_n.php?videoid=&#39;+videoid;xmlhttp_request();if(xmlhttp!==false){function clipfish_xmlhttp_response(){if((xmlhttp.readyState==4)&#38;&#38;(xmlhttp.status==200)){xmlobject=xmlhttp.responseText;source=in2html(xmlobject.substring(xmlobject.indexOf(&#39;&#38;url=&#39;)+5,xmlobject.indexOf(&#39;.flv&#39;)+4));filetype=&#39;(.flv)&#39;;if(source!=&#39;&#39;){fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}}xmlhttp.onreadystatechange=clipfish_xmlhttp_response;xmlhttp.open(&#34;GET&#34;,xmlhttp_url,true);xmlhttp.send(null);}break;}}if((i==(embmedia.length-1))&#38;&#38;(found!==true)){outputxhtml();}}break;case&#39;Dailymotion&#39;:embmedia=document.getElementsByTagName(&#39;embed&#39;);for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;flashvars&#39;)!==null){source=unescape(embmedia[i].getAttribute(&#39;flashvars&#39;));urlstart=source.indexOf(&#39;url=&#39;)+4;urlend=source.indexOf(&#39;&#38;&#39;,urlstart);source=in2html(source.substring(urlstart,urlend));filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}outputxhtml();break;case&#39;Google&#39;:iframe=document.getElementById(&#34;3rdPartyFrame&#34;);if((iframe!=null)&#38;&#38;(iframe.src.match(/google./i)!==null)){embmedia=iframe.contentDocument.getElementsByTagName(&#39;embed&#39;);for(i=0;i&#60;embmedia.length;++i){source=unescape(embmedia[i].getAttribute(&#39;src&#39;));if(source.indexOf(&#39;videoUrl=&#39;)!=-1){source=in2html(source.substr(source.indexOf(&#39;videoUrl=&#39;)+9));filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}if(iframe.contentDocument.getElementById(&#39;macdownloadlink&#39;)!==null){source=in2html(iframe.contentDocument.getElementById(&#39;macdownloadlink&#39;).href);filetype=&#39;(.avi)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}if(iframe.contentDocument.getElementById(&#39;ipoddownloadlink&#39;)!==null){source=in2html(iframe.contentDocument.getElementById(&#39;ipoddownloadlink&#39;).href);filetype=&#39;(.mp4) (iPod)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}if(iframe.contentDocument.getElementById(&#39;pspdownloadlink&#39;)!==null){source=in2html(iframe.contentDocument.getElementById(&#39;pspdownloadlink&#39;).href);filetype=&#39;(.mp4) (PSP)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}else if((iframe!=null)&#38;&#38;(iframe.src.match(/.*./i))!==null){alert(&#39;Please remove the Google frame to download from external websites.&#39;)}else outputxhtml();break;case&#39;Metacafe&#39;:scriptmedia=document.getElementsByTagName(&#39;script&#39;);for(i=0;i&#60;scriptmedia.length;++i){if(scriptmedia[i].text.match(/itemID=[0-9]+/i)!==null){found=true;xmlhttp_url=scriptmedia[i].text.match(/itemID=[0-9]+/i);xmlhttp_url=&#39;http://&#39;+host+&#39;/fplayer.php?itemID=&#39;+String(xmlhttp_url).match(/[0-9]+/i)+&#39;&#38;t=embedded&#39;;xmlhttp_request();if(xmlhttp!==false){function metacafe_xmlhttp_response(){if((xmlhttp.readyState==4)&#38;&#38;(xmlhttp.status==200)){xmlobject=(new DOMParser()).parseFromString(xmlhttp.responseText,&#34;application/xml&#34;);source=in2html(xmlobject.getElementsByTagName(&#39;playlist&#39;)[0].childNodes[1].getAttribute(&#39;url&#39;));filetype=&#39;(.flv)&#39;;if(source!=&#39;&#39;){fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}}xmlhttp.onreadystatechange=metacafe_xmlhttp_response;xmlhttp.open(&#34;GET&#34;,xmlhttp_url,true);xmlhttp.send(null);}break;}if((i==(scriptmedia.length-1))&#38;&#38;(found!==true)){embmedia=document.getElementsByTagName(&#39;embed&#39;);for(j=0;j&#60;embmedia.length;++j){if(embmedia[j].getAttribute(&#39;src&#39;)!==false){source=unescape(embmedia[j].getAttribute(&#39;src&#39;));source=in2html(source.substring(73,source.indexOf(&#39;&#38;&#39;)));fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}outputxhtml();}}break;case&#39;Myspace&#39;:if(loc.match(/videoID=/i)!==null){videoid=loc.match(/videoID=[0-9]+/i)[0].substr(8);source=in2html(&#39;http://content.movies.myspace.com/&#39;+Math.pow(10,7-(videoid.length-5)).toString().substr(1)+videoid.substr(0,videoid.length-5)+&#39;/&#39;+rev(videoid.substring(videoid.length-2))+&#39;/&#39;+rev(videoid.substring(videoid.length-4,videoid.length-2))+&#39;/&#39;+videoid+&#39;.flv&#39;);filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();break;case&#39;MyVideo&#39;:embmedia=document.getElementById(&#39;MFP_10&#39;);if(embmedia!=null){if(embmedia.getAttribute(&#39;flashvars&#39;)!==null){source=unescape(embmedia.getAttribute(&#39;flashvars&#39;));if(source.match(/videoid=/i)!==null){videoid=source.substring(source.indexOf(&#39;videoid=&#39;)+8,source.indexOf(&#39;&#38;&#39;,source.indexOf(&#39;videoid=&#39;)+8));embmedia=document.getElementsByTagName(&#39;a&#39;);for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;onclick&#39;)!==null){source=unescape(embmedia[i].getAttribute(&#39;onclick&#39;));urlstart=source.indexOf(&#39;http&#39;);urlend=source.indexOf(&#39;/thumbs&#39;,urlstart)+1;source=in2html(source.substring(urlstart,urlend)+videoid+&#39;.flv&#39;);filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}}}}outputxhtml();break;case&#39;Putfile&#39;:embmedia=document.getElementById(&#39;flvplayer&#39;);if(embmedia!==null){if(embmedia.getAttribute(&#39;flashvars&#39;)!==null){source=unescape(embmedia.getAttribute(&#39;flashvars&#39;));urlstart=source.indexOf(&#39;flv=&#39;)+4;urlend=source.indexOf(&#39;.flv&#39;,urlstart)+4;if((urlstart!==-1)&#38;&#38;(urlend!==-1)){source=in2html(source.substring(urlstart,urlend));filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}}}else{embmedia=document.getElementsByTagName(&#39;embed&#39;);for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;src&#39;)!==null){source=unescape(embmedia[i].getAttribute(&#39;src&#39;));fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}}outputxhtml();break;case&#39;Sevenload&#39;:scriptmedia=document.getElementsByTagName(&#39;script&#39;);if(scriptmedia.length==0){outputxhtml();}for(i=0;i&#60;scriptmedia.length;++i){videoid=scriptmedia[i].text.match(/var ids*= &#39;(.*)&#39;/gi);if((videoid!==null)&#38;&#38;(RegExp.$1!==&#39;&#39;)){found=true;xmlhttp_url=&#39;http://&#39;+host+&#39;/api/player/id/&#39;+RegExp.$1;xmlhttp_request();if(xmlhttp!==false){function sevenload_xmlhttp_response(){if((xmlhttp.readyState==4)&#38;&#38;(xmlhttp.status==200)){xmlobject=xmlhttp.responseXML;source=in2html(xmlobject.getElementsByTagName(&#39;video&#39;)[0].getAttribute(&#39;url&#39;));filetype=&#39;(.flv)&#39;;if(source!=&#39;&#39;){fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}}xmlhttp.onreadystatechange=sevenload_xmlhttp_response;xmlhttp.open(&#34;GET&#34;,xmlhttp_url,true);xmlhttp.send(null);}break;}if((i==(scriptmedia.length-1))&#38;&#38;(found!==true)){outputxhtml();}}break;case&#39;YouTube&#39;:scriptmedia=document.getElementsByTagName(&#39;script&#39;);for(i=0;i Bookmark This Link // All-In-One Video Bookmarklet&#8221; style=&#8221;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: inherit; vertical-align: baseline; background-color: rgb(246, 246, 246); border-top-style: solid; border-top-color: rgb(255, 255, 255); text-decoration: underline; color: rgb(34, 119, 221); &#8220;&#62;<strong>Download video</strong></a> &#8211; Supports YouTube, Google Video, Metacafe, Myspace, Break.com, Putfile, Dailymotion, Sevenload, MyVideo.de and Clipfish.de.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><strong>More:</strong> &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function%20zoomImage(image,%20amt)%20{%20if(image.initialHeight%20==%20null)%20{image.initialHeight%20=%20image.height;%20image.initialWidth%20=%20image.width;%20image.scalingFactor%20=%201;%20}%20image.scalingFactor%20*=%20amt;%20image.width%20=%20image.scalingFactor%20*%20image.initialWidth;%20image.height%20=%20image.scalingFactor%20*%20image.initialHeight;%20}function%20rZoomFont(n,%20node)%20{for%20(%20var%20i%20=%200;%20i%20&#60;%20node.childNodes.length;%20i++%20)%20{if%20(node.childNodes[i].nodeType%20==%201)%20rZoomFont(n,%20node.childNodes[i]);}startSize%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;font-size&#39;);startSize%20=%20Number(startSize.substr(0,startSize.length-2));lh%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;line-height&#39;);if%20(lh%20!=%20&#39;normal&#39;)%20{lh%20=%20Number(lh.substr(0,lh.length-2))%20*%20n%20+%20&#39;px&#39;;node.style.lineHeight%20=%20lh;}newSize%20=%20(startSize%20*%20n)%20+%20&#39;px&#39;;node.style.fontSize%20=%20newSize;}rZoomFont(1.5,document.getElementsByTagName(&#39;body&#39;)[0]);%20for%20(i=0;%20i<strong>Zoom in</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function%20zoomImage(image,%20amt)%20{%20if(image.initialHeight%20==%20null)%20{image.initialHeight%20=%20image.height;%20image.initialWidth%20=%20image.width;%20image.scalingFactor%20=%201;%20}%20image.scalingFactor%20*=%20amt;%20image.width%20=%20image.scalingFactor%20*%20image.initialWidth;%20image.height%20=%20image.scalingFactor%20*%20image.initialHeight;%20}function%20rZoomFont(n,%20node)%20{for%20(%20var%20i%20=%200;%20i%20&#60;%20node.childNodes.length;%20i++%20)%20{if%20(node.childNodes[i].nodeType%20==%201)%20rZoomFont(n,%20node.childNodes[i]);}startSize%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;font-size&#39;);startSize%20=%20Number(startSize.substr(0,startSize.length-2));lh%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;line-height&#39;);if%20(lh%20!=%20&#39;normal&#39;)%20{lh%20=%20Number(lh.substr(0,lh.length-2))%20*%20n%20+%20&#39;px&#39;;node.style.lineHeight%20=%20lh;}newSize%20=%20(startSize%20*%20n)%20+%20&#39;px&#39;;node.style.fontSize%20=%20newSize;}rZoomFont(0.66,document.getElementsByTagName(&#39;body&#39;)[0]);%20for%20(i=0;%20i<strong>Zoom out</strong></a>, <a class="bookmarklets" href="void(document.body.background='')" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Remove background</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:for(nIx5Bs=0;nIx5Bs<strong>Highlight links</strong></a></p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Traffic, Password And Site Information</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="(function(){C=document.cookie.split(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Zap Cookie</strong></a> &#8211; Removes cookies set by the site, including cookies with paths and domains.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:(function(){var%20s,F,j,f,i;%20s%20=%20%22%22;%20F%20=%20document.forms;%20for(j=0;%20j&#60;F.length;%20++j)%20{%20f%20=%20F[j];%20for%20(i=0;%20i<strong>Show Password</strong></a> &#8211; Set a password and forgot? This bookmarklet takes in your ***** from form field and output you the actual password.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/password.jpg" width="400" height="380" alt="get password" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.sitonomy.com/?url='+location.href)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Site Info</strong></a> &#8211; A bookmarklet that gives you information (advertising network, platform, widgets, etc) of the website you are currently viewing. By <a href="http://www.sitonomy.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>sitonomy</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//builtwith.com/?'+location.host));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Site Info</strong></a> &#8211; Another bookmarklet to find site info By <a href="http://buildwith.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Buildwith</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.netsol.com/cgi-bin/whois/whois?SearchType=do&#38;STRING='%20+%20h[p-2]%20+%20'.'%20+%20h[p-1];%20}%20else%20{%20alert('This%20bookmarklet%20can%20only%20look%20up%20owners%20for%20.com,%20.net,%20.org,%20and%20.edu%20domains.');%20}%20void(0);%20})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Domain owner</strong></a> &#8211; Tells you who own the domain of the site you are viewing.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//del.icio.us/url?url='+document.location.href));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Delicious</strong></a> &#8211; Shows you who, how many people bookmarked the site in delicious.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.alexa.com/data/details/traffic_details?q=&#38;url='+location.hostname" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Alexa</strong></a> &#8211; Shows you the Alexa ranking of the site.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//siteanalytics.compete.com/'+location.host));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Compete</strong></a> &#8211; Shows compete.com ranking.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//technorati.com/blogs/'+encodeURIComponent(location.host)+'?sub=bloginfo'" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Technorati</strong></a> &#8211; Find out more information about a particular blog. <a href="http://technorati.com/tools/favelets.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Click here</strong></a> for more Technorati bookmarklets.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.attentionmeter.com/am_bookmarklet.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>AttentionMeter</strong></a> &#8211; Gives you the Alexa, Quancast, Crunchbase, Alexa and Technorati ranking of the site in a lightbox.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(window.open(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Uptime Check</strong></a> &#8211; Check if a website is down for everyone or just you. By <a href="http://downforeveryoneorjustme.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>downforeveryoneorjustme</strong></a>.</p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Design And Develop</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.karmatics.com/aardvark/loader.js')" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Aardvark</strong></a> &#8211; Aardvark is a Firefox plugin that gives you HTML element details like ID, class, image, position, etc of the page you are viewing. Good news is, it also comes in bookmarklet format.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.andybudd.com/images/layoutgrid.png)');void(myDiv.style.position='absolute');void(myDiv.style.width='100%');void(myDiv.style.height='100%');void(myDiv.style.top='0');void(myDiv.style.left='0');void(myBody.appendChild(myDiv));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Layout Grid</strong></a> &#8211; Applies a layout grid image to the body of the page.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/grid-display.jpg" width="400" height="205" alt="grid display" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function%20C(v)%7breturn%20&#39;%3ctd%3e&#39;+v+&#39;%3c/td%3e%3ctd%3e&#39;+((v%3e%3e4).toString(16)+(v&#38;15).toString(16)).toUpperCase()+&#39;%3c/td%3e%3ctd%20bgcolor=DDDDDD%3e&#38;&#39;+&#39;#&#39;+v+&#39;;</td>
<p>%E2%80%98;}var%20c=4,b=Math.ceil(224/c),a=%E2%80%99<br />
<table>
<tr>%E2%80%98;for(j=0;j&#60;c;j++){a+=&#39;
<td>DEC</td>
<td>HEX</td>
<td>ASC</td>
<p>%E2%80%98;}a+=%E2%80%99</tr>
<p>%E2%80%98;for(i=33;i&#60;33+b;i++){a+=&#39;<br />
<tr>%E2%80%98;for(j=0;j&#60;c;j++){t=i+(j*b);if(t&#60;=255)a+=C(t);}a+=&#39;</tr>
<p>%E2%80%98;}a+=%E2%80%99</table>
<p>%E2%80%98;var%20W=open(%E2%80%9D,%E2%80%9D,%E2%80%99width=500,height=600,left=0,top=0,resizable,scrollbars%E2%80%99);void(W.document.write(a));%E2%80%9D&#62;<strong>ASCII Table</strong></a> %E2%80%93 Brings up a ASCII table for your reference.</p>
<p><a><strong>Disable Image</strong></a>, <a class="bookmarklets" href="void(d=document);if(frames.length){alert('Script%20doesn/'t%20work%20in%20frames');}else{while((el=d.getElementsByTagName('img')).length){el[0].parentNode.removeChild(el[0])}}d.close()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Remove Image</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//westciv.com/mri/theMRI.js');" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Test Selectors</strong></a> &#8211; Test and play with selectors. By <a href="http://westciv.com/mri/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Westciv</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.sprymedia.co.uk/design/design/media/js/design-loader.js');" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Spry Media</strong></a> &#8211; Created by Spry Media, this bookmarklet allow you to view a page in grid view, with ruler measurement, measuring points with units and much more.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//westciv.com/xray/thexray.js');" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>XRAY</strong></a> &#8211; See box model for any element on any site. By <a href="http://westciv.com/xray/index.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Westciv</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(setInterval(function(){var%20qs='?'+new%20Date().getTime(),l,i=0;while(l=document.getElementsByTagName('link')[i++]){if(l.rel&#38;&#38;'stylesheet'==l.rel.toLowerCase()){if(!l._h)l._h=l.href;l.href=l._h+qs}}},2000));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Reload CSS</strong></a> &#8211; Reloads CSS every 2 seconds. Useful for those who&#8217;s constantly editing on the design and need a fresh look at the effects.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(window.open(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Validate RSS</strong></a> &#8211; Check site RSS validity with feedvalidator.org.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//jigsaw.w3.org/css-validator/validator?uri=" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Validate CSS</strong></a> &#8211; Validate site&#8217;s CSS. More CSS bookmarklets &#8211; &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:s=document.getElementsByTagName(&#39;STYLE&#39;);%20ex=document.getElementsByTagName(&#39;LINK&#39;);%20d=window.open().document;%20/*set%20base%20href*/d.open();d.close();%20b=d.body;%20function%20trim(s){return%20s.replace(/^s*n/,%20&#39;&#39;).replace(/s*$/,%20&#39;&#39;);%20};%20function%20iff(a,b,c){return%20b?a+b+c:&#39;&#39;;}function%20add(h){b.appendChild(h);}%20function%20makeTag(t){return%20d.createElement(t);}%20function%20makeText(tag,text){t=makeTag(tag);t.appendChild(d.createTextNode(text));%20return%20t;}%20add(makeText(&#39;style&#39;,%20&#39;iframe{width:100%;height:18em;border:1px%20solid;&#39;));%20add(makeText(&#39;h3&#39;,%20d.title=&#39;Style%20sheets%20in%20&#39;%20+%20location.href));%20for(i=0;%20i<s><strong>View CSS</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:var%20w=window.open(&#39;&#39;,&#39;&#39;,&#39;width=360,height=480,resizable=1&#39;);var%20wd=w.document;var%20prop=(document.defaultView)?&#39;font-size&#39;:&#39;fontSize&#39;;w.document.write(&#39;</p>
<h2>Cascaded%20Styles</h2>
<p>Favelet%20made%20by%20<a>pixy</strong></a></p>
<p>%E2%80%98);w.document.write(%E2%80%99</p>
<p>%E2%80%98);w.document.write(%E2%80%99</p>
<hr />
<pre>');w.document.write('</pre>
<p>%E2%80%98);w.document.close();var%20wp=w.document.getElementById(%E2%80%99props%E2%80%99);Ev(document.childNodes);function%20ES(e){var%20o,s=%E2%80%9D,nm=e.nodeName;var%20p=w.document.getElementById(%E2%80%99prop%E2%80%99).value;if(e.id)nm+=%E2%80%99#%E2%80%99+e.id;if(e.className)nm+=%E2%80%99.%E2%80%99+e.className;if(document.defaultView)s=document.defaultView.getComputedStyle(e,null).getPropertyValue(p);else%20if(e.currentStyle)s=eval(%E2%80%99e.currentStyle.%E2%80%99+p);o=nm+%E2%80%99<br />%E2%86%93%20%20%20%E2%80%B2+p+%E2%80%99:%20%E2%80%B2+s+%E2%80%99<br />%E2%80%98;wp.innerHTML+=o;w.document.close()}function%20Ev(ch){var%20i,e;if(ch)for(i=0;i<strong>List Compute CSS</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(window.open(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Validate HTML</strong></a>- Check if site is using valid HTML based on w3.org. More HTML bookmarklets &#8211; &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:%20void(d=document);void(cs=&#39;http://sam-i-am.com/misc/css/tableborders.css&#39;);void(d.g=d.getElementsByTagName);void(l=&#39;link&#39;);void(H=d.g(&#39;head&#39;).item(0));void(c=(d.all)?c=d.all.tags(l):d.g(l));with(c)%20{for(i=0;i<strong>Show tables</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:var%20t=document.getElementsByTagName(&#39;th&#39;);for%20(i=0;i<strong>Show table headings</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:var%20t=document.getElementsByTagName(&#39;td&#39;);for%20(i=0;i<strong>Show table cells</strong></a>.</p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Dictionary And Translation</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">Quickly search and get answers from these online sites:</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:s=document.getSelection();for(i=0;i<strong>Wikipedia</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.acronymfinder.com/af-query.asp?String=exact&#38;Acronym='+escape(Qr)+'&#38;Find=Find'" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Acronym Finder</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.urbandictionary.com/define.php?term='+escape(q)})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Urban Dictionary</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//dictionary.reference.com/search?r=1&#38;q='+escape(q);%20})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Dictionary.com</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//thesaurus.reference.com/search?r=1&#38;q='+escape(q);%20})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Thesaurus.com</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.reference.com/search?r=1&#38;q='+escape(q);%20})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Reference.com</strong></a></li>
</ul>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">These following bookmarklets allow you to quickly translate a webpage from one language to another using<a href="http://www.google.com/language_tools?hl=en" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Google translate</strong></a>.</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=de&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>German to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=zh-CN&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Chinese Simplified to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=zh-TW&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Chinese Traditional to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=it&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Italian to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=es&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Spanish to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=ja&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Japanese to English</strong></a></li>
</ul>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">You can also try this <a href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=auto&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Auto Detect Language</strong></a> bookmarklet, or visit <a href="http://www.unusualbookmarklets.com/translation.htm" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>unusualbookmarklets</strong></a> for a complete set and various methods of translation bookmarklets.</p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Useful Tools And More Bookmarklets</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.labnol.org/internet/manage-bookmarklets-efficiently/7964/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>How to Efficiently Manage Your Collection of Bookmarklets</strong></a> &#8211; Efficiently manage bookmarklets across all browsers and computers.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.7is7.com/software/bookmarklets/translate.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Translation Bookmarklets</strong></a> &#8211; Great list of various translation bookmarklets.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.howtocreate.co.uk/bookmarklets.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>howtocreate.co.uk</strong></a> &#8211; More bookmarklets for <a href="http://photoshop.vn/home/topic/designers">designers</a> and developers.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:for(nIx5Bs=0;nIx5Bs<strong>Blummy</strong></a> &#8211; Organize your bookmarklets, by <a href="http://www.blummy.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Blummy.com</strong></a>.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/blummy.jpg" width="400" height="249" alt="blummy" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.webreference.com/js/column35/creating.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>webreference.com</strong></a> &#8211; How to create Bookmarklets.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.bookmarklets.com/tools/categor.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Bookmarklets.com</strong></a></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="https://www.squarefree.com/bookmarklets/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Squarefree.com</strong></a></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://pimpmysafari.com/bookmarklets/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>PimpMySafari</strong></a> &#8211; Great collection of bookmarklets for Safari browser.</p>
</div>
<p></span></p>
<p><span class="Apple-style-span" style="color:rgb(50,50,50);font-family:'Lucida Grande';">hxt52sgm5</span> </p>
<p>Source: <a href="http://photoshop.vn/home/article/100-useful-bookmarklets-better-productivity-ultimate-list-535.html">100+ Useful Bookmarklets For Better Productivity &#124; Ultimate List</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Scripts and hacks for curation]]></title>
<link>http://shirleywho.wordpress.com/2009/09/16/scripts-and-hacks-for-curation/</link>
<pubDate>Wed, 16 Sep 2009 19:06:05 +0000</pubDate>
<dc:creator>shwu</dc:creator>
<guid>http://shirleywho.wordpress.com/2009/09/16/scripts-and-hacks-for-curation/</guid>
<description><![CDATA[When you curate scientific literature, there are lots of little tasks and procedures and requirement]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When you curate scientific literature, there are lots of little tasks and procedures and requirements that can all add up into a big inefficient mess if they&#8217;re not integrated very well into your workflow. Some of these things are in-house and so you have some level of control over how they are handled (depending, sometimes, on engineering or management), while for others you are at the mercy of the wilderness that is science. It would be great, for example, if all abstracts contained enough information for us to evaluate whether the rest of the article is worth reading &#8211; or, in many cases, worth buying in order to read it.</p>
<p><div class="wp-caption alignright" style="width: 200px"><a href="http://www.flickr.com/photos/hbart/2678281661/"><img title="papers" src="http://farm4.static.flickr.com/3137/2678281661_ef5992d6ed.jpg" alt="Photo by hbart on Flickr" width="190" /></a><p class="wp-caption-text">Photo by hbart on Flickr</p></div> In the context of genetic association literature, it would also be great if all abstracts used standard database identifiers for SNPs (<em>i.e.</em> rs #s), as this unambiguously defines the variant; used standard means of reporting the association (<em>e.g.</em> odds ratios with 95% confidence intervals and p-values); and mentioned pertinent aspects of the study, such as the population, number of cases and controls, and adjustments for confounders and multiple comparisons. For me, this qualifies as &#8220;enough information to evaluate whether the rest of the article is relevant.&#8221; I hope that when they do not mention things like the corrected p-values, it is not because their p-values were not significant. When articles cost up to $90 a pop&#8230; well, let&#8217;s not get me started.</p>
<p>But I digress. The point is that there are lots of things that could make curation a challenge, and consequently there are lots of things that could make curation easier. Standardization of abstracts, while it doesn&#8217;t make for juicy reading, makes going through high volumes of abstracts easier (and machine-accessible). Linking articles from journal websites to PubMed would also be useful, as PubMed serves as a portal to many other resources. Currently, almost all journals use digital object identifiers (DOIs), which are unique pointers to objects on the web. But PubMed IDs (PMIDs), like digital object identifiers (DOIs), are a little simpler, and provide a lot of useful functionality through integration with NCBI&#8217;s many databases. You can imagine all the little scripts and hacks you could come up with to improve the curation process, using greasemonkey scripts on Firefox, bookmarklets on any browser, and even web apps.</p>
<p>One somewhat mundane task we often have to do is search for a paper on PubMed to get the PMID. This is straightforward given we already know the authors, title, journal, etc, but still kind of a pain. Fortunately, PubMed allows you to search by DOI, which almost all publishers provide. So a slight improvement is to use the DOI as the search term in PubMed, as this will return the exact result if the DOI exists in the database. But you still have to open up a new browser window or navigate to PubMed and copy and paste the DOI into the search bar. To reduce the number of steps even further, we can use a simple bookmarklet containing a bit of javascript (if it looks cut off, you can still double-click copy and paste it):</p>
<p><code>javascript:var%20t;%20try%20%7B%20t=%20((window.getSelection%20&#38;&#38;%20window.getSelection())%20%7C%7C%20(document.getSelection%20&#38;&#38;%20document.getSelection())%20%7C%7C%20(document.selection%20&#38;&#38;%20document.selection.createRange%20&#38;&#38;%20document.selection.createRange().text));%20%7D%20catch(e)%20%7B%20%20t%20=%20%22%22;%20%7D;%20location.href='http://www.ncbi.nlm.nih.gov/sites/entrez?db=pubmed&#38;term='+t+'%5BAID%5D';</code></p>
<p>This script extracts whatever text you&#8217;ve highlighted on a page and attempts to search PubMed using it as the DOI. So obviously it will only work if you&#8217;ve highlighted something and that something is a DOI, and that DOI is in PubMed. But assuming you do and it is, it will send you directly to the PubMed entry for that paper. Save the script as a browser bookmark, put the bookmark in your bookmarks bar, and whenever you&#8217;re on an article webpage (or RSS feed) and want to see the PubMed entry for that article, just highlight the DOI and click the bookmark. (Cameron wrote up a <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=vL1fmqg33BGMc6PQ6kjTQA">pipe</a> on Yahoo!Pipes a while ago that does something similar, which inspired this bookmarklet.)</p>
<p>Clearly even this simple hack can be improved &#8211; it would be nice, perhaps, to have it return the PMID in an alert box so you can make a note and then continue doing whatever you were doing, rather than being sent away to PubMed (this might make use of AJAX?). It would be nice if you didn&#8217;t have to highlight, but the script would look for and extract the DOI from the page automatically. And I&#8217;m sure you could add even more bells and whistles, within reason.</p>
<p>My latest hackneyed&#8230;. &#8220;hack-need&#8221;&#8230; is to be able to identify follow-up studies for a particular genetic association. If you read a paper with PMID X saying SNP A is significantly associated with a disease, it would be really useful to know when future studies look into that association and either replicate or contradict the finding. Hopefully when they do so, they cite PMID X and/or mention SNP A. Essentially, I&#8217;d like to query PubMed for papers that cite a given PMID or SNP (via rs #). Ideally, I could do this in batch for many PMIDs and many SNPs automatically, and have each query return only results that are newer than the previous query (or query date). Then I set the script running behind the scenes, process the results using another script, and maybe have it send me an email with a list of new PMIDs to look into every week. Can world domination be far behind?*</p>
<p>Seriously though, I am looking for tips on how to do this follow-up identification thing, so any help appreciated. <a href="http://plindenbaum.blogspot.com">Pierre</a> has given me some useful hints for how to search PubMed for papers citing a given rs #, and <del datetime="2009-09-16T19:55:02+00:00">it would be great if this could</del> be modified with dates:</p>
<p><code>http://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=snp&#38;id=1802710&#38;db=pubmed&#38;reldate=7</code></p>
<p>(insert your favorite rs # as the id)<br />
Update: <code>reldate</code> limits results to those within a number of days immediately preceding today&#8217;s date; could also use <code>mindate</code> and <code>maxdate</code> to specify a date range.</p>
<p><em>* Why stop there, you might ask? I could write a script that downloads the abstracts, &#8220;reads&#8221; them, filters out the irrelevant ones, summarizes the important information, and populates curation reports. But then I&#8217;d be out of a bloody job&#8230;</em></p>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/hbart/">http://www.flickr.com/photos/hbart/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY-NC-SA 2.0</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[100+ Useful Bookmarklets For Better Productivity | Ultimate List]]></title>
<link>http://vietphotoshop.wordpress.com/2009/09/16/100-useful-bookmarklets-for-better-productivity-ultimate-list/</link>
<pubDate>Wed, 16 Sep 2009 10:12:32 +0000</pubDate>
<dc:creator>jocphoto</dc:creator>
<guid>http://vietphotoshop.wordpress.com/2009/09/16/100-useful-bookmarklets-for-better-productivity-ultimate-list/</guid>
<description><![CDATA[(Photoshop.VN) &#8211; In a nutshell, bookmarklets are small little applications you can place as br]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>(<a href="http://photoshop.vn/home/">Photoshop.VN</a>) &#8211; In a nutshell, bookmarklets are small little applications you can place as browser’s bookmark bar and they each perform a specific function, depending on what they are coded for. Bookmarklets are usually written in Javascript and they are extremely easy to install/remove. Bookmarklets work in most common used browsers like Firefox, Opera and Safari but probably lesser support in Internet Explorer.<!--more-->
<p><span class="Apple-style-span" style="color:rgb(105,105,105);font-family:'Lucida Grande';font-size:16px;line-height:normal;"></p>
<h1 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:35px;font-family:Georgia, Helvetica, sans-serif;vertical-align:baseline;color:rgb(85,85,85);text-transform:capitalize;background-color:rgb(255,255,255);border-color:initial;border-style:initial;border-width:0;margin:0 0 15px;padding:0;"><span class="Apple-style-span" style="color:rgb(50,50,50);font-family:'Lucida Grande';font-size:12px;text-transform:none;line-height:20px;">In this article, we&#8217;ll show you some of the most useful <a href="http://photoshop.vn/home/topic/bookmarklets">bookmarklets</a> for <a href="http://photoshop.vn/home/topic/designers">designers</a>, developers or even if you are a net surfer, they might just come in handy. <em>Installing a <a href="http://photoshop.vn/home/topic/bookmarklet">bookmarklet</a></em> is simple &#8211; all you need to do is drag them to your bookmark toolbar, that&#8217;s all.</span></h1>
<div class="post" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:.75em;font-family:'Lucida Grande', 'Lucida Sans Unicode', helvetica, sans-serif;vertical-align:baseline;color:rgb(50,50,50);background-color:rgb(255,255,255);border-color:initial;border-style:initial;border-width:0;margin:0 0 20px;padding:0 0 25px;">
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Why <a href="http://photoshop.vn/home/topic/bookmarklet">bookmarklet</a> Are Cool?</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">They are efficient! We figured you might compare it with add-ons and browser plug-ins. Here are some advantages of <a href="http://photoshop.vn/home/topic/bookmarklets">bookmarklets</a> over plug-ins we can quickly come out with:</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">Hassle-less installation &#8211; Installing a <a href="http://photoshop.vn/home/topic/bookmarklet">bookmarklet</a> is simple. All you need to do is drag it up to the bookmark toolbar. To remove them, just right click on it and hit delete.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">Light &#8211; If you&#8217;ve installed more than 15 add-ons in your <a href="http://photoshop.vn/home/topic/firefox">firefox</a>, you&#8217;ll probably find it slower to start. <a href="http://photoshop.vn/home/topic/bookmarklets">bookmarklets</a> are just <a href="http://photoshop.vn/home/topic/couple-lines">couple of lines</a> of Javascript codes. You can have 50 and <a href="http://photoshop.vn/home/topic/firefox">firefox</a> doesn&#8217;t even lag a bit.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">No updates &#8211; Most plugins require update especially when there is a new version of the browser. Boomarklet on the other hand, are less likely to require an update.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">Cross Browser compatibility &#8211; Bookmarklets are written with Javascripts, they work in most browsers.</li>
</ul>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"> </p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Social Bookmarking And Sharing</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">Here are a bunch of <a href="http://photoshop.vn/home/topic/social-bookmarking">social bookmarking</a> bookmarklets that might come in handy:</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//digg.com/submit?phase=3&#38;url='+encodeURIComponent(location.href)+'&#38;title='+encodeURIComponent(document.title)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Digg this!</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//delicious.com/save?url='+encodeURIComponent(window.location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;v=5&#38;';a=function(){if(!window.open(f+'noui=1&#38;jump=doclose','deliciousuiv5','location=yes,links=no,scrollbars=no,toolbar=no,width=550,height=550'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Delicious</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.designfloat.com/submit.php?url='+escape(q),'','resizable,location,menubar,toolbar,scrollbars,status'));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Design Float</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//reddit.com/submit?url='+location.href+'&#38;title='+encodeURIComponent(document.title)})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Reddit</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.mixx.com/submit?page_url='+escape(window.location)))()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Mixx</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//designmoo.com/submit?url='+encodeURIComponent(location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;body='+encodeURIComponent(document.getSelection()),'',''));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Designmoo</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.facebook.com/share',l=d.location,e=encodeURIComponent,p='.php?src=bm&#38;v=4&#38;i=1250537391&#38;u='+e(l.href)+'&#38;t='+e(d.title);1;try{if%20(!/^(.*.)?facebook.[^.]*$/.test(l.host))throw(0);share_internal_bookmarklet(p)}catch(z)%20{a=function()%20{if%20(!window.open(f+'r'+p,'sharer','toolbar=0,status=0,resizable=1,width=626,height=436'))l.href=f+p};if%20(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Facebook</strong></a> &#8211; Share links in Facebook.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.stumbleupon.com/url/%22+b.location,'StumbleUpOn','location=1,status=1,scrollbars=1,resizable=1,alwaysRaised=1,width=800px,height=600px');a.setTimeout(function(){d.focus()},60)})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Stumble Upon?</strong></a> &#8211; Check if a site/page has been Stumble Uponed.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.tumblr.com/share',l=d.location,e=encodeURIComponent,p='?v=3&#38;u='+e(l.href)%20+'&#38;t='+e(d.title)%20+'&#38;s='+e(s),u=f+p;try{if(!/^(.*.)?tumblr[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a%20=function(){if(!w.open(u,'t','toolbar=0,resizable=0,status=1,width=450,height=430'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();}void(0)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Tumblr</strong></a> &#8211; Share images on <a href="http://photoshop.vn/home/topic/tumblr">tumblr</a>.</li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//mail.google.com/mail/?view=cm&#38;fs=1&#38;tf=1&#38;to=&#38;su='%20+%20escape(document.title)%20+%20'&#38;body='%20+%20escape(Q)%20+%20escape('n')%20+%20escape(location.href)%20+%20'&#38;zx=RANDOMCRAP&#38;shva=1&#38;disablechatbrowsercheck=1&#38;ui=1','gmailForm','scrollbars=yes,width=680,height=510,top=175,left=75,status=no,resizable=yes');if%20(!document.all)%20T%20=%20setTimeout('popw.focus()',50);void(0);" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Gmail This</strong></a> &#8211; Quickly paste a link in Gmail</li>
</ul>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Browser Resize</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.hongkiat.com/blog/firefox-resize-bookmarklet-now-with-re-positioning/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Here&#8217;s a complete article</strong></a> of browser resizing bookmarklets with positioning <a href="http://photoshop.vn/home/topic/capability">capability</a>.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<a href="http://www.hongkiat.com/blog/firefox-resize-bookmarklet-now-with-re-positioning/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><img src="http://hongki.at/images/bookmarklets/browser-resize.jpg" width="450" height="300" alt="browser resize bookmarklets" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></a></p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Readability, Download And <a href="http://photoshop.vn/home/topic/prints">prints</a></h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//bit.ly/',l=d.location,p='?v=3&#38;u='+enc(l.href)%20+'&#38;s='+enc(d.title)+'%20'+s2,u=f+p;try{if(!/^(.*.)?tumblrzzz[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a%20=function(){if(!w.open(u))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();}void(0)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Shorten URL</strong></a> &#8211; In this case, we use bit.ly&#8217;s shortening bookmarklet. <a href="http://www.hongkiat.com/blog/url-shortening-services-the-ultimate-list/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Click here</strong></a> for a list of URL shorteners with bookmarklet <a href="http://photoshop.vn/home/topic/scripts">scripts</a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets">%20b.offsetHeight)h=b.scrollHeight;else%20h=b.offsetHeight;w.open(%E2%80%99http://kwout.com/grab?address=%E2%80%99+encodeURIComponent(location.href)+%E2%80%99&#38;scroll=%E2%80%99+(y/h));})();%E2%80%9D&#62;<strong>Print Screen</strong></a> %E2%80%93 Make a screen shot of any website you are in with <a><strong>Kwout</strong></a> &#8211; Make a screen shot of any website you are in with <a href="http://kwout.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Kwout</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//aviary.com/'%20+%20location.href;" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Print Screen</strong></a> &#8211; Another print screen bookmarklet. By <a href="http://www.aviary.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Aviary</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//browsershots.org/?url='+escape(location))" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Browsershot</strong></a> &#8211; Get a browsershot <a href="http://photoshop.vn/home/topic/prints">prints</a>creen of any website.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//lab.arc90.com/experiments/readability/css/readability-print.css';_readability_print_css.media='print';_readability_print_css.type='text/css';document.getElementsByTagName('head')[0].appendChild(_readability_print_css);})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Better Readability</strong></a> &#8211; This bookmarklet cleans up the page, leaving you with nothing but clean content for better readability. You can create a customized version at <a href="http://lab.arc90.com/experiments/readability/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Arc90 Lab</strong></a>.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/better-readability.jpg" width="400" height="326" alt="better readability" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//tidyread.com/tidyread.js?u=%22+encodeURIComponent(document.location.href)+%22&#38;t=%22+encodeURIComponent(document.title);document.body.appendChild(s)})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Tidy Read</strong></a> &#8211; Tidy up your page for better readability.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:(function(){function R(w){try{var d=w.document,j,i,t,T,N,b,r=1,C;for(j=0;t=[&#34;object&#34;,&#34;embed&#34;,&#34;applet&#34;,&#34;iframe&#34;][j];++j){T=d.getElementsByTagName(t);for(i=T.length-1;(i+1)&#38;&#38;(N=T[i]);&#8211;i)if(j!=3&#124;&#124;!R((C=N.contentWindow)?C:N.contentDocument.defaultView)){b=d.createElement(&#34;div&#34;);b.style.width=N.width; b.style.height=N.height;b.innerHTML=&#34;<del>&#8220;+(j==3?&#8221;third-party &#8220;+t:t)+&#8221;</del>&#8220;;N.parentNode.replaceChild(b,N);}}}catch(E){r=0}return r}R(self);var i,x;for(i=0;x=frames[i];++i)R(x)})()&#8221; style=&#8221;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: inherit; vertical-align: baseline; background-color: rgb(246, 246, 246); border-top-style: solid; border-top-color: rgb(255, 255, 255); text-decoration: underline; color: rgb(34, 119, 221); &#8220;&#62;<strong>Remove bloat</strong></a>- Remove all occurrences of Flash, Java,and other third-party iframes.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="document.body.contentEditable%20=%20'true';%20document.designMode='on';%20void%200" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Edit Website</strong></a> &#8211; Allows you to edit any websites you viewed. Original display will be restored upon refresh.<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/edit-website.jpg" width="400" height="266" alt="edit website" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.printwhatyoulike.com/';window._pwyl_pro_id=null;window._pwyl_bmkl=document.createElement('script');window._pwyl_bmkl.setAttribute('type','text/javascript');window._pwyl_bmkl.setAttribute('src',window._pwyl_home+'static/compressed/pwyl_bookmarklet_10.js');window._pwyl_bmkl.setAttribute('pwyl','true');document.getElementsByTagName('head')[0].appendChild(window._pwyl_bmkl);}})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Customize Print</strong></a> &#8211; Allows you to customize the layout, fonts, colors, etc before printing a webpage. By<a href="http://www.printwhatyoulike.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>printwhatyoulike</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.pdfdownload.org/web2pdf/Default.aspx?left=0&#38;right=0&#38;top=0&#38;bottom=0&#38;page=0&#38;cURL='+document.location.href));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Download as PDF</strong></a> (<a href="http://photoshop.vn/home/topic/firefox">firefox</a>) &#8211; Convert and save page as PDF. <a href="http://www.pdfdownload.org/pdf_bookmarklet.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Click here</strong></a> for bookmarklets of other browsers. By <a href="http://www.pdfdownload.org/pdf_bookmarklet.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>pdfdownload</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function in2html(txt){if(!txt){return &#39;&#39;}var txthtml=txt.replace(/&#38;/g,&#39;&#38;&#39;).replace(/&#60;/g,&#39;/g,&#8217;&#62;&#8217;);return(txthtml);}var backlink=in2html(loc),embmedia=new Array(),filetype=&#8221;,fileURL=new Array(),found=false,home=&#8217;http://1024k.de/bookmarklets/video-bookmarklets.html&#8217;,hometitle=&#8217;title=&#8221;Author&#8217;s homepage&#8221;&#8216;,host=window.location.hostname,iframe,link,loc=window.location.href,logobottom,logobottomimgsrc=&#8217;data:image/png;base64,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&#8217;,logotop,logotopimgsrc=&#8217;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAABOCAMAAACNDREzAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADAUExURfn4966ml9Pe0cDSvYuHdbrMtk9GMXVlQenp47mkeMTVwol4Ui0nF8azjc/bzODk3JaRghYRCKqVaXFpV9rX0cnFwJeEW7KdcWBZSauSYcnZx3&#215;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&#8217;,mediahost=false,scriptmedia=new Array(),source,urlend,urlstart,urlstra=&#8217;
<div class="filelink"><a href="',urlstrb='" title="Download video from ',urlstrc='">Download link</a> &#8216;,urlstrd=&#8217;</div>
<p>Right-click -&#62; &#8220;Save Target As&#8221;&#8216;,videoid,xmlhttp=false,xmlhttp_url=false,xmlobject;function rev(str){if(!str){return &#8221;}var revstr=&#8221;;for(i=str.length-1;i&#62;=0;i&#8211;){revstr+=str.charAt(i)}return revstr;}function xmlhttp_request(){if(window.XMLHttpRequest){try{xmlhttp=new XMLHttpRequest();}catch(e){xmlhttp=false;}}return xmlhttp;}function outputxhtml(){if(fileURL.length!==0){if(logotopimgsrc!==false){logotop=&#8217;<a href="'+backlink+'" title="(back to '+mediahost+')"><img alt="" class="logoimgtop" src="'+logotopimgsrc+'" /></a>&#8216;;}else{logotop=&#8221;;}if(logobottomimgsrc!==false){logobottom=&#8217;<a href="'+home+'"><img alt="" class="logoimgbottom" src="'+logobottomimgsrc+'" /></a>&#8216;;}else{logobottom=&#8221;;}link=fileURL.join(&#8216;</li>
<li>&#8216;);document.write(&#8216;Video Download, &#8216;+host+&#8217;<!--body { margin:0;padding:0 11px;background-color:#818181;font:normal 12px arial,helvetica,sans-serif; }.pagebox { background-color:#FFFFFF;position:relative;min-width:458px;max-width:505px;margin:34px auto;padding:34px;border:1px solid #696969;-moz-border-radius:10px; }h1, h2 { border-bottom:1px solid #C8C8C8; }h1 { margin:0 15px 10px 75px;font-size:18px; }h2 { margin:0 15px 0 75px;padding:2px 15px 15px 0;font-weight:normal;font-size:15px; }ul { margin:12px 15px 5px 93px;padding:0;list-style:square; }.filelink { width:175px;float:left; }.backlink { margin:15px 15px 0 75px;padding:15px 15px 2px 0;border-top:1px solid #C8C8C8; }.link { position:absolute;right:10px;bottom:-22px;}a.linktext { font-weight:normal;font-size:11px;color:#4B4B4B;text-decoration:none; }.logotop { position:absolute;left:11px;top:28px;}.logoimgtop { width:86px;height78px;border:none; }.logobottom { position:absolute;right:10px;bottom:8px;}.logoimgbottom { width:91px;height31px;border:none; }.donation { width:69px;height38px;border:none;position:absolute;left:21px;top:118px; }-->
<div class="pagebox">
<div class="logotop">&#8216;+logotop+&#8217;</div>
<h1>Video Download, &#8216;+host+&#8217;</h1>
<h2>The following media has been found on the <span class="em">&#8216;+mediahost+&#8217;</span> website.</h2>
<ul>
<li>&#8216;+link+&#8217;</li>
</ul>
<p class="backlink">Return to <a href="'+backlink+'" title="(back to '+mediahost+')">&#8216;+mediahost+&#8217;</a> website</p>
<div class="link"><a class="linktext" href="'+home+'">(script by 1024k.de)</a></div>
<div class="donation">
<div></div>
</div>
<div class="logobottom">&#8216;+logobottom+&#8217;</div>
</div>
<p>&#8216;);document.close();}else{alert(&#8216;No video file has been found.&#8217;);}}function extracturls(){if(host.match(/break./i)!=null){mediahost=&#8217;Break.com&#8217;}else if(host.match(/clipfish.de/i)!=null){mediahost=&#8217;Clipfish&#8217;}else if(host.match(/dailymotion./i)!=null){mediahost=&#8217;Dailymotion&#8217;}else if(host.match(/google./i)!=null){mediahost=&#8217;Google&#8217;}else if(host.match(/metacafe./i)!=null){mediahost=&#8217;Metacafe&#8217;}else if(host.match(/myspace./i)!=null){mediahost=&#8217;Myspace&#8217;}else if(host.match(/myvideo./i)!=null){mediahost=&#8217;MyVideo&#8217;}else if(host.match(/putfile./i)!=null){mediahost=&#8217;Putfile&#8217;}else if(host.match(/sevenload./i)!=null){mediahost=&#8217;Sevenload&#8217;}else if(host.match(/youtube./i)!=null){mediahost=&#8217;YouTube&#8217;}switch(mediahost){case&#8217;Break.com&#8217;:embmedia=document.getElementById(&#8216;break_player&#8217;);if(embmedia!=null){source=unescape(embmedia.getAttribute(&#8216;flashvars&#8217;));if(source.match(/videoPath=/i)!==null){urlstart=source.indexOf(&#8216;videoPath=&#8217;)+10;urlend=source.indexOf(&#8216;.flv&#8217;,urlstart)+4;source=in2html(source.substring(urlstart,urlend));filetype=&#8217;(.flv)&#8217;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;source=source.replace(/.flv/,&#8217;.wmv&#8217;);filetype=&#8217;(.wmv)&#8217;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}}outputxhtml();break;case&#8217;Clipfish&#8217;:embmedia=document.getElementsByTagName(&#8216;embed&#8217;);if(embmedia.length==0){outputxhtml();}for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;src&#39;)!==null){videoid=unescape(embmedia[i].getAttribute(&#39;src&#39;));if(videoid.indexOf(&#39;videoid=&#39;)!=-1){found=true;urlstart=videoid.indexOf(&#39;videoid=&#39;)+8;if(videoid.indexOf(&#39;&#38;&#39;,urlstart)!=-1){urlend=videoid.indexOf(&#39;&#38;&#39;,urlstart);}else{urlend=videoid.length;}videoid=videoid.substring(urlstart,urlend);xmlhttp_url=&#39;http://&#39;+host+&#39;/video_n.php?videoid=&#39;+videoid;xmlhttp_request();if(xmlhttp!==false){function clipfish_xmlhttp_response(){if((xmlhttp.readyState==4)&#38;&#38;(xmlhttp.status==200)){xmlobject=xmlhttp.responseText;source=in2html(xmlobject.substring(xmlobject.indexOf(&#39;&#38;url=&#39;)+5,xmlobject.indexOf(&#39;.flv&#39;)+4));filetype=&#39;(.flv)&#39;;if(source!=&#39;&#39;){fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}}xmlhttp.onreadystatechange=clipfish_xmlhttp_response;xmlhttp.open(&#34;GET&#34;,xmlhttp_url,true);xmlhttp.send(null);}break;}}if((i==(embmedia.length-1))&#38;&#38;(found!==true)){outputxhtml();}}break;case&#39;Dailymotion&#39;:embmedia=document.getElementsByTagName(&#39;embed&#39;);for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;flashvars&#39;)!==null){source=unescape(embmedia[i].getAttribute(&#39;flashvars&#39;));urlstart=source.indexOf(&#39;url=&#39;)+4;urlend=source.indexOf(&#39;&#38;&#39;,urlstart);source=in2html(source.substring(urlstart,urlend));filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}outputxhtml();break;case&#39;Google&#39;:iframe=document.getElementById(&#34;3rdPartyFrame&#34;);if((iframe!=null)&#38;&#38;(iframe.src.match(/google./i)!==null)){embmedia=iframe.contentDocument.getElementsByTagName(&#39;embed&#39;);for(i=0;i&#60;embmedia.length;++i){source=unescape(embmedia[i].getAttribute(&#39;src&#39;));if(source.indexOf(&#39;videoUrl=&#39;)!=-1){source=in2html(source.substr(source.indexOf(&#39;videoUrl=&#39;)+9));filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}if(iframe.contentDocument.getElementById(&#39;macdownloadlink&#39;)!==null){source=in2html(iframe.contentDocument.getElementById(&#39;macdownloadlink&#39;).href);filetype=&#39;(.avi)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}if(iframe.contentDocument.getElementById(&#39;ipoddownloadlink&#39;)!==null){source=in2html(iframe.contentDocument.getElementById(&#39;ipoddownloadlink&#39;).href);filetype=&#39;(.mp4) (iPod)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}if(iframe.contentDocument.getElementById(&#39;pspdownloadlink&#39;)!==null){source=in2html(iframe.contentDocument.getElementById(&#39;pspdownloadlink&#39;).href);filetype=&#39;(.mp4) (PSP)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}else if((iframe!=null)&#38;&#38;(iframe.src.match(/.*./i))!==null){alert(&#39;Please remove the Google frame to download from external websites.&#39;)}else outputxhtml();break;case&#39;Metacafe&#39;:scriptmedia=document.getElementsByTagName(&#39;script&#39;);for(i=0;i&#60;scriptmedia.length;++i){if(scriptmedia[i].text.match(/itemID=[0-9]+/i)!==null){found=true;xmlhttp_url=scriptmedia[i].text.match(/itemID=[0-9]+/i);xmlhttp_url=&#39;http://&#39;+host+&#39;/fplayer.php?itemID=&#39;+String(xmlhttp_url).match(/[0-9]+/i)+&#39;&#38;t=embedded&#39;;xmlhttp_request();if(xmlhttp!==false){function metacafe_xmlhttp_response(){if((xmlhttp.readyState==4)&#38;&#38;(xmlhttp.status==200)){xmlobject=(new DOMParser()).parseFromString(xmlhttp.responseText,&#34;application/xml&#34;);source=in2html(xmlobject.getElementsByTagName(&#39;playlist&#39;)[0].childNodes[1].getAttribute(&#39;url&#39;));filetype=&#39;(.flv)&#39;;if(source!=&#39;&#39;){fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}}xmlhttp.onreadystatechange=metacafe_xmlhttp_response;xmlhttp.open(&#34;GET&#34;,xmlhttp_url,true);xmlhttp.send(null);}break;}if((i==(scriptmedia.length-1))&#38;&#38;(found!==true)){embmedia=document.getElementsByTagName(&#39;embed&#39;);for(j=0;j&#60;embmedia.length;++j){if(embmedia[j].getAttribute(&#39;src&#39;)!==false){source=unescape(embmedia[j].getAttribute(&#39;src&#39;));source=in2html(source.substring(73,source.indexOf(&#39;&#38;&#39;)));fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}outputxhtml();}}break;case&#39;Myspace&#39;:if(loc.match(/videoID=/i)!==null){videoid=loc.match(/videoID=[0-9]+/i)[0].substr(8);source=in2html(&#39;http://content.movies.myspace.com/&#39;+Math.pow(10,7-(videoid.length-5)).toString().substr(1)+videoid.substr(0,videoid.length-5)+&#39;/&#39;+rev(videoid.substring(videoid.length-2))+&#39;/&#39;+rev(videoid.substring(videoid.length-4,videoid.length-2))+&#39;/&#39;+videoid+&#39;.flv&#39;);filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();break;case&#39;MyVideo&#39;:embmedia=document.getElementById(&#39;MFP_10&#39;);if(embmedia!=null){if(embmedia.getAttribute(&#39;flashvars&#39;)!==null){source=unescape(embmedia.getAttribute(&#39;flashvars&#39;));if(source.match(/videoid=/i)!==null){videoid=source.substring(source.indexOf(&#39;videoid=&#39;)+8,source.indexOf(&#39;&#38;&#39;,source.indexOf(&#39;videoid=&#39;)+8));embmedia=document.getElementsByTagName(&#39;a&#39;);for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;onclick&#39;)!==null){source=unescape(embmedia[i].getAttribute(&#39;onclick&#39;));urlstart=source.indexOf(&#39;http&#39;);urlend=source.indexOf(&#39;/thumbs&#39;,urlstart)+1;source=in2html(source.substring(urlstart,urlend)+videoid+&#39;.flv&#39;);filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}}}}outputxhtml();break;case&#39;Putfile&#39;:embmedia=document.getElementById(&#39;flvplayer&#39;);if(embmedia!==null){if(embmedia.getAttribute(&#39;flashvars&#39;)!==null){source=unescape(embmedia.getAttribute(&#39;flashvars&#39;));urlstart=source.indexOf(&#39;flv=&#39;)+4;urlend=source.indexOf(&#39;.flv&#39;,urlstart)+4;if((urlstart!==-1)&#38;&#38;(urlend!==-1)){source=in2html(source.substring(urlstart,urlend));filetype=&#39;(.flv)&#39;;fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}}}else{embmedia=document.getElementsByTagName(&#39;embed&#39;);for(i=0;i&#60;embmedia.length;++i){if(embmedia[i].getAttribute(&#39;src&#39;)!==null){source=unescape(embmedia[i].getAttribute(&#39;src&#39;));fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;break;}}}outputxhtml();break;case&#39;Sevenload&#39;:scriptmedia=document.getElementsByTagName(&#39;script&#39;);if(scriptmedia.length==0){outputxhtml();}for(i=0;i&#60;scriptmedia.length;++i){videoid=scriptmedia[i].text.match(/var ids*= &#39;(.*)&#39;/gi);if((videoid!==null)&#38;&#38;(RegExp.$1!==&#39;&#39;)){found=true;xmlhttp_url=&#39;http://&#39;+host+&#39;/api/player/id/&#39;+RegExp.$1;xmlhttp_request();if(xmlhttp!==false){function sevenload_xmlhttp_response(){if((xmlhttp.readyState==4)&#38;&#38;(xmlhttp.status==200)){xmlobject=xmlhttp.responseXML;source=in2html(xmlobject.getElementsByTagName(&#39;video&#39;)[0].getAttribute(&#39;url&#39;));filetype=&#39;(.flv)&#39;;if(source!=&#39;&#39;){fileURL[fileURL.length]=urlstra+source+urlstrb+mediahost+urlstrc+filetype+urlstrd;}outputxhtml();}}xmlhttp.onreadystatechange=sevenload_xmlhttp_response;xmlhttp.open(&#34;GET&#34;,xmlhttp_url,true);xmlhttp.send(null);}break;}if((i==(scriptmedia.length-1))&#38;&#38;(found!==true)){outputxhtml();}}break;case&#39;YouTube&#39;:scriptmedia=document.getElementsByTagName(&#39;script&#39;);for(i=0;i Bookmark This Link // All-In-One Video Bookmarklet&#8221; style=&#8221;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: inherit; vertical-align: baseline; background-color: rgb(246, 246, 246); border-top-style: solid; border-top-color: rgb(255, 255, 255); text-decoration: underline; color: rgb(34, 119, 221); &#8220;&#62;<strong>Download video</strong></a> &#8211; Supports YouTube, Google Video, Metacafe, Myspace, Break.com, Putfile, Dailymotion, Sevenload, MyVideo.de and Clipfish.de.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><strong>More:</strong> &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function%20zoomImage(image,%20amt)%20{%20if(image.initialHeight%20==%20null)%20{image.initialHeight%20=%20image.height;%20image.initialWidth%20=%20image.width;%20image.scalingFactor%20=%201;%20}%20image.scalingFactor%20*=%20amt;%20image.width%20=%20image.scalingFactor%20*%20image.initialWidth;%20image.height%20=%20image.scalingFactor%20*%20image.initialHeight;%20}function%20rZoomFont(n,%20node)%20{for%20(%20var%20i%20=%200;%20i%20&#60;%20node.childNodes.length;%20i++%20)%20{if%20(node.childNodes[i].nodeType%20==%201)%20rZoomFont(n,%20node.childNodes[i]);}startSize%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;font-size&#39;);startSize%20=%20Number(startSize.substr(0,startSize.length-2));lh%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;line-height&#39;);if%20(lh%20!=%20&#39;normal&#39;)%20{lh%20=%20Number(lh.substr(0,lh.length-2))%20*%20n%20+%20&#39;px&#39;;node.style.lineHeight%20=%20lh;}newSize%20=%20(startSize%20*%20n)%20+%20&#39;px&#39;;node.style.fontSize%20=%20newSize;}rZoomFont(1.5,document.getElementsByTagName(&#39;body&#39;)[0]);%20for%20(i=0;%20i<strong>Zoom in</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function%20zoomImage(image,%20amt)%20{%20if(image.initialHeight%20==%20null)%20{image.initialHeight%20=%20image.height;%20image.initialWidth%20=%20image.width;%20image.scalingFactor%20=%201;%20}%20image.scalingFactor%20*=%20amt;%20image.width%20=%20image.scalingFactor%20*%20image.initialWidth;%20image.height%20=%20image.scalingFactor%20*%20image.initialHeight;%20}function%20rZoomFont(n,%20node)%20{for%20(%20var%20i%20=%200;%20i%20&#60;%20node.childNodes.length;%20i++%20)%20{if%20(node.childNodes[i].nodeType%20==%201)%20rZoomFont(n,%20node.childNodes[i]);}startSize%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;font-size&#39;);startSize%20=%20Number(startSize.substr(0,startSize.length-2));lh%20=%20getComputedStyle(node,&#39;&#39;).getPropertyValue(&#39;line-height&#39;);if%20(lh%20!=%20&#39;normal&#39;)%20{lh%20=%20Number(lh.substr(0,lh.length-2))%20*%20n%20+%20&#39;px&#39;;node.style.lineHeight%20=%20lh;}newSize%20=%20(startSize%20*%20n)%20+%20&#39;px&#39;;node.style.fontSize%20=%20newSize;}rZoomFont(0.66,document.getElementsByTagName(&#39;body&#39;)[0]);%20for%20(i=0;%20i<strong>Zoom out</strong></a>, <a class="bookmarklets" href="void(document.body.background='')" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Remove background</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:for(nIx5Bs=0;nIx5Bs<strong>Highlight links</strong></a></p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Traffic, Password And Site Information</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="(function(){C=document.cookie.split(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Zap Cookie</strong></a> &#8211; Removes cookies set by the site, including cookies with paths and domains.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:(function(){var%20s,F,j,f,i;%20s%20=%20%22%22;%20F%20=%20document.forms;%20for(j=0;%20j&#60;F.length;%20++j)%20{%20f%20=%20F[j];%20for%20(i=0;%20i<strong>Show Password</strong></a> &#8211; Set a password and forgot? This bookmarklet takes in your ***** from form field and output you the actual password.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/password.jpg" width="400" height="380" alt="get password" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.sitonomy.com/?url='+location.href)" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Site Info</strong></a> &#8211; A bookmarklet that gives you information (advertising network, platform, widgets, etc) of the website you are currently viewing. By <a href="http://www.sitonomy.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>sitonomy</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//builtwith.com/?'+location.host));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Site Info</strong></a> &#8211; Another bookmarklet to find site info By <a href="http://buildwith.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Buildwith</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.netsol.com/cgi-bin/whois/whois?SearchType=do&#38;STRING='%20+%20h[p-2]%20+%20'.'%20+%20h[p-1];%20}%20else%20{%20alert('This%20bookmarklet%20can%20only%20look%20up%20owners%20for%20.com,%20.net,%20.org,%20and%20.edu%20domains.');%20}%20void(0);%20})();" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Domain owner</strong></a> &#8211; Tells you who own the domain of the site you are viewing.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//del.icio.us/url?url='+document.location.href));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Delicious</strong></a> &#8211; Shows you who, how many people bookmarked the site in delicious.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.alexa.com/data/details/traffic_details?q=&#38;url='+location.hostname" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Alexa</strong></a> &#8211; Shows you the Alexa ranking of the site.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//siteanalytics.compete.com/'+location.host));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Compete</strong></a> &#8211; Shows compete.com ranking.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//technorati.com/blogs/'+encodeURIComponent(location.host)+'?sub=bloginfo'" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Technorati</strong></a> &#8211; Find out more information about a particular blog. <a href="http://technorati.com/tools/favelets.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Click here</strong></a> for more Technorati bookmarklets.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.attentionmeter.com/am_bookmarklet.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>AttentionMeter</strong></a> &#8211; Gives you the Alexa, Quancast, Crunchbase, Alexa and Technorati ranking of the site in a lightbox.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(window.open(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Uptime Check</strong></a> &#8211; Check if a website is down for everyone or just you. By <a href="http://downforeveryoneorjustme.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>downforeveryoneorjustme</strong></a>.</p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Design And Develop</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.karmatics.com/aardvark/loader.js')" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Aardvark</strong></a> &#8211; Aardvark is a Firefox plugin that gives you HTML element details like ID, class, image, position, etc of the page you are viewing. Good news is, it also comes in bookmarklet format.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.andybudd.com/images/layoutgrid.png)');void(myDiv.style.position='absolute');void(myDiv.style.width='100%');void(myDiv.style.height='100%');void(myDiv.style.top='0');void(myDiv.style.left='0');void(myBody.appendChild(myDiv));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Layout Grid</strong></a> &#8211; Applies a layout grid image to the body of the page.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/grid-display.jpg" width="400" height="205" alt="grid display" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:function%20C(v)%7breturn%20&#39;%3ctd%3e&#39;+v+&#39;%3c/td%3e%3ctd%3e&#39;+((v%3e%3e4).toString(16)+(v&#38;15).toString(16)).toUpperCase()+&#39;%3c/td%3e%3ctd%20bgcolor=DDDDDD%3e&#38;&#39;+&#39;#&#39;+v+&#39;;</td>
<p>%E2%80%98;}var%20c=4,b=Math.ceil(224/c),a=%E2%80%99<br />
<table>
<tr>%E2%80%98;for(j=0;j&#60;c;j++){a+=&#39;
<td>DEC</td>
<td>HEX</td>
<td>ASC</td>
<p>%E2%80%98;}a+=%E2%80%99</tr>
<p>%E2%80%98;for(i=33;i&#60;33+b;i++){a+=&#39;<br />
<tr>%E2%80%98;for(j=0;j&#60;c;j++){t=i+(j*b);if(t&#60;=255)a+=C(t);}a+=&#39;</tr>
<p>%E2%80%98;}a+=%E2%80%99</table>
<p>%E2%80%98;var%20W=open(%E2%80%9D,%E2%80%9D,%E2%80%99width=500,height=600,left=0,top=0,resizable,scrollbars%E2%80%99);void(W.document.write(a));%E2%80%9D&#62;<strong>ASCII Table</strong></a> %E2%80%93 Brings up a ASCII table for your reference.</p>
<p><a><strong>Disable Image</strong></a>, <a class="bookmarklets" href="void(d=document);if(frames.length){alert('Script%20doesn/'t%20work%20in%20frames');}else{while((el=d.getElementsByTagName('img')).length){el[0].parentNode.removeChild(el[0])}}d.close()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Remove Image</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//westciv.com/mri/theMRI.js');" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Test Selectors</strong></a> &#8211; Test and play with selectors. By <a href="http://westciv.com/mri/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Westciv</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//www.sprymedia.co.uk/design/design/media/js/design-loader.js');" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Spry Media</strong></a> &#8211; Created by Spry Media, this bookmarklet allow you to view a page in grid view, with ruler measurement, measuring points with units and much more.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//westciv.com/xray/thexray.js');" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>XRAY</strong></a> &#8211; See box model for any element on any site. By <a href="http://westciv.com/xray/index.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Westciv</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(setInterval(function(){var%20qs='?'+new%20Date().getTime(),l,i=0;while(l=document.getElementsByTagName('link')[i++]){if(l.rel&#38;&#38;'stylesheet'==l.rel.toLowerCase()){if(!l._h)l._h=l.href;l.href=l._h+qs}}},2000));" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Reload CSS</strong></a> &#8211; Reloads CSS every 2 seconds. Useful for those who&#8217;s constantly editing on the design and need a fresh look at the effects.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(window.open(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Validate RSS</strong></a> &#8211; Check site RSS validity with feedvalidator.org.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="//jigsaw.w3.org/css-validator/validator?uri=" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Validate CSS</strong></a> &#8211; Validate site&#8217;s CSS. More CSS bookmarklets &#8211; &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:s=document.getElementsByTagName(&#39;STYLE&#39;);%20ex=document.getElementsByTagName(&#39;LINK&#39;);%20d=window.open().document;%20/*set%20base%20href*/d.open();d.close();%20b=d.body;%20function%20trim(s){return%20s.replace(/^s*n/,%20&#39;&#39;).replace(/s*$/,%20&#39;&#39;);%20};%20function%20iff(a,b,c){return%20b?a+b+c:&#39;&#39;;}function%20add(h){b.appendChild(h);}%20function%20makeTag(t){return%20d.createElement(t);}%20function%20makeText(tag,text){t=makeTag(tag);t.appendChild(d.createTextNode(text));%20return%20t;}%20add(makeText(&#39;style&#39;,%20&#39;iframe{width:100%;height:18em;border:1px%20solid;&#39;));%20add(makeText(&#39;h3&#39;,%20d.title=&#39;Style%20sheets%20in%20&#39;%20+%20location.href));%20for(i=0;%20i<s><strong>View CSS</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:var%20w=window.open(&#39;&#39;,&#39;&#39;,&#39;width=360,height=480,resizable=1&#39;);var%20wd=w.document;var%20prop=(document.defaultView)?&#39;font-size&#39;:&#39;fontSize&#39;;w.document.write(&#39;</p>
<h2>Cascaded%20Styles</h2>
<p>Favelet%20made%20by%20<a>pixy</strong></a></p>
<p>%E2%80%98);w.document.write(%E2%80%99</p>
<p>%E2%80%98);w.document.write(%E2%80%99</p>
<hr />
<pre>');w.document.write('</pre>
<p>%E2%80%98);w.document.close();var%20wp=w.document.getElementById(%E2%80%99props%E2%80%99);Ev(document.childNodes);function%20ES(e){var%20o,s=%E2%80%9D,nm=e.nodeName;var%20p=w.document.getElementById(%E2%80%99prop%E2%80%99).value;if(e.id)nm+=%E2%80%99#%E2%80%99+e.id;if(e.className)nm+=%E2%80%99.%E2%80%99+e.className;if(document.defaultView)s=document.defaultView.getComputedStyle(e,null).getPropertyValue(p);else%20if(e.currentStyle)s=eval(%E2%80%99e.currentStyle.%E2%80%99+p);o=nm+%E2%80%99<br />%E2%86%93%20%20%20%E2%80%B2+p+%E2%80%99:%20%E2%80%B2+s+%E2%80%99<br />%E2%80%98;wp.innerHTML+=o;w.document.close()}function%20Ev(ch){var%20i,e;if(ch)for(i=0;i<strong>List Compute CSS</strong></a>.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a class="bookmarklets" href="void(window.open(" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Validate HTML</strong></a>- Check if site is using valid HTML based on w3.org. More HTML bookmarklets &#8211; &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:%20void(d=document);void(cs=&#39;http://sam-i-am.com/misc/css/tableborders.css&#39;);void(d.g=d.getElementsByTagName);void(l=&#39;link&#39;);void(H=d.g(&#39;head&#39;).item(0));void(c=(d.all)?c=d.all.tags(l):d.g(l));with(c)%20{for(i=0;i<strong>Show tables</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:var%20t=document.getElementsByTagName(&#39;th&#39;);for%20(i=0;i<strong>Show table headings</strong></a>, &#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:var%20t=document.getElementsByTagName(&#39;td&#39;);for%20(i=0;i<strong>Show table cells</strong></a>.</p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Dictionary And Translation</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">Quickly search and get answers from these online sites:</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:s=document.getSelection();for(i=0;i<strong>Wikipedia</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.acronymfinder.com/af-query.asp?String=exact&#38;Acronym='+escape(Qr)+'&#38;Find=Find'" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Acronym Finder</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.urbandictionary.com/define.php?term='+escape(q)})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Urban Dictionary</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//dictionary.reference.com/search?r=1&#38;q='+escape(q);%20})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Dictionary.com</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//thesaurus.reference.com/search?r=1&#38;q='+escape(q);%20})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Thesaurus.com</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//www.reference.com/search?r=1&#38;q='+escape(q);%20})()" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Reference.com</strong></a></li>
</ul>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">These following bookmarklets allow you to quickly translate a webpage from one language to another using<a href="http://www.google.com/language_tools?hl=en" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Google translate</strong></a>.</p>
<ul style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;list-style-type:square;list-style-position:initial;list-style-image:initial;border-color:initial;border-style:initial;border-width:0;margin:0 5px 0 25px;padding:5px;">
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=de&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>German to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=zh-CN&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Chinese Simplified to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=zh-TW&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Chinese Traditional to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=it&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Italian to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=es&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Spanish to English</strong></a></li>
<li style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:19px;border-color:initial;border-style:initial;border-width:0;margin:0;padding:5px 0;"><a class="bookmarklets" href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=ja&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;background-color:rgb(246,246,246);text-decoration:underline;color:rgb(34,119,221);border-color:rgb(255,255,255) initial initial;border-style:solid initial initial;border-width:1px 0 0;margin:0;padding:0;"><strong>Japanese to English</strong></a></li>
</ul>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">You can also try this <a href="//translate.google.com/translate?u='+escape(location.href)+'&#38;hl=en&#38;langpair=auto&#124;en&#38;tbb=1&#38;ie='+e;};" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Auto Detect Language</strong></a> bookmarklet, or visit <a href="http://www.unusualbookmarklets.com/translation.htm" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>unusualbookmarklets</strong></a> for a complete set and various methods of translation bookmarklets.</p>
<h3 style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:500;font-style:inherit;font-size:2em;font-family:inherit;vertical-align:baseline;text-transform:capitalize;color:rgb(39,39,39);letter-spacing:-1px;border-color:initial initial rgb(39,39,39);border-style:initial initial solid;border-width:0 0 2px;margin:0 0 15px;padding:10px 0 2px;">Useful Tools And More Bookmarklets</h3>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.labnol.org/internet/manage-bookmarklets-efficiently/7964/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>How to Efficiently Manage Your Collection of Bookmarklets</strong></a> &#8211; Efficiently manage bookmarklets across all browsers and computers.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.7is7.com/software/bookmarklets/translate.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Translation Bookmarklets</strong></a> &#8211; Great list of various translation bookmarklets.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.howtocreate.co.uk/bookmarklets.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>howtocreate.co.uk</strong></a> &#8211; More bookmarklets for <a href="http://photoshop.vn/home/topic/designers">designers</a> and developers.</p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;">&#60;a class=&#34;bookmarklets&#34; href=&#34;javascript:for(nIx5Bs=0;nIx5Bs<strong>Blummy</strong></a> &#8211; Organize your bookmarklets, by <a href="http://www.blummy.com/" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Blummy.com</strong></a>.<br style="margin:0;padding:0;" /><br />
<br style="margin:0;padding:0;" /><br />
<img src="http://hongki.at/images/bookmarklets/blummy.jpg" width="400" height="249" alt="blummy" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;max-width:500px;border-color:rgb(234,234,234);border-style:solid;border-width:1px;margin:0;padding:3px;" /></p>
<p style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;line-height:20px;border-color:initial;border-style:initial;border-width:0;margin:10px 0 20px;padding:0;"><a href="http://www.webreference.com/js/column35/creating.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>webreference.com</strong></a> &#8211; How to create Bookmarklets.</p>
</div>
<p></span></p>
<p><span class="Apple-style-span" style="color:rgb(50,50,50);font-family:'Lucida Grande';"><a href="http://www.bookmarklets.com/tools/categor.html" style="outline-width:0;outline-style:initial;outline-color:initial;font-weight:inherit;font-style:inherit;font-size:12px;font-family:inherit;vertical-align:baseline;color:rgb(34,119,221);text-decoration:underline;border-color:initial;border-style:initial;border-width:0;margin:0;padding:0;"><strong>Bookmarklets.com</strong></a></span> </p>
<p>Source: <a href="http://photoshop.vn/home/article/100-useful-bookmarklets-better-productivity-ultimate-list-520.html">100+ Useful Bookmarklets For Better Productivity &#124; Ultimate List</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Some Useful Bookmarklets&hellip;]]></title>
<link>http://earltedly.wordpress.com/2009/08/25/some-useful-bookmarklets/</link>
<pubDate>Tue, 25 Aug 2009 12:48:32 +0000</pubDate>
<dc:creator>earltedly</dc:creator>
<guid>http://earltedly.wordpress.com/2009/08/25/some-useful-bookmarklets/</guid>
<description><![CDATA[I’ve experimented with bookmarklets for a while now and I’ve finally settled upon a small set that d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I’ve experimented with <a href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklets</a> for a while now and I’ve finally settled upon a small set that do what I need. I use them with <a href="http://www.google.co.uk/chrome">Chrome</a> at work and show / hide the bookmark bar using ctrl+b in order to access them.</p>
<p>If you want to use these, just drag them onto your bookmarks toolbar…</p>
<p><a href="//delicious.com/save?url='+encodeURIComponent(window.location.href)+'&#38;title='+encodeURIComponent(document.title)+'&#38;v=5&#38;jump=yes'})()">Delicious</a> – Adds the currently open page to your delicious account. I use this for all my bookmarking.</p>
<p><a href="//www.twitlet.com/updates/?a=ZWFybHRlZGx5OmFscGhhMzU3&#38;t='+encodeURIComponent(p)}}else{window.location='http://www.twitlet.com'}})());">Twitlet</a> – Brings up a modal dialog to do a quick tweet. Use #link to embed a small URL of the page that is open.</p>
<p><a href="//is.gd/create.php?longurl='+encodeURIComponent(location.href))">is.gd</a> – URL shortener and also tracks click-throughs.</p>
<p><a href="//lab.arc90.com/experiments/readability/css/readability-print.css';_readability_print_css.media='print';_readability_print_css.type='text/css';document.getElementsByTagName('head')[0].appendChild(_readability_print_css);})();">Readability</a> – Wonderful link that cuts out all the crap from a web page and makes it readable using your full browser page. I use this more than anything else.</p>
<p><a href="//google.com/reader/preview/*/feed/'+h;f=true;break;}}if(!f)alert('Oops.%20Can\'t%20find%20a%20feed.');">Subscribe</a> – Hunts for RSS feeds and prompts you to add them to Google Reader.</p>
<div class="wlWriterHeaderFooter" style="text-align:right;margin:0;padding:4px 0;"><a href="http://digg.com/submit?url=http%3a%2f%2fearltedly.wordpress.com%2f2009%2f08%2f25%2fsome-useful-bookmarklets%2f&#38;title=Some+Useful+Bookmarklets%e2%80%a6"><img style="border:0;" title="Digg This" src="http://digg.com/img/badges/100x20-digg-button.png" border="0" alt="Digg This" width="100" height="20" /></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Let bookmarklets work for you]]></title>
<link>http://blog.techiebytes.com/2009/08/07/let-bookmarklets-work-for-you/</link>
<pubDate>Fri, 07 Aug 2009 17:36:46 +0000</pubDate>
<dc:creator>Jacob Prystowsky</dc:creator>
<guid>http://blog.techiebytes.com/2009/08/07/let-bookmarklets-work-for-you/</guid>
<description><![CDATA[Everybody has heard of web browser bookmarks (aka &#8220;favorites&#8221;), links to web pages store]]></description>
<content:encoded><![CDATA[Everybody has heard of web browser bookmarks (aka &#8220;favorites&#8221;), links to web pages store]]></content:encoded>
</item>
<item>
<title><![CDATA[Los bookmarklets más interesantes]]></title>
<link>http://noctuido.wordpress.com/2009/08/04/los-bookmarklets-mas-interesantes/</link>
<pubDate>Tue, 04 Aug 2009 11:26:56 +0000</pubDate>
<dc:creator>noctuido</dc:creator>
<guid>http://noctuido.wordpress.com/2009/08/04/los-bookmarklets-mas-interesantes/</guid>
<description><![CDATA[Ya hice un artículo hablando del aspecto básico de los bookmarklets y cómo añadirlos. Como la cantid]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ya hice un <a href="http://noctuido.wordpress.com/2009/01/19/bookmarklets-en-firefox/">artículo hablando del aspecto básico de los bookmarklets y cómo añadirlos</a>. Como la cantidad de bookmarklets es enorme, he decidido exponer los que para mis usos y costumbres son los más útiles.</p>
<p>Los bookmarklets se añaden como marcadores, pero en vez de poner la URL, ponemos el código javascript con el que se generará una determinada función en el navegador.</p>
<p>Añadirlos es sencillo. Clic derecho sobre la barra de marcadores&#8211;&#62; <strong>Nuevo Marcador&#8230;</strong>/<strong>Add page&#8230; </strong>en <strong>nombre</strong>/<strong>name</strong> ponemos la denominación y en dirección/URL pegamos la línea de código. Luego si queremos desde Firefox en el menú Marcadores&#8211;&#62; Administrar marcadores, o desde Chromium en el menú Herramientas&#8211;&#62; Bookmark Manager podemos cambiarlos de sitio, simplemente arrastrándolos con el puntero del ratón.</p>
<p><strong>Whois</strong>. Para saber los datos de una página (dominio, titular, domicilio social etc.):</p>
<pre>javascript:location.href='http://whois.domaintools.com/'+encodeURIComponent(location.hostname)</pre>
<p><!--more--></p>
<p><strong>Abrir enlaces</strong>.</p>
<pre>javascript:(function(){function%20I(u){var%20t=u.split('.'),e=t[t.length-1].toLowerCase();return%20{gif:1,jpg:1,jpeg:1,png:1,mng:1}[e]}function%20hE(s){return%20s.replace(/&#38;/g,'&#38;amp;').replace(/&#62;/g,'&#38;gt;').replace(/&#60;/g,'&#38;lt;').replace(/"/g,'&#38;quot;');}var%20q,h,i,z=open().document;z.write('&#60;p&#62;Images%20linked%20to%20by%20'+hE(location.href)+':&#60;/p&#62;&#60;hr&#62;');for(i=0;q=document.links[i];++i){h=q.href;if(h&#38;&#38;I(h))z.write('&#60;p&#62;'+q.innerHTML+'%20('+hE(h)+')&#60;br&#62;&#60;img%20src="'+hE(h)+'"&#62;');}z.close();})()</pre>
<p><strong>Translate</strong>. Traduce la página desde otro idioma al español, usando para ello el motor de Google Translate. Por defecto trae la opción para traducir siempre al español, pero se nos abrirá una ventana previamente para confirmar que se traducirá al español  &#8220;es&#8221;.</p>
<pre>javascript:A14nH=location.href;%20L3f7=prompt('Choose%20destination%20language%20(2%20chars%20abbreviation):%20','es');%20if(L3f7.length==2)%20{location='http://translate.google.com/translate?u='%20+%20encodeURIComponent(A14nH)+'&#38;sl=auto&#38;tl='+L3f7;}else{alert%20('Invalid%20language%20abbreviation.')}</pre>
<p><strong>Translate </strong>(sin preguntar a qué idioma traducir) Traduce directamente al español.</p>
<pre>javascript:void(location.href='http://translate.google.com/translate?hl=es&#38;u='+location.href)</pre>
<p><strong>Cache</strong>. Permite ver el cache que tiene google indexado en la última visita que realizó a esa web.</p>
<pre>javascript:void((function(){var%20a=location.href.replace(/^http%5C:%5C/%5C/(.*)$/,"$1");location.href="http://www.google.com/search?q=cache:"+escape(a);})())</pre>
<p><strong>Multivalidator</strong>. Sirve para validar las páginas y ver si cumplen las especificaciones de la W3C.</p>
<pre>javascript:if%20(0)%20void('Multivalidator%20script%20(c)2002%20Tantek%20Celik%20-%20last%20modified%202002.03.15');var%20p27=String.fromCharCode(37)+'27',d=document.location,ft='%3Cframe%20',fs=ft+'src=',fe='%5C'%20scrolling=%5C'auto%5C'%3E',fc=ft+'style=%5C'border:2px%20solid%20#ff0%5C'%20src=%5C'http://',fm='%3C/frameset%3E';var%20h=fs+'%5C'javascript:document.write('+p27+'%3C!DOCTYPE%20HTML%20PUBLIC%20%22-//W3C//DTD%20HTML%204.0//EN%22%3E%3Cbody%20style%3D%22margin:0;padding:2px%206px%22%3E';var%20h1='%3Ch1%20style%3D%22display:inline;font-size:18px;margin:0;%22%3E';var%20e='%3E%3C/body%3E'+p27+')%5C'%20scrolling=%5C'no%5C'%20noresize%3E';var%20q=String.fromCharCode(34);var%20r='%20results',v='%20validator'+r,w='validator.w3.org/check';var%20ds='%3C!DOCTYPE%20HTML%20PUBLIC%20'+q+'-//W3C//DTD%20HTML%204.0%20Frameset//EN'+q+'%3E%3Chtml%3E%3Chead%3E%3Ctitle%3EMultivalidator%3C/title%3E%3C/head%3E%3Cframeset%20cols=%5C'50%25,50%25%5C'%3E%3Cframeset%20rows=%5C'24,*%5C'%3E';ds+=h+'%3Cdiv%3E'+h1+'Page:%3C/h1%3E'+d+'%3C/div'+e;e='%3C/h1'+e;h+='%3Ch1%20style%3D%22display:inline;font-size:18px;margin:0;%22%3E';ds+=h+'%3Cscript%3Edocument.location=%22'+d+'%22%3C/script%3E'+e+fm+'%3Cframeset%20rows=%5C'24,*,24,*,24,*%5C'%3E';ds+=h+'HTML'+v+'%3Ca%20title%3D%22Refresh%20to%20remultivalidate.%20Click%20for%20more%20info%20on%20favelets.%20-Tantek%22%20href%3Dhttp://favelets.com/%20target%3Dhelp%20style%3D%22float:right;padding:1px;width:1em;font:10px%20Avant%20Garde,Chicago,Times,Arial,serif;text-decoration:none%22%3E@%3C/a%3E'+e;ds+=fc+w+'?uri='+d+fe;ds+=h+'CSS'+v+e;ds+=fc+'jigsaw.w3.org/css-validator/validator?uri='+d+fe;ds+=h+'HREF%20checker'+r+e;ds+=fc+w+'link?url='+d+fe;ds+=fm+fm+'%3C/html%3E';document.open();document.write(ds);document.close();void(20020315);</pre>
<p><strong>Wikipedia</strong>. Acceso a los resultados de la wikipedia en español. Si seleccionamos un texto nos enviará al resultado de la página en la wikipedia, o si pulsamos sobre el bookmarklet, se nos abrirá una ventana de consulta.</p>
<pre>javascript:(function(){q=document.getSelection();if(!q)q=prompt('De%20qu%C3%A9%20est%C3%A1s%20buscando%20informaci%C3%B3n?:');%20if(q)location.href='http://es.wikipedia.org/w/wiki.phtml?search='+escape(q);})()</pre>
<p><strong>Resize</strong>. Con este bookmarklet se nos redimensiona la ventana del navegador a los valores introducidos, en mi monitor de 17&#8243; equivale a la cuarta parte de la pantalla. Pero ya digo que los valores pueden ser cambiados a nuestro gusto.</p>
<pre>javascript:void(window.resizeTo(640,480))</pre>
<p><strong>no image</strong>. Elimina las imágenes de la página web.</p>
<pre>javascript:(function(){function%20toArray%20(c){var%20a,%20k;a=new%20Array;for%20(k=0;%20k%20&#60;%20c.length;%20++k)a[k]=c[k];return%20a;}var%20images,%20img,%20altText;images=toArray(document.images);for%20(var%20i=0;%20i%20&#60;%20images.length;%20++i){img=images[i];altText=document.createTextNode(img.alt);img.parentNode.replaceChild(altText,%20img)}})();</pre>
<p><strong>Habilitar selección de texto.</strong></p>
<pre>javascript:(function()%20{%20function%20R(a){ona%20=%20%22on%22+a;%20if(window.addEventListener)%20window.addEventListener(a,%20function%20(e)%20{%20for(var%20n=e.originalTarget;%20n;%20n=n.parentNode)%20n[ona]=null;%20},%20true);%20window[ona]=null;%20document[ona]=null;%20if(document.body)%20document.body[ona]=null;%20}%20R(%22click%22);%20R(%22mousedown%22);%20R(%22mouseup%22);%20R(%22selectstart%22);%20})()</pre>
<p><strong>Modificar página</strong>. Seleccionas textos, los borras, copias, cortas y pegas dentro de la propia página.</p>
<pre>javascript:document.body.contentEditable%20=%20'true';%20document.designMode='on';%20void%200</pre>
<p><strong>maps</strong>. Localiza en Google Maps la ciudad seleccionada como texto.</p>
<pre>javascript:(function(){var%20url='http://maps.google.com/maps?q='+window.getSelection();window.location.href=url;})();</pre>
<p><a href="http://noctuido.wordpress.com/2009/02/09/bookmarlets-para-enviar-correo/">emailthis y Gmail This</a>.</p>
<p><strong>Flash Resizer</strong>. Redimensiona los contenidos en flash de una página desde el puntero del ratón.</p>
<pre>javascript:document.getElementsByTagName('head')[0].appendChild(document.createElement('script')).setAttribute('src','http://gist.github.com/raw/89202/27baf59a408fac68e2ea82dbe162630618afbd93/FlashResize.js');</pre>
<p><strong>Archive</strong>. Busca entradas de páginas web en el portal de WayBack.</p>
<pre>javascript:void((function(){var%20a=location.href.%20replace(/^http%5C:%5C/%5C/(.*)$/,"$1");location.href="http://web.archive.org/web/*/"+escape(a);})())</pre>
<p><strong>Captura</strong>. Permite hacer capturas de páginas web, seleccionar campos así como tener disponible una paleta para editar la captura desde la web de aviary.</p>
<pre>javascript:window.location='http://aviary.com/'%20+%20location.href;</pre>
<p><strong>ViewPass</strong>. Elimina los asteriscos de las contraseñas por caracteres visibles.</p>
<pre>javascript:(function(){var%20s,F,j,f,i;%20s%20=%20"";%20F%20=%20document.forms;%20for(j=0;%20j&#60;F.length;%20++j)%20{%20f%20=%20F[j];%20for%20(i=0;%20i&#60;f.length;%20++i)%20{%20if%20(f[i].type.toLowerCase()%20==%20"password")%20s%20+=%20f[i].value%20+%20"\n";%20}%20}%20if%20(s)%20alert("Passwords%20in%20forms%20on%20this%20page:\n\n"%20+%20s);%20else%20alert("There%20are%20no%20passwords%20in%20forms%20on%20this%20page.");})();</pre>
<p><strong>Bugmenot</strong>. ¿Harto de registrarte en los portales que visitas esporádicamente? Bugmenot te dará un nombre de usuario y la contraseña correspondiente. Es un sitio comunitario y tampoco faltan los inconvenientes de los falsos registros.</p>
<pre>javascript:(function(){w=open(('http://www.bugmenot.com/view/'+encodeURIComponent(location.host)),'w','location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=400,modal=yes,dependent=yes');if(w){setTimeout('w.focus()',1000)}else{location='http://www.bugmenot.com/view/'+encodeURIComponent(location.host)}})();ç</pre>
<p><strong>video</strong>. Permite bajarse vídeos de Youtube una vez pongamos en marcha la reproducción y finalice la carga del mismo.</p>
<pre>javascript:var%20video_id=null;var%20video_hash=null;var%20video_player=document.getElementById('movie_player');if(video_player){var%20flash_variables=video_player.attributes.getNamedItem('flashvars');if(flash_variables){var%20flash_values=flash_variables.value;if(flash_values){var%20video_id_match=flash_values.match(/[^a-z]video_id=([^(\&#38;&#124;$)]*)/);if(video_id_match!=null)video_id=video_id_match[1];var%20video_hash_match=flash_values.match(/[^a-z]t=([^(\&#38;&#124;$)]*)/);if(video_hash_match!=null)video_hash=video_hash_match[1]}}}if(video_id==null&#124;&#124;video_hash==null){var%20args=null;try{args=yt.getConfig('CFG_SWF_ARGS')}catch(e){}if(args){video_id=args['video_id'];video_hash=args['t']}}if(video_id!=null&#38;&#38;video_hash!=null){var%20fmt='18';try{if(yt.getConfig('CFG_IS_HD_AVAILABLE'))fmt='22'}catch(e){}document.location.href='http://www.youtube.com/get_video?fmt='+fmt+'&#38;video_id='+video_id+'&#38;t='+video_hash}</pre>
<p><strong>Gtalk</strong>. Muestra una pequeña ventana para conectarse a los servicios de los protocolos de MSN, Gmail, Yahoo, Facebook, AIM, ICQ o MySpace a través del servidor de eBuddy.</p>
<pre>javascript:window.open('http://m.ebuddy.com/','chat','height=300,width=200')</pre>
<p>Si os es más cómodo importar estos bookmarklets a vuestro navegador, en vez de tener que ir añadiéndolos uno por uno, podéis descargar el <a href="http://www.mediafire.com/?sharekey=eeacb0e4ff368902d8f14848abf485dde04e75f6e8ebb871">archivo bookmarklets.html de esta dirección</a>. Una vez descargado el archivo, para añadirlos de esat forma a:</p>
<p><strong>Firefox</strong>/<strong>Flock</strong>.  Id al menú Marcadores&#8211;&#62; Organizar Marcadores&#8211;&#62; Importar y Respaldar&#8211;&#62; Desde un archivo HTML&#8230; seleccionáis el archivo que os habéis descargado.</p>
<p><strong>Google Chrome/Chromium</strong>. Herramientas (icono de la llave)&#8211;&#62; Bookmarks Manager-&#62; Tools&#8211;&#62; Import bookmarks&#8211;&#62; archivo descargado.</p>
<p><strong>Seamonkey</strong>. Menú Marcadores&#8211;&#62; Administrar marcadores&#8211;&#62; Herramientas&#8211;&#62; Importar&#8230;&#8211;&#62; Desde un archivo HTML&#8211;&#62; archivo descargado.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[YouTube: Descarga avanzada]]></title>
<link>http://solitariogeorge.wordpress.com/2009/08/02/youtube-descarga-avanzada/</link>
<pubDate>Sun, 02 Aug 2009 16:18:23 +0000</pubDate>
<dc:creator>solitariogeorge</dc:creator>
<guid>http://solitariogeorge.wordpress.com/2009/08/02/youtube-descarga-avanzada/</guid>
<description><![CDATA[Existen muchos servicios mediante los que poder descargar vídeos de YouTube y en distintas formas. C]]></description>
<content:encoded><![CDATA[Existen muchos servicios mediante los que poder descargar vídeos de YouTube y en distintas formas. C]]></content:encoded>
</item>
<item>
<title><![CDATA[Custom bookmarklets]]></title>
<link>http://earth2marsh.wordpress.com/2009/07/15/custom-bookmarklets/</link>
<pubDate>Wed, 15 Jul 2009 19:45:35 +0000</pubDate>
<dc:creator>earth2marsh</dc:creator>
<guid>http://earth2marsh.wordpress.com/2009/07/15/custom-bookmarklets/</guid>
<description><![CDATA[Harumph, WordPress.com stepped on my javascript—now you can find them here.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Harumph, WordPress.com stepped on my javascript—now you can <a href="http://earth2marsh.com/bookmarklets.html">find them here</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Save YouTube Videos and Website Screenshots]]></title>
<link>http://teachertechtips.wordpress.com/2009/07/02/bookmarklets/</link>
<pubDate>Thu, 02 Jul 2009 15:43:08 +0000</pubDate>
<dc:creator>Wun</dc:creator>
<guid>http://teachertechtips.wordpress.com/2009/07/02/bookmarklets/</guid>
<description><![CDATA[At our school, as it probably is at many schools, YouTube is blocked.  So what do you do if you want]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>At our school, as it probably is at many schools, YouTube is blocked.  So what do you do if you want to show a video that you found on YouTube in class?  Well, there are lots of options, but the most straighforward is to save that video to a file on your computer so you can watch it any time (or anywhere) you want.  Even more generally, what if you want to show a webpage that you can&#8217;t access at school, or embed a picture of that webpage into a Powerpoint?  Again, you can save a screenshot of that webpage to a file on your computer.  But how?</p>
<p>This is where my handy dandy <em>bookmarklets</em> come into play.  A bookmarklet is like a regular web bookmark, except that it has a little program written into it (in the web programming language called JavaScript) to do various tasks.  You don&#8217;t need to install anything.  Here are the two bookmarklets:</p>
<p><a href="http://googlesystem.blogspot.com/2008/04/download-youtube-videos-as-mp4-files.html">Download YouTube Video</a></p>
<p><a href="http://aviary.com/capture">Save Webpage Screenshot</a></p>
<p>Remember, these are not ordinary bookmarks, they are little programs written in a language that your web browser understands.  Here&#8217;s how to use them:</p>
<ol>
<li>Click the above links, and find the bookmarklets (update: sorry, WordPress prevents me from posting the bookmarklets directly)</li>
<li>Use your mouse to drag the bookmarklet links to your web browser&#8217;s bookmarks.</li>
<li>Go to the YouTube page that has the video you want.</li>
<li>Click on the &#8220;Download YouTube Video&#8221; bookmarklet in your browser&#8217;s bookmarks.</li>
<li>A small link is created in the user&#8217;s profile box called &#8220;Download as MP4&#8243;.</li>
<li>Click that link to save the video!</li>
</ol>
<p>The &#8220;Save Webpage Screenshot&#8221; is similar, except it takes you to another website (called Aviary) that captures a screenshot of the website you&#8217;re currently on and allows you to do some simple editing before you save it to your desktop computer.</p>
<p>By the way, the YouTube video that you save will be in a particular video format (called H.264 MP4).  This is pretty much the standard computer video format these days.  It&#8217;s compatible with iPods, PSPs, and more.  If you&#8217;re on a Mac, Quicktime should be able to play these video files.  If you&#8217;re on a PC, either install <a href="http://www.apple.com/quicktime/download/">Quicktime</a> or the awesome <a href="http://www.videolan.org/vlc/">VLC video player</a> in order to play them.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bookmarklets]]></title>
<link>http://areyoutechie.wordpress.com/2009/06/28/bookmarklets/</link>
<pubDate>Sun, 28 Jun 2009 09:40:17 +0000</pubDate>
<dc:creator>Jayarathina Madharasan</dc:creator>
<guid>http://areyoutechie.wordpress.com/2009/06/28/bookmarklets/</guid>
<description><![CDATA[Image via Wikipedia According to wikipedia a bookmarklet is an applet, a small computer application,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="zemanta-img" style="display:block;margin:1em;">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Web-browser-openclipart.svg"><img title="Category:Internet classic" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Web-browser-openclipart.svg/160px-Web-browser-openclipart.svg.png" alt="Category:Internet classic" width="160" height="160" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://commons.wikipedia.org/wiki/Image:Web-browser-openclipart.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p style="text-align:justify;">According to wikipedia a <a href="http://en.wikipedia.org/wiki/Bookmarklet" target="_blank">bookmarklet</a> is an applet, a small computer application, stored as the URL of a bookmark in a web browser or as a hyperlink on a web page. The term is a combination of the terms bookmark and applet. Bookmarklet utilities can be stored as bookmarks or hyperlinks. Because Internet Explorer uses the term <em>favorites</em> instead of <em>bookmarks</em>, bookmarklets are also less commonly called <strong>favelets</strong> by users.</p>
<p style="text-align:justify;">They are designed to add one-click functionality to a browser or web page. When clicked, a bookmarklet performs some function, one of a wide variety such as a search query or data extraction.</p>
<p style="text-align:justify;">Now that we are clear in what a bookmarklet is, You might tend to ask, is it similar to a add-in Firefox. The answer is yes, but with far more efficiency because:</p>
<p><!--more--></p>
<ol style="text-align:justify;">
<li>Add-ins are browser specific so if you decide to move from Firefox to Opera or Google Chrome, your add-ins will no longer work. On the other hand, a bookmarklet written for Firefox is very likely to work with Safari or IE.</li>
<li>When you upgrade to a newer version of your browser, some of your add-ins might not work,  this is a big problem considering browsers like Firefox release newer versions frequently.</li>
<li>If you have many add-ins, it can significantly slow down your browser while bookmarklets have no effect on memory usage as they are executed <em>dynamically &#8211; &#8220;on-demand&#8221;</em>.</li>
</ol>
<h4>How to install a bookmarklet?</h4>
<p>It is similar to that of creating a bookmark. Just click and drag. Watch this sample video by Google to know how:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/QrwevUN0KdQ&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/QrwevUN0KdQ&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<h4 style="text-align:justify;">Where can I find bookmarklets?</h4>
<p style="text-align:justify;">They are found all around the web. Simple search might yield good results. But <a href="http://www.marklets.com/bookmarklets/" target="_blank">Marklets</a> would be a nice place to start. It is an online directory of bookmarklets. You can also visit the following sites to know more details:</p>
<ul>
<li><a href="http://www.geektechnica.com/2009/06/5-useful-bookmarklets-to-make-your-life-easier/" target="_blank">http://www.geektechnica.com/2009/06/5-useful-bookmarklets-to-make-your-life-easier/</a></li>
<li><a href="http://www.bookmarklets.com/" target="_blank">http://www.bookmarklets.com/</a></li>
<li><a href="http://cybernetnews.com/cybernotes-the-best-bookmarklets-for-your-browser/" target="_blank">http://cybernetnews.com/cybernotes-the-best-bookmarklets-for-your-browser/</a></li>
</ul>
<p>Source: <a href="http://madharasan.wordpress.com/2009/06/28/bookmarklets/" target="_blank">Bookmarklets</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
