<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d6651501\x26blogName\x3dNotes+on+tech\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLACK\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://ypjain-notesontech.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://ypjain-notesontech.blogspot.com/\x26vt\x3d-1979808972264517134', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Notes on tech

Notes on technology, business, enterpreneurship, economy, markets along with interesting general tidbits.


Monkey tricks with Greasemonkey

5/11/2005 11:36:00 PM, posted by anand

I had heard about Greasemonkey but didnt realize its power until I came across Jon Udell's screencast describing how anyone could use a simple password generator for a single sign-on nirvana.

According the Greasemonkey's mozdev site:
Greasemonkey is a Firefox extension which lets you to add bits of DHTML ("user scripts") to any web page to change its behavior. In much the same way that user CSS lets you take control of a web page's style, user scripts let you easily control any aspect of a web page's design or interaction.
Dont let that simple description fool you. Greasemonkey is pretty powerful stuff. It lets you make local changes/remixes of stuff sent in by the server. Here are some example of Greasemonkey scripts:
  • A script that adds prices and links from other sites to the current book that you are browsing at Amazon.
  • A script that adds "Expanded search" to Expedia.
  • Dozens of other scripts for some of the most popular sites, allowing you to remix their content.
Greasemonkey by itself doesnt do anything except for managing user scripts. Its the user scripts (written by ... users) that have the power to change/remix content. There is even a Greasemonkey Password Generator script that creates a unique password for each site you sign-up for, without the need to remember that password. I've written about it on my simple security blog.

This brings up an interesting question for the server guys (like Amazon and Expedia in the above example) whose data the users are going to remix. Should they allow client side remixes/experimentation or lock things down (dont know how, but probably somehow).
« Home

» Post a Comment