Recommended Add-on for Firefox

firefox add-onsIMHO, these are my recommended add-on for firefox
1. ColorfulTabs, Colors every tab in a different color and makes them easy to distinguish while beautifying the overall appearance of the interface
https://addons.mozilla.org/en-US/firefox/addon/1368

2. Flagfox, Displays a country flag depicting the location of the current website’s server and provides quick access to detailed location and webserver information
https://addons.mozilla.org/en-US/firefox/addon/5791

3. 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
https://addons.mozilla.org/en-US/firefox/addon/1865

4. Sothink Web Video Downloader, A simple, clean and easy-to-use FREE Firefox extension for video download and Flash download
https://addons.mozilla.org/en-US/firefox/addon/6541

5. Fasterfox Lite, Performance and network tweaks for Firefox, without the Prefetching.
https://addons.mozilla.org/en-US/firefox/addon/9148

If anyone have other opinions, please share….

Disable Automatic Hidden Shares (Windows NT/2000/XP)

Windows automatically create hidden shares to the local disk drives.
The shares are normally accessed via \\server\c$ and \\server\d$ depending on the drive letter.
If it disabled now, but when the computer restart, the sharing will automatic enabled.

To stop that open your registry using regedit,
1. Find the key
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LanmanServer\Parameters]

2. Create a new DWORD value “AutoShareServer” for NT server or “AutoShareWks” for NT Workstation

3. Then set the value to 0 = disable shares, if the value 1 = enable

4. Restart Windows and the automatic shares should not be created.

Open browser in a new window without menu bar

using window.open(url, target, ‘status, resizable, scrollbars, menubar, location, width=600, height=450’);

<head>
<script type=”text/javascript”>
function openPopup(url,target)
{
var win = window.open(url, target, ‘status, resizable, scrollbars, width=600, height=450’);
win.focus();
return false;
}
</script>
</head>
<body>

<a href=”pandazen.html” target=”NewWindow” onclick=”return openPopup(this.href, this.target)”>Click Here</a>