Showing posts with label addons. Show all posts
Showing posts with label addons. Show all posts

Wednesday, December 10, 2008

Teach Firefox to do your job

There are hundreds of things that Firefox can do. Extensions can enhance your Firefox, but browsing through hundreds of extensions can be time consuming and some of them are useless.

What are the most popular and most functional Firefox extenstions ?

  1. Block ads on webpages : Adblock Plus
  2. Use mouse gestures (powersurfing) : All-in-One Gestures
  3. Download manager in a statusbar : Download Statusbar
  4. Customize Google pages; remove ads : CustomizeGoogle
  5. Discover interesting sites being recommended by others : StumbleUpon
  6. Manage tabs (multiple links/duplicate/close etc ) : Tab Mix Plus
  7. Look up any word in dictionary : Answers
  8. Translate pages : Translator
  9. Download videos : Video DownloadHelper
  10. Block Flash ads or content : Flashblock
  11. Blog about the current page : Performancing for Firefox
  12. Clear the cache with one click on the toolbar : Clear Cache Button
  13. Surf the web without leaving a trace in my computer : Stealther
  14. View an Internet-Explorer-only webpage in Firefox : IE Tab
  15. See weather information : ForecastFox
  16. Download/upload files using ftp : FireFTP
  17. Speed up Firefox : Fasterfox
  18. Blog to Blogger service : BlogThis
  19. Synchronize Firefox bookmarks on different computers : Bookmarks Synchronizer
  20. Bypass mandatory registration of username and password for sites : BugMeNot
  21. Be notified when new mail arrives at Gmail account : Gmail Notifier
  22. See thumbnails of pages in session history : Reveal
  23. Store and sync bookmarks online : Chipmark
  24. Chat on the Internet Relay Chat (IRC) : ChatZilla
  25. Minimize Firefox to system tray : MinimizeToTray
  26. Use Gmail for space : Gmail Space
  27. Add/remove/change some features for sites : GreaseMonkey
  28. Block phishing sites : NetcraftToolbar
  29. Control iTunes using Firefox : FoxyTunes
  30. Use a sidebar to control multiple functions : All-in-One Sidebar
  31. Open PDF files in a new tab : PDF Download
  32. Save all the images/media on a page : Magpie
  33. Zoom in/out on an image : Image Zoom
  34. Search the bookmarks : Locate in Bookmark Folders
  35. Manage user styles for sites : Stylish
  36. Edit bookmarks easily : Flat Bookmark Editing
  37. Download/open all/selected links on a page : Linky
  38. Add a powerful multi-functional preference bar : PrefBar
  39. Add more search engines to Firefox search box : Mycroft
  40. Create a tiny url : TinyUrl Creator
  41. Track time spent browsing / on a project : TimeTracker
  42. Add RSS feeds to web-based/desktop readers or reader extensions : LiveLines
  43. Search up to 25 custom chosen sites : Roll your Own Search for Firefox
  44. See Alexa information, search engine backlinks for a page : SearchStatus
  45. Fill web forms with name/address/email etc : Autofill
  46. See all tabs in one window : Viamatic foXpose
  47. Automatically copy the selected text to clipboard : AutoCopy
  48. Change user agent for certain sites : User Agent Switcher
  49. Find the meaning of selected word in a dictionary : DictionarySearch
  50. Create new different passwords for different sites : PasswordMaker

Wednesday, November 19, 2008

Best developer addons for IE and Firefox

There are many useful Web development tools that integrate in your browser. These in-browser tools are commonly known as add-ons or extensions. Though add-ons and extensions aren’t just for Web development, many of them out there are designed specifically for Web developers. In-browser tools vary greatly in the jobs they perform; for example, some of them help you diagnose issues with CSS, HTML and JavaScript, while others evaluate the accessibility of your website.

In this article, we explore some of the most popular and useful in-browser Web development tools. You’ll find tools for popular Web browsers like Firefox and Internet Explorer. Whether you need to debug and inspect your HTML, inspect HTTP headers, access FTP source files, evaluate accessibility or just figure out what color a Web page element is, you may find a variety of tools discussed here useful.

Firebug

Firebug - screen shot.

Firebug is an extension for the Mozilla Firefox browser that allows you to debug and inspect HTML, CSS, the Document Object Model (DOM) and JavaScript. Though it has many strong features, it’s most known for revolutionizing the way developers debug and profile JavaScript code.

For example, before Firebug, many developers would use the alert() function to see what a variable contains or to find what line the code breaks. With Firebug enabled, you’re told specifically what the error is and which line it comes from. Firebug is an excellent tool for AJAX application developers because it lets you explore and perform on-the-fly edits on the DOM to see what happens when you manipulate Web page elements after a user action.

Aside from its popular JavaScript and DOM functionalities, Firebug can also log network activity to allow you to see detailed results of HTTP connections, inspect and edit HTML on the fly and debug and visualize your CSS.

Further Reading

Web Developer

Web Developer - screen shot.

The Web Developer extension (for the Firefox, Flock and SeaMonkey Web browsers) is an add-on that adds a tool bar with a menu of options for debugging and inspecting Web pages. It has a ton of features, my favorite being the View CSS Information option (CSS >> View Style Information, or Control + Shift + Y on Windows) which makes a page element clickable and shows you CSS selectors that affect that particular page element. It’s helpful for exploring and understanding large CSS files and projects that you’re unfamiliar with (such as a new open-source content management system).

It has built-in options for syntax validation for popular Web services, such as W3C’s CSS Validator and HiSoftware’s Web Content Accessibility Report, for your convenience. It has many other useful features, such as disable options for CSS, JavaScript and images, to test for degradation and progressive enhancement; a Forms menu with options for working with Web forms; Display Div Order and Display Block Size options to help you visualize the layout; and so much more.

YSlow

YSlow - screen shot.

YSlow is a Firefox extension created by Yahoo! developers that integrates with Firebug (therefore you need to have Firebug enabled for it to work). YSlow analyzes a Web page for front-end performance and, in its simplest usage, gives you a letter grade (A being the best and F being the poorest) for each of the best practices for speeding up your website.

YSlow also allows you to inspect in detail things that are essential for a high-performance website. For example, the Stats view gives you the total size of a Web page and a summary of items that are loaded when the Web page is requested (i.e. style sheets, JavaScript files, Flash objects and images), so that you can hunt down the bottlenecks that cause a Web page to load slowly.

The Components view outlines every single component of a Web page in tabular format and allows you to inspect it to see attributes such as size, expiration date (for cached files), whether it uses server-side compression (Gzip) and response time (how long the component took to load).

Further Reading

Internet Explorer Web Developer Toolbar

Internet Explorer Web Developer Toolbar - screen shot.

If you need similar functionality to that of Firebug and Web Developer for Firefox, but want to debug, inspect and tune your Web pages and applications on the Internet Explorer browser, check out the Internet Explorer Web Developer Toolbar. The IE Web Developer Toolbar, when enabled, opens a toggle-able pane located at the bottom of the Web browser, giving you access to many helpful options for exploring Web page components.

For example, you can experiment to see how page elements work by editing the Web page’s DOM and HTML directly in the browser, allowing you to quickly change and edit DOM elements to see what happens when you perform certain actions or modify certain parts of the code. You can also debug, test and inspect JavaScript with the IE Web Developer Toolbar, giving you options for setting breakpoints, seeing the call stack and exploring variable attributes.

It has a ton of other helpful features, such as selectively disabling IE settings (to see how your Web pages degrade in IE); the ability to view the HTML and CSS source of any Web page with syntax-highlighting; and an in-browser ruler to help you measure things on a Web page.

Further Reading

Fiddler Web Debugger

Fiddler Web Debugger - screen shot.

Fiddler is an Internet Explorer extension that analyzes and profiles a Web page’s HTTP traffic. If you’ve ever wanted to know exactly what happens when a client requests a Web page, Fiddler is the tool that’ll help you do the job. The HTTP Statistics view exposes all components and files required to generate a particular page, giving you details such as the total number of HTTP requests, total page weight, HTTP response headers and cache expiration.

Fiddler permits you to set up breakpoints, allowing you to step through and edit HTTP traffic (to see how it would affect your Web page), a useful feature for analyzing AJAX-based interaction and potential security flaws in a Web application. Perhaps what makes Fiddler so powerful is its extensibility, allowing you to create your own scripts (or import other developers’ scripts) to perform certain tasks or make interface modifications to the extension itself.

Further Reading

DebugBar

DebugBar - screen shot.

DebugBar is a debugging in-browser extension for the Internet Explorer browser. It has many helpful features, such as the ability to send a Web page screenshot via email, a color picker, the ability to view both the original and interpreted code (i.e. if you use JavaScript to manipulate the styles of a DOM object, then you can see the interpreted HTML source code of that manipulation) and a Console API (after installing Companion.JS) to help you gain information through a command-line interface about particular components of a Web page.

DebugBar is free for personal and educational use, but you are required to buy a license if you use it for commercial purposes.

HttpWatch

HttpWatch - screen shot.

HttpWatch is another HTTP traffic viewer and debugger for Firefox and Internet Explorer that is similar to Fiddler. It has many unique features and a more intuitive, less intimidating interface than Fiddler. Some notable features are the ability to generate request-level time charts (useful for documentation and presentation purposes); decryption of HTTPS traffic to help you debug, inspect and tweak your secure SSL-based connections; and the ability to export captured data to XML and CSV formats for importing into spreadsheet applications such as Microsoft Excel or Google Spreadsheets.

HTTPWatch has a Basic edition, which is free, and a Professional edition, which has more options. Check out the comparison table between the two editions to see the exact differences.

Live HTTP Headers

LiveHTTPHeaders - screen shot,

Live HTTP Headers is a Firefox extension that allows you to inspect HTTP request and response headers. Exploring HTTP headers allows you to debug Web applications, glean some information about the website’s server and inspect cookies sent to the client requesting the page.

For example, the Server response header gives you a website’s HTTP server type (Apache, IIS, nginx, etc.), the HTTP server version and the operating system (though server administrators can remove or limit the information you see for security purposes).

Web Accessibility Toolbar

Web Accessibility Toolbar - screen shot.

The Web Accessibility Toolbar is a freeware extension for Internet Explorer and Opera that gives you a slew of options for quickly evaluating and analyzing your Web content’s accessibility. It has validation options for submitting your URL to content accessibility web services such as Juicy Studio tools, a grayscale converter to simulate the user experience of individuals with color-blindness and poor eyesight, and a search function for particular page structures (e.g. finding list objects and unordered lists).

Other useful tools released by Vision Australia are the Colour Contrast Analyser, which analyzes the contrast of foreground and background colors for readability, and the Complex Table Mark-Up (or Com Tab) Toolbar, which can help you understand (and construct) complex tables that are usable by non-traditional Web browsers (such as screen readers).

Further Reading

Fangs

Fangs - screen shot.

Fangs is an in-browser tool for Firefox that emulates what a screen reader “sees” when visiting a Web page. Its function is simple: to output a transcript of what a screen reader will read out to a user when a Web page is visited. It’s a helpful tool for quickly analyzing if you’ve structured your content effectively so that it’s understandable and usable by vision-impaired individuals, without forcing you to learn to use (and purchase) a screen-reader application such as JAWS or Windows Eyes.

Further Reading

Venkman JavaScript Debugger

Venkman JavaScript Debugger - screen shot

Venkman is the codename for Mozilla’s very own JavaScript debugging environment. It is available as an add-on that can be used to extend browsers such as Firefox, Netscape, and SeaMonkey. It is a robust environment for doing complex JavaScript debugging and troubleshooting. The Console view gives you a command-line interface for interacting with the debugger. It has an excellent Stack view feature that allows you to step through active functions when it reaches breakpoints.

Further Reading

ColorZilla

ColorZilla - screen shot.

ColorZilla is an incredibly simple — but very useful — extension for Firefox. If you’ve ever wanted to determine what colors are used on a Web page, ColorZilla is the tool for the job. It adds an eyedropper icon to the bottom-left corner of Firefox.

Clicking on the eyedropper icon makes objects on the Web page clickable, and upon clicking a particular section of a Web page, it outputs the hexadecimal, RGB and hue/saturation values of that area . Before ColorZilla, you might have pasted a screen capture of a Web page into a graphics editor like Photoshop and then used the eyedropper tool in the editor to sample colors. ColorZilla saves you time and streamlines color-sampling processes.

FireShot

FireShot - screen shot.

FireShot is an in-browser tool for Firefox and Internet Explorer that allows you to take screenshots and then annotate, edit, organize and export them. Screen-grabbing is a common activity for Web developers to document previews of Web application prototypes and share them with clients, and FireShot gives you a feature-packed in-browser option to manage and streamline your screenshot needs.

Web Inspector

Web Inspector - screen shot.

Web Inspector is part of the Webkit open-source browser engine project. It’s an ultra-sleek tool for inspecting the DOM hierarchy in a separate, compact HUD-style window. You can easily search the DOM, explore the DOM tree (hierarchy) and have a useful interface for isolating DOM sub-trees and nodes so that you can focus on particular sections of a Web page. The Web Inspector also provides you with a Style pane to explore CSS rules applied to particular page elements.

FireFTP

FireFTP - screen shot.

FireFTP is a free, cross-platform Firefox extension for FTP’ing files. It offers several advantages to stand-alone FTP applications, such as its operating system-independent requirements. What’s exceptional about FireFTP is that even though it is an in-browser (and free!) application, it has all the features you would expect from a standalone FTP application, such as support for secure (SSL, TLS, SFTP) protocols, a synchronization feature to sync up local and remote files, and directory comparison to help you see what files are missing or different between two directories and much more.

How to Discovery and Install the Firefox Add-ons that are good for you!

Today Mozilla released Fashion Your Firefox, a new Web application that enables Firefox users to customize their browser based on their interests and online activities. With Fashion Your Firefox, add-ons that fit people’s online lifestyles are organized in easy to discover ways and are available for installation in just a few easy clicks.

Fashion Your Firefox presents add-ons in activity-based categories that make them easy to find and install. Categories in Fashion Your Firefox include:
• Shutterbug: View and share pictures and videos online
• Rock Star: Listen to music while surfing, working, emailing or researching online
• News Junkie: Get the most up-to-date news and weather
• Shopaholic: Shop and take advantage of online deals
• Digital Pack Rat: Keep track of favorite sites, bookmarks and blogs
• Social Butterfly: Share, bookmark, and e-mail web pages via an array of social networking & bookmarking sites
• Finder and Seeker: Find and make information on the Web more relevant
• Decorator: Apply browser themes
• Executive Assistant: Organize online activities

Monday, November 10, 2008

Edit CSS Code Live In Internet Explorer And Firefox Simultaneously

CSSVista is a free Windows application for web developers which lets you edit your CSS code live in both Internet Explorer and Firefox simultaneously. A very useful application for all developers out there who encounter so many browser compatibility errors.

cssvista

Download CSSVista (v0.15, Windows XP/Vista only, 8.9mb. Uninstaller included.)

Thursday, November 6, 2008

14 Extremely Useful Firefox Addons

My affinity for Firefox comes as much from the fantastic community of addon developers as it does from the program itself. Now, I'm sure you will have heard of some of these before: good Firefox addons tend to spread like wildfire. I hope I've managed to include some that you might have missed.

I've ranked just over a dozen addons that I find to be particularly useful - even to more casual Firefox users.

1. Cybersearch - Customizable Google searches in my Awesome Bar? Yes, please! It also supports keywords so you can enter things like "ds firefox addons" and limit your search to a specific web site (like Downloadsquad, for example). Enter a comma separated list of URLs to search a group of sites.

2. LastPass - I used to use KeePass, but I just like LastPass better. It did a great job of importing (and then removing) my Firefox stored passwords, and its secure password creation tool makes using different passwords on new sites a snap. The web interface is a great way to manage my logins and groups.

3. FEBE - As with anything else on your computer, it's never a bad idea to back up your Firefox install. FEBE will back up everything - extensions, themes, bookmarks - or just what you choose, and you can set up an automated schedule. It's also got integrated Box.net support, which is actually a fairly nice way to roll-you-rown manual Firefox syncing.
4. AdBlock Plus. I don't really use AdBlock because I hate advertisements, but because I don't like waiting for web pages to load. Flash ads and multiple banners really gum up the works, so I depend on AdBlock to keep things running smoothly. It's also a decent way to cut back on your bandwidth usage.

5. DownThemAll - When a friend first showed me DTA a few years ago, I couldn't believe I was still just using FF2's built-in manager. DTA rocks, and would definitely make my Top 5. It's simply one of the best download managers out there.

6. OpenItOnline - I don't do enough work with Office-type documents anymore to warrant installing a suite on my laptop. OpenItOnline lets me send DOC, XLS, and all the other supported file types to ZohoViewer for perusal instead of downloading them. It supports all Zoho and Google Docs apps to open files.

7. Deng Google Bookmarks - I'm not sold on Weave yet, so for now I let Google store my bookmarks. I switched to the Deng addon after using GMarks for the longest time - because I got tired of the giant "bookmark" button on my toolbar. Deng displays only a small star icon, and its management interface is superior.

8. Screengrab! - To quickly capture an entire web page, Screengrab is a great tool. It can save or copy an entire page, the visible portion, or a rectangular selection. If I don't actually need to print a page, Screengrab is an easy, environmentally friendly way for me to keep a copy of it.

9. HP Smart Web Printing - When I do need to print, HP's addon gives me the option to combine multiple web pages on one sheet of paper, eliminate elements I don't need to print, and it even allows saving to PDF. Always nice to see the big boys release something great for free.

10. Web Of Trust - WOT is a great way to keep yourself out of malware trouble. I think I'm a pretty responsible surfer, but I don't know the reputation of every site on the Internet. WOT gives you a heads up about the trustworthiness of a link (based on community input) before you visit it.

11. Shareaholic - Anyone that enjoys sharing links would do well to install this one: it supports a ton of services, including Digg, Delicious, Twitter, Pownce, Reddit, Facebook, MySpace, and Google. It's also a quick way to see how many Diggs or Delicious bookmarks a page has received. Bzzster support gives quick access to sharing items via email.

12. Pingfire - Another must for the social surfer. Ping.fm's multiple-site update service is rad, and Pingfire kicks it up a notch. No need to even visit Ping, just add the Pingfire icon to your toolbar and update your microblog and status sites with ultimate ease.

13. Tab Kit - It's got a whole slew of options for tab management: grouping, coloring, sorting, protection, mouse rocker and scroll wheel support, and many, many others. Visit the devloper's page for a full list of features.

14. Yet Another Smooth Scrolling - Firefox's default scrolling isn't quite as refined as I like it, so I use YASS to tweak things until they're just right. It supports up to three presets, which is nice for laptops. Keep one set for your touchpad and one for your mouse.

Thursday, October 30, 2008

IE Web Developer toolbar

Firefox has Firebug, Chrome has Chrome Inspector - everybody knows this. But do you know that there is also a similar tool for Internet Explorer? Even if Internet Explorer Developer toolbar is not as strong as its counterpart from Firefox still this addon is the one to use when you want to solve the most buggy browser. Among its main features:
  • Explore and modify the document object model (DOM) of a Web page.
  • Locate and select specific elements on a Web page through a variety of techniques.
  • Selectively disable Internet Explorer settings.
  • View HTML object class names, ID's, and details such as link paths, tab index values, and access keys.
  • Outline tables, table cells, images, or selected tags.
  • Validate HTML, CSS, WAI, and RSS web feed links.
  • Display image dimensions, file sizes, path information, and alternate (ALT) text.
  • Immediately resize the browser window to a new resolution.
  • Selectively clear the browser cache and saved cookies. Choose from all objects or those associated with a given domain.
  • Display a fully featured design ruler to help accurately align and measure objects on your pages.
  • Find the style rules used to set specific style values on an element.
  • View the formatted and syntax colored source of HTML and CSS.

The Developer Toolbar can be pinned to the Internet Explorer browser window or floated separately.

Wednesday, October 29, 2008

AdBlock for Chrome (and other browsers)

One of the bad sides of Chorme is that you can't block the ads. Flash advertisments that cover the whole page are a big pain for anyone. However there is a solution for this. It's called BFilter (click on the link for download) and it acts as a local proxy. Very configurable it can work for any brwser installed on your system. It can even import the AdBlock filter lists database.

BFilter is a filtering web proxy. It was originally intended for removing banner ads only, but since then its capabilities have been greatly extended. Unlike most of the similar tools, it doesn't rely on blacklists (although it does support them). The problem with blacklists is that advertisers are always one step ahead. You see an ad slip through, you update your blacklist, and in case it didn't help, you add a new entry yourself.


The result? A much nicer browsing.

Have fun !

P.S. It filters the Yahoo Mess adverts (no matter the version)

Enhance and improve Firefox’s usability with these essential addons.

Firefox is impressive but how can you make it more useable? Try some of these addons that help improve the browsers ability to handle the most demanding users.


1. Text Link


This addon does a real simple job. It makes any non-HTML formatted URI like say “oxyweb.co.uk” into a clickable link so that anything that looks like a link can be double-clicked to open it up on the same page, new tab or new window. It’s clever, it does it across many lines and when an accidental space has been put into the link. I used to use Linkification but this alternative covers more bases.

2. ScreenGrab! (& ScreenGrab! with Online Upload)

A saviour for bloggers, web designers and anyone who needs to prove a point. ScreenGrab! screenshots whole pages aswell as selections and the visible portion. It also has a “Copy” only option so rather than save a screenshot, it copies to the clipboard which makes it great for pasting into other apps like Photoshop (for doing mock ups).

The even more useful ScreenGrab! with Online Upload, an experimental addon created by imagebam.com which will take your screenshot and upload it to it’s free image hosting website. Cool enhancement.

3. Add Bookmark Here ²

Although I love the idea of pressing a little star on the Awesome bar to bookmark a URL, but i’m not a huge fan of Firefoxs bookmarks implementation. I tend to stay more organised with the use of this addon which puts a “Add Bookmark Here” option in every folder so you can bookmark quickly and stay organised.


4. Stealther

We won’t go into reasons but sometimes you do wish that there was no history of you visiting to certain websites. We’ll just say you have to. Press the Stealthier button and from then on anything you do will not be logged so no URLs in the address bar, no cache, no cookies, nothing. I

This is the best implementation of a privacy browsing mode - better than Google Chromes implementation because it’s just a button click away as opposed to a new window appearing. Alternatively try Distrust.



5. Foxmarks Bookmark and Password Synchronize


If you use more than one computer with Firefox you’ll love this tool, heck if you use Firefox you’ll love this addon. It makes a secure online backup of your bookmarks and synchronizes them across many computers. Since version 2.5 it can optionally synchronise your Firefox passwords too. - securely of course (You’ve probably heard of this addon).


6. Shareoholic


If you’re a fan of user submitted content sites like Digg and Reddit or some of the lesser known ones like Ma.gnolia or Simpy then you’ll love Shareholic. It’s a button and context menu submission tool that can submit to a plethora of different sites with just a couple of clicks.



7. Video DownloadHelper

This really is the best addon for downloading videos it works with dozens and dozens of video websites and most importantly it does it seamlessly.

8. Morning Coffee


Perhaps everyday, like m,e you visit digg.com and every Monday and Friday you have a look at your Google Analytics account oh and every Wednesday you need a failblog pickup then this addon takes the incessant clicking out of the equation. Just select the day and it opens up the URLS for that day. I’m sure you can use this for much more productive uses but it suits me fine.

Alternatively Speed Dial and Fast Dial are both popular but no where near as good as Google Chrome’s implementaion which picks the websites automatically. Firefox camp is sussing things out.

9. PermaTab Mod (& PermaTab Beta)

This little addon makes a tab sticky so you can’t accidentally close it. I find this invaluable when watching videos online at BBC iPlayer or having music playing via last.fm. It’s an experimental addon so you have to log in or visit the Permatabs support page for the latest beta

I hope you like the list of firefox addons that I can’t do without. If there’s another addon which you can’t do with or have something to say, leave a comment below.

Sunday, October 19, 2008

Another top with 25 best and most useful addons for Firefox

Mozilla Firefox, undoubtedly the best browser is so famous for its Add-ons. Here is a list of 25 Best and Most useful Add-ons for Firefox 3. The add-ons are small applications for the browser that will enhance the browsing experience and will also perform many useful operations. There are many add-ons available for Firefox but I have handpicked best of the best and most Popular and Useful add-ons that you should have installed.

You can check the Tips and Tricks of Firefox to Make Firefox Faster. You can even Optimize Firefox for Best Performance. You can go to the particular add-ons page by clicking on the name of the add-on. The list of the 25 best add-ons will be as follows..

COMFORT

All-in-One Sidebar :

All-in-One Sidebar (AiOS) is an award-winning sidebar control, inspired by Opera’s. It lets you quickly switch between sidebar panels, view dialog windows such as downloads, extensions, and more in the sidebar, or view source or websites in the sidebar.

Down Them All :

The first and only download manager/accelerator built inside Firefox. It is all you can desire from a download manager: it features an advanced accelerator that increases speed up to 400% and it allows you to pause and resume downloads at any time.

Interclue :

Ever wanted to know what was behind the link before you clicked? Interclue tells you everything you need to know before you open yet another tab. Small icons appear on mouseover to warn you about dead links, Malware or Phishing Sites, etc, and for any valid links Interclue provides compact link previews, relevant extra information and useful next action buttons.

Cool Previews :

CoolPreviews (formerly known as Cooliris Previews) gives you the power to browse and share Web links and rich media faster. Just mouse over any link, and the preview window immediately appears to show you the content. To email it, just click.

IE Tab :

It is used for Embedding Internet Explorer in tabs of Mozilla/Firefox. This is a great tool for web developers, since you can easily see how your web page displayed in IE with just one click and then switch back to Firefox.

SECURITY

AdBlock Plus :

Ever been annoyed by all those ads and banners on the internet that often take longer to download than everything else on the page? Install Adblock Plus now and get rid of them. It will block most advertisements fully automatically.

FoxyProxy :

FoxyProxy is an advanced proxy management tool that completely replaces Firefox’s limited proxying capabilities. It offers more features than SwitchProxy, ProxyButton, QuickProxy, xyzproxy, ProxyTex, TorButton, etc.

No Script :

The best security you can get in a web browser! Allow active content to run only from sites you trust, and protect yourself against XSS attacks. It allows JavaScript, Java and other executable content to run only from trusted domains of your choice.

Secure Login :

Secure Login is a login extension for Mozilla Firefox integrated password manager. Its main feature is similar to Opera’s (the browser) Wand login.

MULTIMEDIA

Fireshot :

FireShot is a Firefox extension that creates screenshots of web pages. Unlike other extensions, this plugin provides a set of editing and annotation tools, which let users quickly modify captures and insert text and graphical annotations. Such functionality will be especially useful for web designers, testers and content reviewers.

FoxyTunes :

FoxyTunes lets you control almost any media player and find lyrics, covers, videos, bios and much more with a click right from your browser. It supports almost every music player like Winamp,itunes etc.

G Space :

This extension allows you to use your Gmail Space (4.1 GB and growing) for file storage. It acts as an online drive, so you can upload files from your hard drive and access them from every Internet capable system.

Cooliris :

Full-Screen, 3D — Cooliris (formerly known as PicLens) transforms your browser into a visually stunning experience for searching, viewing, and sharing online photos and videos. Its “3D Wall” lets you effortlessly search and zoom your way around thousands of images, videos, news feeds, sports feeds, and more.

Video Download Helper :

The easy way to download and convert Web videos from hundreds of YouTube-like sites. It is a tool for web content extraction. Its purpose is to capture video, audio and image files from many sites.

COMMUNITY

Blog RovR :

If you don’t have time to read ALL those Blogs! RovR does it for you. It fetches posts from your favorite blogs about anything you’re browsing, and shows you summaries you can open read posts without leaving the web page you were on. It also suggests popular items AND lets you Twitter about any site you’re on too.

Chat Zilla :

A clean, easy to use and highly extensible Internet Relay Chat (IRC) client. It provides all the usual IRC client features: multiple servers, a built-in list of standard networks, easy searching and sorting of available channels, logging, and DCC chat and file transfers, plus easy customization with JavaScript plug-ins and CSS styling.

Locator :

It is used to Locate highlighted address on Google map: simply highlight the address, right click with mouse, select ‘Locate on Google Map’ in popup menu and your place will be shown on Google map.

Reminder Fox :

ReminderFox displays and manages lists of date-based reminders and ToDo’s. It does not seek to be a full-fledged calendar. It makes sure you remember all of your important dates via easy-to-use lists, alerts, and alarm notifications.

SamePlace :

Extensible instant messaging client based on the XMPP (Jabber) protocol. Accesses Jabber, GTalk, Twitter, MSN, AIM (and more, via gateways). It REQUIRES the xmpp4moz extension (download it from http://addons.mozilla.org/firefox/3632/ )

PROFESSIONAL

FireBug :

Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.

FireFTP :

FireFTP is a free, secure, cross-platform FTP client for Mozilla Firefox which provides easy and intuitive access to FTP servers.It includes more advanced features such as: directory comparison, syncing directories while navigating, SFTP, SSL encryption, search/filtering, integrity checks, remote editing, drag & drop, file hashing, and much more!

Stylish :

Customize the look of the application and of websites with Stylish, a user styles manager. User styles empower your browsing experience by letting you fix ugly sites, customize the look of your browser or mail client, or just have fun.

SQLite Manager :

Manage any SQLite database on your computer. An intuitive hierarchical tree showing database objects. Helpful dialogs to manage tables, indexes, views and triggers. You can browse and search the tables, as well as add, edit and delete the records. Facility to execute any sql query.

Web Developer :

Adds a menu and a toolbar with various web developer tools. It is very much useful for the developers to access different tools they need.

Greasemonkey :

Allows you to customize the way a webpage displays using small bits of JavaScript. You can get hundreds of scripts, for a wide variety of popular sites, are already available at http://userscripts.org.

Along with these there are many such add-ons which will provide you with various functions to make your browsing experience interesting. Share your favourite Firefox add-ons here. Bookmark and share this post, if you like and Happy Browsing..!!

Wednesday, October 15, 2008

Groundbreaking Addons that Mozilla tests

Finding new and useful Firefox extensions is a passion of ours, but sometimes we run across extensions adorning the daunting "Experimental" moniker at the Firefox Add-ons web site. We try to avoid these extensions as much as possible because they haven't been vetted by the folks at Mozilla, but even more importantly, we hate requiring our readers to register and sign into a web site just to download an extension. Most of the extensions that have hit the Experimental phase are ready to go despite their name; they just need a little extra push to get over the approval process. We've covered three awesome experimental extensions once before, and now we're back with a look at three more experimental Firefox extensions we're excited about.

Note: As I mentioned above, Mozilla hasn't officially approved these extensions, so do proceed with caution.

UrlbarExt

UrlbarExt adds six small buttons to the Awesome Bar adding gobs of wildly useful functionality. From left to right, here's what they do:

  1. Copies the current URL to you clipboard.
  2. Creates a Tiny URL from the current URL, then pastes the results in the address bar. Works great in conjunction with the copy button after the Tiny URL is created!
  3. Runs a Google site-specific search using the site you're visiting as a starting point (e.g., site:lifehacker.com hackintosh). Right-click this button to enter your query.
  4. Moves up the URL path one level or directory at the time. So if you were visiting http://lifehacker.com/5058888/five-best-media-converters, clicking once would bring you tohttp://lifehacker.com/tag/. Double-clicking this button takes you straight to the root (e.g., http://lifehacker.com/).
  5. Click this icon to open a drop-down for quickly bookmarking andapplying tags to the current page.
  6. Want to do a little anonymous browsing? Click this button to surf anonymously or access filtered web sites automatically by redirecting your traffic through proxy servers. There's no set up—just click it and go. If you want to customize the proxy server, try the cached version of a page, or use the site's IP rather than the domain (which can get you around some blocking software), right-click this button for more options.

You Old Enough?

You Old Enough bypasses YouTube's age check verification, allowing you to watch any video on YouTube without logging in or registering for a YouTube account. Let's be honest: The whole age verification thing is kind of a joke to begin with, since all it requires is a user claiming to be old enough. On top of that, videos that require you to log in aren't always the kind of video you're excited to add to your account history. With the You Old Enough extension installed, a new pop-up window containing the video opens whenever you stumble onto a YouTube video that requires age verification, completely bypassing the login or registration requirement. Handy.

TV Manager

Like TV? The TV Manager extension lets you browse listings and set alarms for your favorite programs from the comfort of your browser. The extension supports most US channels and is completely customizable. If you set an alarm on a show, TV Manager displays a simple reminder when the show is about to start (perfect for ending your Wikipedia run before you miss your show).

Firefox 3.1 beta realse first comments

Mozilla has announced the availability of the first Firefox 3.1 beta release, an important development milestone for the popular open source web browser. Mozilla aims to make Firefox 3.1 a strong incremental improvement with user interface enhancements, new features, and increased support for emerging web standards. The new beta release includes a modest handful of noteworthy changes that improve the user experience.

Mozilla had originally planned to start code freeze for beta 1 in the middle of August, but decided to delay the beta release and do an additional alpha release instead.

The beta includes Mozilla's new TraceMonkey JavaScript engine, which uses tracing optimization to deliver a massive performance boost that makes it faster than Google Chrome's V8 engine. Although it still falls short of Apple's recent Squirrelfish Extreme project, the Mozilla developers say that TraceMonkey still leaves plenty of room for additional optimization.

Although TraceMonkey is finally included in beta 1, the new engine isn't actually enabled by default. It is still under heavy development and it reportedly exhibits some bugs that could impact JavaScript reliability. To configure TraceMonkey in beta 1, browse to "about:config" and then toggle the "javascript.options.jit.content" variable.

Another major feature that is included in this release is Mozilla's new implementation of the W3C Geolocation Specification. It allows web applications to obtain information about the user's geographical location through a simple JavaScript API. In beta 1, this functionality is built on top of the Loki web service, which is supplied by Skyhook and determines the user's position by comparing local WiFi access points with information in its global reference database. For privacy reasons, the browser will automatically prompt the user before supplying a web site with geolocation data.

Several web sites already have basic support for the feature, including Yahoo's Fire Eagle and the Pownce microblogging service. We tested it with Outside.in Radar, a new web service that displays news headlines and other information about things that are near the user's current location. Earlier this month, Mozilla Labs also released the Geolocation Specification implementation as a Firefox 3.0 extension called Geode so that users and developers can start testing the functionality and incorporating support for the APIs into their web applications without having to use Firefox 3.1 prerelease versions.

In addition to these new features, beta 1 also includes a lot of other improvements that we have looked at in previous alpha and nightly builds. Firefox 3.1 alpha 1, which was released in July, introduced new tab switching behavior and a new visual tab switcher with graphical thumbnails. The alpha 2 release, which was made available earlier this month, added support for the HTML 5 video element which makes it possible for the browser to natively display playable video and seamlessly intersperse it with HTML and SVG content.

Mozilla is actively working on many other features that are planned for Firefox 3.1, but haven't been fully implemented in this beta release. Future versions will include a new private browsing mode that is similar to the one in Google Chrome. Mozilla is working on some nice user interface improvements too, such as support for tag autocompletion in the bookmarking interface.

Firefox 3.1 is evolving swiftly and each new prerelease delivers impressive changes. Users can look forward to a great 3.1 release with lots of good improvements and great support for open web standards. The new beta release is available for download from Mozilla's web site and additional information can be found in the official release notes.

Tuesday, October 7, 2008

Firefox Addon that changes the look of Gmail

If you are bored from the skin of GMAIL and Want to change it, than you have to try the Firefox Addon Google Redesigned. Google Redesigned is a Mozilla Firefox extension designed by Globex Designs that aims to fully redesign the look and feel of popular Google services. This is achieved with Cascading StyleSheet (CSS) files which are loaded on the client’s browser.

Google Redesigned is built for Mozilla based browsers (Firefox, Flock, IceWeasel, and such). Users using other browsers will not be to install the extension. Firefox 3 and Flock 2 are highly recommended as certain styles will not work correctly on older versions of the Gecko engine. As well the Firefox 3 engine provides much faster performance for handling these styles.
Download FireFox Addon Gmail Redesigned

Thursday, September 18, 2008

FoxTab - show all open tabs in one window

Beacuse Chrome has this already something similar built-in some guys though of this and decided to build FoxTab.
FoxTab provides a new fascinating and elegant method for finding and selecting a tab in the browser. FoxTab is designed to be suitable for many types of users, those with only few tabs opened and those out there (like me) who usually have tons of opened tabs to select from.
The idea behind FoxTab is to provide new visual methods for quick tab switching.
  
   

Monday, September 15, 2008

Ubiquity Firefox Plug-In Simplifies Interactions with Web Pages

Mozilla Labs has rolled out an experimental Firefox plug-in that promises to streamline the way Web surfers manage the mountains of information online. Called Ubiquity, the proof-of-concept prototype is an experiment with two parts — it’s both an interface and a development platform, notes the plug-in’s developer, Aza Raskin.

“Ubiquity 0.1 focuses on the platform aspects while beginning to explore language-driven methods of controlling the browser,” Raskin said.

Instant Translations

The main goal of Ubiquity is to simplify the time-consuming interactions that Web surfers typically perform on the Internet today, Raskin said. “It’s even worse on mobile devices, where limited capability and fidelity makes this onerous or nearly impossible,” he added.

Browser users now must use cut and paste along with a separate Web site such as Babel Fish to translate foreign-language content on the Web. With Ubiquity, however, users simply highlight the text they wish to translate, then right-click to open a menu of commands that includes the “translate” option. The text is then automatically converted into English and inserted right onto the original Web page.

The same technique can be used to initiate a wide range of other commands, such as defining an unfamiliar word or technical term, access weather information, or even Twitter friends with the latest news. Moreover, Web developers eventually will be able to build customized Ubiquity commands to which online visitors can subscribe.

Language-Based Instructions

Ubiquity also features a separate command-line box that opens in the upper left-hand corner of any Web page whenever a user presses the Ctrl and spacebar keys simultaneously. The command line, Raskin said, empowers users to control browsers with language-based instructions.

“Let’s say you’re arranging to meet up with a friend at a restaurant and you want to include a map in the e-mail,” Rankin said. “Today, this involves the disjointed tasks of message composition on a Webmail service, mapping the address on a map site, searching for reviews on the restaurant on a search engine, and finally copying all links into the message being composed.”

The command-line box gives users a way to transform all that clicking, typing, searching, copying and pasting into very simple tasks. For example, users can type and then select the address they want, then type “map” in the command line, Raskin said.

“If you execute the command, you’ll be taken to the Google Maps page,” Raskin said. “Or you can click on the image in the preview to get a larger, interactive version. After scrolling and zooming this map to your liking, you can click the ‘insert map in page’ link to insert the map into your e-mail.”

Currently, Ubiquity only works with Google Gmail accounts. However, Raskin said there is no reason why the plug-in shouldn’t eventually work with all major Web-based e-mail providers, as well as standalone e-mail applications like Thunderbird.

Mozilla’s long-term goal for Ubiquity is to enable users to instruct the browser — whether by typing, speaking or otherwise using language — about what they want to do.

“There’s a long way to go with this interface, though,” Raskin noted. “It still needs thought and a lot of refinement.”

Friday, September 12, 2008

Greasemonkey for Chrome?

Greasemetal is a userscript runtime for Google Chrome. The runtime hosts userscripts (tiny javascript files that modify the webpages being displayed) to be executed on Google Chrome, similar to what Greasemonkey does for Mozilla Firefox, or Greasekit does for Safari.
Greasemetal is developed by Kazuho Oku as part of his research activity at Cybozu Labs, Inc., a public software compary in Japan. Greasemetal is licensed under GNU Public License version 2.

How does it Work?

Google Chrome does not provide any interface to develop browser addons. Greasemetal modifies the behaviour of Google Chrome using an inter-process communication channel called AutomationProxy, which is used for automatically testing the functions of the web browser.

Using Greasemetal

To start using Greasemetal, download and execute the installer.
After installation, launch Greasemetal from the start menu. Greasemetal will in turn start up Google Chrome, while hooking its behaviours to insert userscripts.
Once you have started running Greasemetal, add userscripts to the userjs directory under your My Documents folder (or Documents folder on Windows Visa). If you are unfamiliar with userscripts, a number of scripts are available from userscripts.org.

More Information

Source code of Greasemetal is available at http://kazuho.31tools.com/svn/chromemonkey/. For more information, please refer to the developer's weblog.

In the next release:
  • eliminate generation of unnecessary log files and error messages (as much as possible)
  • add management UI for userscripts
  • add some kind of error logging for debugging userscripts
Also there is a plan to add support for most GM_* functions, if not all of them (it might not be in the next release, though).



Greasemonkey for Safari?

Is this possible? One of the best addons from firefox to be available in safari as well? Yes, it's true. Check it out here.
Creammonkey adds Greasemonkey-like user scripting to Apple's Safari and is implemented as an InputManager bundle.
"GreaseKit is a SIMBL plugin, that adds user scripting to Safari, Mailplane, Diet Pibb.app and all WebKit applications. "

Where to get Safari addons

It's about time Safari users had a central location to find new and updated Safari extensions, right? Right. That's why Pimp My Safari may come in handy (assuming people use it) for savvy Safari users in the future.

Pimp My Safari is trying to be a central resource for Safari plugins and is carrying, so far, 76 plugins for all sorts of things in Safari ranging from AppleScripts to RSS to Web Development and more. There is also an entire section of the site devoted to Bookmarklets, which ranges from Blogging to iTunes to Searching to Web Development as well.

The site seems to have declared that Saft, PithHelmet, and SafariStand as the three essential plugins that you absolutely must install if you install no others. In the "About" section of the site, Pimp My Safari explains that the site was started as the Safari answer to all of the sites that catalog Firefox extensions. Firefox users just can't have all the fun.

How to Stumebleupon without firefox addons on Google chrome,Safari,Opera browser

Here is a quick wrap up on how to stumbleupon webpages on Google chrome,Opera and safari web browser which doesn’t support Mozilla firefox addon!

Stumbleupon Google chrome addon/bookmarklet

As we know Google chrome browser is not addon compatible and for this reason we will be using bookmarklets and other easy manual ways to stumble,review and thumbs up or thumbs down a website.

Using chrome addon type bookmarklet – Drag this Stumble it on your Chrome bookmark and whenever you want to review a website just click on Stumble it so that you can review the site without any stumbleupon toolbar.

Extra Source Google chrome bookmarklet addons

Stumbling webpages without Su toolbar

Stumbleupon type toolbar for Safari browser

safari_stumbleupon

Not exactly a toolbar but stumbi is a type of addon built for Safari web browser to stumble upon webpages,though the features on stumbi are not as powerful as firefox stumbleupon addon but still stumbi can perform tasks like reviewing website,stumbling,thumbs up,thumps down and has send to a friend option with couple of other easy stumbling features.Stumbi requires SIMBL, which is included in the download and installs automatically.

Download Stumbi for Safari (source)

Stumblupon website on Opera browser

opera_browser_stumbleupon

Another useful look-a-like stumbleupon toolbar type addon is Operastumbler for Opera web browser,this works just like stumbi but has some extra features which lets you surf different channels, videos, photos, and more based on there interests.Just login to Opera stumbler using your stumbleupon login details and download the toolbar.

Download Stumbleupon toolbar for Opera browser

Thursday, September 11, 2008

20 Firefox addons for Web Development

There are lots of free extensions and add-ons available on the internet for Firefox, but which are the best add-ons that can Really help you as a web developer or designer in terms of time and effort?

Many of our readers suggested some great add-ons in our previous post, Designer´s Toolbox : 15+ Time Saving Tools- What´s your Secret? . Today i would like to highlight your suggestions and other add-ons that will help make your web development process quicker and more productive. So here’s 20 extremely useful Firefox Add-ons that can help developers create websites more efficiently.

1-InspectorWidget

Firefox add ons


Adds toolbar button and context menus for invoking the DOM Inspector (DOMi) for either chrome or content elements.


2-Web Developer

Firefox add ons


A very useful add-on, adds a menu and a toolbar with various web developer tools.

3-IE View

Firefox add ons


Lets you load pages in IE with a single right-click, or mark certain sites to *always* load in IE.


4-TinyUrl Creator

Firefox add ons


Easy shrink any long URL or link in the page to something you can email or Twitter using the TinyUrl service with a single click in your browser.


5-EditCSS

Stylesheet modifier in the Sidebar.


6- View formatted source

Firefox add ons


Ever wanted to know the style of every element of the page without having to view the .css file, here is the best add-on to let you view the style on the fly. You can see exactly which CSS rules match for an element. The rules are displayed including file name and line number. The topmost element is that with the highest priority.


7- Firebug

Firefox add ons


One of the best add-ons. I can’t recommend this plugin enough!
You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page. You will even learn CSS if you use it.


8- Image Download

Suggested by Rachel from http://www.allgraphicdesign.com/

This ad-on download All the Picuture In the Page, helps speed up image downloads. Also you can filter images by width ,height, type.


9- JavaScript Debugger

Provides a powerful JavaScript debugging environment for Mozilla based browsers.


10- Greasemonkey

Firefox add ons


This is a must have extension! Your Internet experience totally changes after this. Allows you to customize the way a webpage displays using small bits of JavaScript. Hundreds of scripts, for a wide variety of popular sites, are already available at http://userscripts.org.


11- JSView

Firefox add ons


All browsers include a “View Source” option, but none of them offer the ability to view the source code of external files. You can use the JSView extension to solve the problem. If the website you are viewing contains any external js/css files, an icon will appear that says “SS”, “JS”, or both. Each individual file can then be viewed by clicking on the filename. The file will be opened in a new window.


12- Html Validator

Firefox add ons


HTML Validator is a Mozilla extension that adds HTML validation inside Firefox and Mozilla. The number of errors of a HTML page is seen on the form of an icon in the status bar when browsing.


13- ColorZilla

Firefox add ons


An Advanced Eyedropper, ColorPicker and Page Zoomer. Allows you to get a color reading from any point in your browser, quickly adjust this color and paste it into another program. Also you can Zoom the page you are viewing and measure distances between any two points on the page. The built-in palette browser allows choosing colors from pre-defined color sets and saving the most used colors in custom palettes.


14- LinkChecker

Firefox add ons


Check the validity of links on any webpage.


15- FireFTP

Firefox add ons


Along with transferring your files quickly and efficiently, FireFTP also includes more advanced features such as: directory comparison, syncing directories while navigating, SFTP, SSL encryption, search/filtering, integrity checks, remote editing, drag & drop, file hashing, and much more!


16- Codetch

Firefox add ons


Get the feel of Dreamweaver in a Firefox extension. Edit your documents right next to your web pages as you surf.


17- YSlow

Firefox add ons


Suggested by Jacob Gube of http://sixrevisions.com/

YSlow is the what missing in Firebug. Now you can Easily find out the slower Component on your page and Correcting it.It analyzes web pages and tells you why they’re slow based on Yahoo’s rules for high performance web sites.


18- FireShot

Firefox add ons


Adds the ability to take a screenshot of web page (entire of visible part), edit it, add annotations and upload to server, save (PNG, GIF, JPEG, BMP), print (NEW!) copy to clipboard, send to external editor or e-mail it.


19- Pixel Perfect

Firefox add ons


A Firefox/Firebug extension that allows web developers and designers to easily overlay a web composition over top of the developed HTML.

20- Snapper

Firefox add ons


Snapper allows users to designate an area of a web page for a focused snapshot, cutting out the additional work needed for cropping unecessary information.