Search This Blog

Loading...
Showing posts with label Firefox. Show all posts
Showing posts with label Firefox. Show all posts

Friday, August 03, 2007

Web Developer Toolbar - View Color Information

While trying to figure out what color the "Loading" indicator in Gmail uses, I was fooling around with the Web Developer extension. So I found out that you can get all the colors used on a page by going to "Information" and click on "View Color Information". Click on it will open a new tab with all the colors used on the page you are looking at. Try it for yourself, it's pretty nice. The extension has about a million other options too.

Wednesday, January 10, 2007

cfQuickDocs Bookmarklet

javascript:
(function(){
  var url='http://www.cfquickdocs.com/';
  var params='?sourceid=cfQDSearch1.02&getDoc=';
  searchString=prompt('Enter ColdFusion tag or function:','');
  searchString=((searchString==null)?'':searchString.replace(/^(\s+)?(.*?)(\s+)?$/gi,'$2'));
  if(searchString != ''){
    if(location.href.indexOf(url)==-1){
      var win=window.open(url+params+escape(searchString));
    }
    else{
      location.href=url+params+escape(searchString);
    }
  }
}
)();
To use in Firefox: Drag Lookup on cfQuickDocs to your bookmarks toolbar To use in Internet Explorer: 1. Right click on Lookup on cfQuickDocs and click on 'Add to Favorites' 2. Click "Yes" on the security warning For ease of use you can put the new favorite under the "Links" folder Related to that, here is a nifty bookrmarklet builder http://subsimple.com/bookmarklets/jsbuilder.htm

Wednesday, December 27, 2006

Reclaim Your Memory from Firefox

1. Open Firefox and go to the Address Bar. Type in about:config and then press Enter 2. Right Click in the page and select New -> Boolean 3. In the box that pops up enter config.trim_on_minimize. Press Enter 4. Now select True and then press Enter 5. Restart Firefox Here is the full info: http://tech.cybernetnews.com/2006/03/26/this-may-help-your-firefox-memory-leak/