Firefox

Firefox 2 Tabs Add-on FaviconizeTab

FaviconizeTabFaviconizeTab is one of the best Firefox tabs add-ons among Aging Tabs and Tab Mix Plus. It resizes the width of the specified tab smaller up to the size of favicon. You can setup how to resize the tab, for example with a double click, or you can add the URLs you want to resize automatically.

If you have some sites always on tabs, like Gmail and Google Calendar and so on, this add-on is really a tabs space saver. More add-on for Firefox.

Firefox 2 Tabs Add-on FaviconizeTab Read More »

PageAddict Firefox Add-on for Internet Addicted and Statisticians

PageAddict is a Firefox extension, wrote by two neuroscientists, that monitors your Internet browsing and displays a summary of the time you’ve spend time on each web site for the day and shows graph of your web surfing habits history. You can be surprised about results.

PageAddict add-on is actually Greasemonkey script and it stores all the data locally. Here is what site says about privacy:

Details of the web sites that you have visited are stored in your browser and are not sent to any external websites. PageAddict is designed such that external websites cannot access this information and does not use cookies.

If you want to focus your web browsing you can add categories for sites and restrict how much time you spend in each category in a day.

More Firefox add-ons.

PageAddict Firefox Add-on for Internet Addicted and Statisticians Read More »

Minimal Firefox 2 Add-ons

Last updated: November 24, 2006

Firefox 2 Add-onsUseful extensions for Firefox for web browsing and web development.

There are thousands of add-ons for Firefox. In this list I have concentrated on those extensions that minimize and cleans Firefox user interface and makes web browsing easier and more effective. Last part is for extensions for web developers.

Web Browsing

  • Aging Tabs: Firefox add-ons page :: homepage
    Makes unused tabs fade with age and highlights the selected tab. If you usually have many tabs open at the same time, this extension might be visually helpful.
  • All-in-One Sidebar: Firefox add-ons page :: homepage
    Sidebar control lets you quickly switch between sidebars, view dialog windows such as downloads, extensions, and more in the sidebar, or view source code or websites in the sidebar. This extensions cleans nicely the user interface by gathering all opening windows into sidebar.
  • BetterSearch: Firefox add-ons page :: homepage
    While waiting for Firefox 2 version look GooglePreview. Enhances Google, A9, MSN, Yahoo, Answers.com (web results), AllTheWeb, del.icio.us, Ask.com, Clusty.com, Vivismo.com, Dogpile and Simpy.com by adding preview thumbnails and Amazon product info as well as new special links to the search results.
    This extensions is great with search sites as well as with del.icio.us lists to help to memorise the tagged sources.
  • Blogger Web Comments: Firefox add-ons page :: homepage
    Waiting for Firefox 2 version. Post and read comments on any webpage. You can see on any web page list of blogs which have a links to the current page.
  • BugMeNot: Firefox add-ons page :: homepage
    Bypass compulsory web registration with the context menu via www.bugmenot.com.
  • del.icio.us: Firefox add-ons page :: homepage
    Keep, share and discover all your favorite thins. For del.icio.us users. There is a new extension by del.icio.us called del.icio.us Bookmarks. It integrates more tightly with Firefox’s bookmarking system, so it conflicts with other extensions like Google Browser Sync and Foxmarks. The new extension might be worth trying.
  • FaviconizeTab: Firefox add-ons page :: homepage Added 2006-11-24
    The width of the specified tab becomes small up to the size of favicon. This is a must tab space saver add-on!
  • FxIF: Firefox add-ons page :: homepage
    View EXIF data in image properties.
  • Google Notebook: Firefox add-ons page :: homepage
    Allows notetaking while browsing. Well, for Google Notebook users this is a must.
  • GooglePreview: Firefox add-ons page :: homepage
    Inserts web site thumbnail previews in Google and Yahoo search results. This extension feels faster than BetterSearch.
  • Greasemonkey: Firefox add-ons page :: homepage
    A user script manager.
  • IE View Lite: Firefox add-ons page :: homepage
    Cut down version of IE View (Firefox add-ons page). Open Internet Explorer view in a tab. IE View and IE Tab extensions does the same thing, but both of these extensions use C++ code to do their thing, which means they use DLLs, which means they’re larger than the JavaScript-based IE View Lite and more susceptible to changes not only in Firefox but in Windows itself.
  • IE View: Firefox add-ons page :: homepage
    Opens pages in IE via Firefox menus. There is also IE View Lite (Firefox add-ons page), which is, according to the author, a cut down version of IE View. Both of them allow the current page or a selected link to be opened in Internet Explorer. Third option is IE Tab (Firefox add-ons page), which works like IE View but opens IE pages in Firefox tab. IE Tab extension uses C++ code to do its thing, which means it uses DLLs, which means it’s larger than the JavaScript-based IE View and more susceptible to changes not only in Firefox but in Windows itself.
  • Menu Editor: Firefox add-ons page :: homepage
    Customize application menus. This is a nice way to hide unnecessary menu items.
  • Mouse Gestures: Firefox add-ons page :: homepage
    Allows you to execute common commands using mouse gestures.
  • New Tab Button on Tab Bar: Firefox add-ons page :: homepage
    Adds a new tab button to the tab bar. When you have only couple tabs, it is easy to open new tab by double-clicking empty area on tab bar. But when there is no empty space, New Tab Button on Tab Bar extension is handy.
    Now that Tab Mix Plus is Firefox 2 compatible and if you use it, it includes this extension’s functionality.
  • SearchStatus: Firefox add-ons page :: homepage
    Display the Google PageRank and Alexa ranking with search-related tools.
  • Stealther: Firefox add-ons page :: homepage
    Surf the web without leaving a trace in a Firefox.
  • Stop-or-Reload Button: Firefox add-ons page :: homepageTurns the stop and reload buttons into a single one. When you can stop, you have a Stop button, otherwise you have a Reload button. This is a small extension to minimise a little user interface.
  • Stylish: Firefox add-ons page :: homepage
    Customize the look of websites and of the user interface. This is a must extension if you want to tweak Firefox user interface. For example to show only those web site icons on tabs that have a favicon and fade the not selected tabs icons like in Flock web browser (I guess code needs some cleaning):
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    /* Fade just the icon */
    .tabbrowser-tabs tab:not([selected="true"]) .tab-icon {
      -moz-opacity: 0.25 !important;
      display: -moz-box !important;
    }
    .tabbrowser-tabs tab:not([selected="true"]) *|tab:not([image]) .tab-icon {
      display: none !important;
    }
    .tabbrowser-tabs tab:not([selected="true"]) .tab-text {
      margin-left: 2px !important;
    }
    .tabbrowser-tabs tab[selected="true"] .tab-icon {
      -moz-opacity: 1 !important;
      margin-top: 1px !important;
    }
    /* Alternatively, kill only default tabbrowser icons (no site icon) */
    .tabbrowser-tabs *|tab:not([image]) .tab-icon {
      display: none !important;
    }
    /* Show icons (no matter what) when hovering over the tab */
    .tabbrowser-tabs *|tab:hover .tab-icon {
      -moz-opacity: 1 !important;
    }
  • Tab Mix Plus: Firefox add-ons page :: homepage
    Tab browsing with an added boost. This is a must., but waiting for Firefox 2 version…
  • Tab Sidebar: Firefox add-ons page :: homepage
    Displays previews of your tabs in your sidebar. Occationally this might come handy.

Web Development

Minimal Firefox 2 Add-ons Read More »

Fullscreen Slideshow With Flickr AutoDownloadr

Flickr AutoDownloadrWhile Flickr is lackin the fullscreen slideshow, luckily there are other programs to do that.

Flickr’s own slideshow is fine, but it definately lacks the fullscreen option. It is quite a diffrence between 500 pix and fullscreen slideshow. After noticing that Safari is having a plug in for that (Windows version coming soon) and browsing through the Flickr Tools, there seems to be some web page services and programs to replace this lack. One of them is Flickr AutoDownloadr.

Being a Windows desktop program Flickr AutoDownloadr does a pretty good job as a online service’s “add on”. It downloads the selected fotos to your computer and and displays them as a windowed or fullscreen slideshow. You can select one users or everyones potos by dates, tags, favourites, set and groups and order them as you like. The best thing is that you can make a shortcut to open almost any open page on Flickr as a slideshow. You can also use the program to download photos to your computer without showing slideshow.

Downloading and installing the program is straitforward and the user interface looks clear. Running the program first time it asks if you want to associate the ‘flickrss’ protocol with this program. You’d better to answer yes in order to be able to use the clever option to open the slideshow from the Flickr web page. All you have to do is to bookmark the following link in your web browser: javascript:void(location.href=’flickrss:’+location.href).

Now when you navigate to a page on Flickr and then select this bookmark, those photos will be displayed in a fullscreen slideshow. Slideshow opened this way uses the program settings from last time. Flickr AutoDownloadr can be also used from the command line.

Being an excellent program, there where also some problems during the test run. Sometimes some couldn’t be seen in a slideshow and program only showed the error message: Failed to set image to… Actually selecting sets did this every time. There could also be a button to just save the settings without starting a slideshow.

But anyway, while Flickr is lacking the fullscreen slideshow, this program is an excellent replace for that. And here is the tip: Chage the photo quality setting to high, go to Flickr Last 7 Days Interesting page and start the fullscreen slideshow from the bookmark, sit back and enjoy the show…

Fullscreen Slideshow With Flickr AutoDownloadr Read More »

Scroll to Top