The most useful bookmarklets:
- Wayback archive bookmarklet (http://www.archive.org/web/web.php):
javascript:location.href='http://web.archive.org/web/*/'+document.location.href;
- TinyURL bookmarklet (Source: http://tinyurl.com/#toolbar):
javascript:void(location.href='http://tinyurl.com/create.php?url='+location.href)
- All-In-One Video bookmarklet: http://1024k.de/bookmarklets/video-bookmarklets.html
- WordPress.com PressThis bookmarklet:
javascript: var d=document, w=window, e=w.getSelection, k=d.getSelection, x=d.selection, var s=(e?e():(k)?k():(x?x.createRange().text:0)), var f='https://eikonal.wordpress.com/wp-admin/press-this.php', var l=d.location, e=encodeURIComponent, u=f+'?u='+e(l.href)+'&t='+e(d.title)+'&s='+e(s)+'&v=4'; a=function(){ if (!w.open(u,'t','toolbar=0,resizable=1,scrollbars=1,status=1,width=720,height=570')) l.href=u; }; if (/Firefox/.test(navigator.userAgent)) setTimeout(a,0); else a(); void(0)
Articles
- “5 Useful Bookmarklets for Your Web Browser” by Mark O’Neill (MaekUseOf; 2007.10.19) – http://www.makeuseof.com/tag/5-useful-bookmarklets-for-your-web-browser/
- Gmail This! – http://contrapants.org/blog/2005/07/gmailthis.html
- “5 Useful Bookmarklets to Make Your Life Easier” – http://geektechnica.com/2009/06/5-useful-bookmarklets-to-make-your-life-easier/
- TBUZZ – http://tbuzz.arc90.com/
- All-In-One Video – http://1024k.de/bookmarklets/video-bookmarklets.html
- Readability – http://lab.arc90.com/experiments/readability/
- Gmail This – http://email.about.com/library/misc/blgmail_this_bookmarklet.htm
- Google Site Search – http://www.imilly.com/bm.htm
Library
- Encipher.It – AES Text encryptor for Google Mail or anything else – https://encipher.it/:
- Code:
javascript:( function(){ document.body.appendChild(document.createElement('script')).src='https://encipher.it/javascripts/inject.v2.js'; } )(); - “How To Encrypt Your Gmail & Facebook Messages” by Steve Campbell (MakeUseOf; 2011.09.13) – http://www.makeuseof.com/tag/encrypt-gmail-facebook-messages/
- Code:
- GmailThis! bookmarklet (2010.09.10):
javascript: popw=''; Q=''; x=document; y=window; if(x.selection)%20{Q=x.selection.createRange().text;} %20else%20if%20(y.getSelection)%20{Q=y.getSelection();} %20else%20if%20(x.getSelection)%20{Q=x.getSelection();} popw%20=%20y.open('https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=& su='%20+%20escape(document.title)%20+%20'&body='%20+%20escape(Q)%20+%20escape('\n')%20+%20escape(location.href)%20+%20'& zx=RANDOMCRAP& shva=1& disablechatbrowsercheck=1& 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); - GmailThis! bookmarklet (old):
javascript: popw=''; Q=''; x=document; y=window; if(x.selection)%20{Q=x.selection.createRange().text;} %20else%20if%20(y.getSelection)%20{Q=y.getSelection();} %20else%20if%20(x.getSelection)%20{Q=x.getSelection();} popw%20=%20y.open('https://mail.google.com/mail?view=cm&tf=0&to=& su='%20+%20escape(document.title)%20+%20'&body='%20+%20escape(Q)%20+%20escape('\n')%20+%20escape(location.href),'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);
|
|