<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Ampercent &#187; Firefox</title> <atom:link href="http://www.ampercent.com/tag/firefox/feed/" rel="self" type="application/rss+xml" /><link>http://www.ampercent.com</link> <description></description> <lastBuildDate>Thu, 02 Feb 2012 17:36:59 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Mozilla&#8217;s Browser ID Login System &#8211; One Username And Password is All You Have To Remember</title><link>http://www.ampercent.com/mozillas-browser-id-login/9628/</link> <comments>http://www.ampercent.com/mozillas-browser-id-login/9628/#comments</comments> <pubDate>Sat, 13 Aug 2011 18:52:20 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Blogging]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9628</guid> <description><![CDATA[<p>There are dozens of websites which you use on a daily basis. You have email accounts, social profiles, blogs, RSS reader, YouTube and so many different websites to use but the biggest problem with all these websites is that you have to remember a different username and password for each of them. Sure, there are [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/mozillas-browser-id-login/9628/">Mozilla&#8217;s Browser ID Login System &#8211; One Username And Password is All You Have To Remember</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>There are dozens of websites which you use on a daily basis.</p><p>You have email accounts, social profiles, blogs, RSS reader, YouTube and so many different websites to use but the biggest problem with all these websites is that you have to remember a different username and password for each of them.</p><p>Sure, there are different ways to save usernames and passwords directly in the browser or use password manager applications for easing your routine job of typing the same usernames and passwords over and over again. But thing is, you have to create accounts with all these sites and have a unique login information, created only for you.</p><p>Mozilla is trying to address this problem with their new approach &#8211; <a href="https://browserid.org">Browser ID</a>.</p><p>With Mozilla&#8217;s browser ID, you need not remember dozens of username and passwords for different sites. One browser ID authenticated email will take care of all site logins, if the host website support the browser ID login authentication system in the first place.</p><p><strong>The short answer:</strong> Firefox wants to provide a dedicated sign in option directly in the address bar which can be used to sign into websites in a single click. No more typing long usernames and diffcult passwords, the browser lets you remember just one username and password combination for all the sites you use.</p><h3>What Is Mozilla&#8217;s Browser ID - An Introduction</h3><p>Here is how it works.</p><p>You create an account with browserid.org and choose a username and password for your browser ID account. Then you install the experimental <a href="https://addons.mozilla.org/en-US/firefox/addon/browser-sign-in/">Browser ID sign in add-on for Firefox</a> and you are ready to take Mozilla&#8217;s newest authentication system for a spin.</p><p>The next time you visit a website that supports Mozilla&#8217;s Browser ID authentication system, you will see a login link at the left portion of Firefox address bar, as shown below</p><p><img class="aligncenter size-full wp-image-9629" title="" src="http://cdn.ampercent.com/wp/wp-content/uploads/mozilla-browser-id-signin.png" alt="Mozilla browser ID" width="417" height="168" /></p><p>Clicking the sign in button and Firefox will prompt you whether you want to sign in to this website with your Browser ID account. Click the &#8220;Sign In&#8221; button and it&#8217;s done.</p><p><img class="aligncenter size-full wp-image-9630" title="" src="http://cdn.ampercent.com/wp/wp-content/uploads/browser-id-sign-in-page.png" alt="Firefox Browser ID sign in page" width="534" height="304" /></p><p>You will be immediately logged into the site without having to type any site specific username or passwords. Your locally saved Browser ID username and password will take care of the login and authentication system, which is a godsend for people like me who have more than 6 dozen online accounts, each having a different password.</p><p>Here is a 2 minute video demonstration which shows how Firefox browser ID helps you quickly sign in to websites, without having to type in usernames and passwords at all:</p><p><a href="http://www.youtube.com/watch?v=UHWXoFD81Gs">www.youtube.com/watch?v=UHWXoFD81Gs</a></p><h3>How To Implement Mozilla&#8217;s Browser ID Sign In Process On Your Website</h3><p>The Mozilla team has put together a nice guide for implementing Browser ID login authentication on your website. Here is the short and concise version:</p><p>1. Add the following code before the &lt;/head&gt; tag of your site&#8217;s template. This is the JavaScript library which will process the login procedure, once users hit the &#8220;Sign in&#8221; button in Firefox address bar</p><p>&lt;script src=&#8221;https://browserid.org/include.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p><p>2. Use a simple IF else function to define successfull and failed actions, when users try to login to your website using the Browser ID login system</p><div class="code">navigator.id.getVerifiedEmail(function(assertion) {<br /> if (assertion) {<br /> // This code will be invoked once the user has successfully<br /> // selected an email address they control to sign in with.<br /> } else {<br /> // something went wrong! the user isn&#8217;t logged in.<br /> }<br /> });</div><p>3. You must verify the <em>assertion</em> is authentic, and extract the user&#8217;s email address from it. The easiest way to do these is to use the free verification service provided by BrowserID.</p><div class="code">$ curl -d &#8220;assertion=&lt;ASSERTION&gt;&amp;audience=mysite.com&#8221; &#8220;https://browserid.org/verify&#8221;<br /> {<br /> &#8220;status&#8221;: &#8220;okay&#8221;,<br /> &#8220;email&#8221;: &#8220;lloyd@mozilla.com&#8221;,<br /> &#8220;audience&#8221;: &#8220;mysite.com&#8221;,<br /> &#8220;valid-until&#8221;: 1308859352261,<br /> &#8220;issuer&#8221;: &#8220;browserid.org:443&#8243;<br /> }</div><p>Now you can go ahead and continue any post authentication steps you may want to. This is not mandatory and depends whether your websites really needs to verify the user&#8217;s email address completely (e.g shopping carts or ecommerce sites may want to implement this step).</p><h3>When And Why You Should Use Mozilla Browser ID Login Authentication System</h3><p>Without any doubt, the Internet is gearing towards speed.</p><p>People neither have time nor they have the energy to do recursive operations again and again, which is why there are millions of software applications being invented every year. Turns out, users need the answer as fast as possible and in least possible steps.</p><p>Implementing Mozilla&#8217;s browser ID login authentication system in your website might help you increase sales and conversions because users will have an easier way to login to your site without having to remember their account credentials. This will make your ecommerce site slightly more &#8220;sticky&#8221; as users would be able to quickly login and use your website within a few seconds.</p><p>Barring blogs that are geared towards content and publishing, this login system is ideally suited for online stores, ecommerce sites, sites that sell or endorse products. And the best thing is that you don&#8217;t have to maintain the software, manage any separate user database or take responsibilities for authentication.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/mozillas-browser-id-login/9628/">Mozilla&#8217;s Browser ID Login System &#8211; One Username And Password is All You Have To Remember</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Is Your Browser Opening An Unknown Page At System Startup? Here is The Fix</title><link>http://www.ampercent.com/browser-opening-unknown-page-at-startup/9627/</link> <comments>http://www.ampercent.com/browser-opening-unknown-page-at-startup/9627/#comments</comments> <pubDate>Sat, 13 Aug 2011 01:37:52 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Internet Explorer]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9627</guid> <description><![CDATA[<p>The other day I ran into a very strange problem. Whenever I restarted my computer, the web browser would open automatically and a particular group of websites would start loading on their own. Regardless of whether I used Internet Explorer, Google Chrome or Firefox, these pages would load and open multiple pop-up windows bombarded with [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/browser-opening-unknown-page-at-startup/9627/">Is Your Browser Opening An Unknown Page At System Startup? Here is The Fix</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>The other day I ran into a very strange problem.</p><p>Whenever I restarted my computer, the web browser would open automatically and a particular group of websites would start loading on their own. Regardless of whether I used Internet Explorer, Google Chrome or Firefox, these pages would load and open multiple pop-up windows bombarded with advertisements.</p><p>This is very distracting and after a couple of trial and errors, I found the exact reason why a particular webpage was opening when I booted my computer.</p><p>I am not a very big fan of transformation packs or Windows themes but some times, I do try them to give my desktop a different look. This refreshes the eye and creates a feel good factor. I Googled for a windows 7 theme and downloaded a couple of Windows 7 themes from that site.</p><p>When I installed one of the transformation packs, the software secretly changed my computer’s internal settings. First I thought this was a browser specific problem but after checking with multiple browsers, I was sure that this problem was not browser specific but something related to my operating system. Since, every other browser was opening an unknown page at startup, there must be something in my computer and not in Firefox or Google Chrome preferences.</p><p>If you ever come across a similar problem, here is how to fix it.</p><p>1. First uninstall third party transformation packs, Windows themes and unnecessary software which you installed recently and think might be a reason of this damage. This is important, you must get rid of the problem first &#8211; otherwise the next time the software is launched, it may override your customizations and might bring back the older problem.</p><p>2. Open your browser, click settings and check the URL of the homepage.</p><ul><li>In Google Chrome, click the wrench icon and select options. Check whether Google Chrome is configured to open multiple pages at startup and revert back to your preferred option. [<a href="http://cdn.ampercent.com/wp/wp-content/uploads/post/Does-Your-Brower-Loads-An-Unknown-Page-A_5A04/google-chrome-settings.png">Settings page example</a> ]</li><li>In Firefox, Click Tools and select options. Next, check whether Firefox has been configured to open multiple pages at startup or not. If yes, revert back to your preferred option and choose the homepage you want to open when Firefox starts up. [ <a href="http://cdn.ampercent.com/wp/wp-content/uploads/post/Does-Your-Brower-Loads-An-Unknown-Page-A_5A04/firefox-home-page-settings.png">Firefox options example</a>]</li><li>In Internet Explorer, click Tools and select “Internet Options”. Check the address of the homepage and if its not the homepage you want to load during startup, change it to a preferred one. [<a href="http://cdn.ampercent.com/wp/wp-content/uploads/post/Does-Your-Brower-Loads-An-Unknown-Page-A_5A04/internet-explorer-options.png">Internet Explorer example</a>]</li></ul><p>3. Your problem should be fixed but in my case it wasn’t. After choosing my preferred homepage and restarting the computer, the same spammy page was showing up on system startup.</p><p>To fix this, go to Windows control panel and click “Internet Options”. Under the “general” tab, you may find a whole bunch of unknown websites being added to the “Home page” text field. Click the “use blank” button and save your settings.</p><p><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="internet-explorer-general-settings" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Does-Your-Brower-Loads-An-Unknown-Page-A_5A04/internet-explorer-general-settings.png" alt="internet-explorer-general-settings" width="418" height="268" border="0" /></p><p>4. This worked but only partially, because after restarting my computer, I found that the browser was opening but it was showing a blank page. To prevent Firefox, Internet Explorer, Google Chrome or any other browser from launching at startup, here is one last thing you have to do.</p><p>5. Click Windows start menu and type <strong>msconfig</strong> in the search box. This will launch Windows system configuration window, here you can specify which programs should and which programs should not <a href="http://www.ampercent.com/remove-windows-startup-entries-autoruns/9040/">auto launch at system startup</a>. Switch to the “Startup” tab and remove the entry for browsers (if any). [<a href="http://cdn.ampercent.com/wp/wp-content/uploads/post/Does-Your-Brower-Loads-An-Unknown-Page-A_5A04/disable-program-autostart.png">see example</a>].</p><p>You will have to restart your computer for the changes to take effect</p><h3>What really happened?</h3><p>In my case, here is what happened.</p><p>As soon as I installed the transformation pack, the program added an entry to Windows startup utility such that my default browser should launch automatically at system startup. Next, the program secretly changed my Internet options settings and added a whole bunch of unknown web addresses as the home page. This setting would override the browser specific settings of other browsers, so whenever I was launching any browser installed on my system, the same ad laden page was showing up.</p><p><strong>Lesson learned:</strong> Never install programs, transformation packs and other stuff from third party sites, even if they look credible and trustworthy.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/browser-opening-unknown-page-at-startup/9627/">Is Your Browser Opening An Unknown Page At System Startup? Here is The Fix</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Change The Color Of Google&#8217;s Navigation Menu Bar From Black To White</title><link>http://www.ampercent.com/change-google-navigation-menu-bar-color-to-white/9429/</link> <comments>http://www.ampercent.com/change-google-navigation-menu-bar-color-to-white/9429/#comments</comments> <pubDate>Wed, 29 Jun 2011 10:20:15 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Greasemonkey Scripts]]></category> <category><![CDATA[Opera]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9429</guid> <description><![CDATA[<p>While surfing at Google.com, you might have noticed that Google has introduced a black navigation bar on top of every page at Google.com. Whether you are using Google reader, Google Buzz, Gmail or Google Translate, this black navigation bar stays and looks a little ugly to some people. We have previously discussed a Greasemonkey script [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/change-google-navigation-menu-bar-color-to-white/9429/">Change The Color Of Google&#8217;s Navigation Menu Bar From Black To White</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>While surfing at Google.com, you might have noticed that Google has introduced a black navigation bar on top of every page at Google.com. Whether you are using Google reader, Google Buzz, Gmail or Google Translate, this black navigation bar stays and looks a little ugly to some people.</p><p>We have previously discussed a <a href="http://userscripts.org/scripts/show/105723">Greasemonkey script</a> which lets you <a href="http://www.ampercent.com/remove-google-black-navigation-bar/9425/">completely remove Google’s black menu bar</a>. The script works in Firefox, Opera and Google Chrome and does a nice job in hiding the menu bar all together. You get the older clean Google interface but the disadvantage here is that all the links in the navigation menu bar are hidden and will be inaccessible.</p><p>Here is how Google.com will look like once you have installed the disable black menu bar Greasemonkey script:</p><p><img style="display: block; float: none; margin-left: auto; margin-right: auto;" title="Disable Google black menu bar" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/5dc15d72d553_616F/classic-google.png" alt="Disable Google black menu bar" /></p><p>So if you frequently click through the links on Google’s top menu bar, you won’t find the script very useful. It hides the top menu bar for good but you also need the links and don’t want to bookmark each of them manually, one at a time.</p><p>However, here is another Greasemonkey userscript which lets you change the color of Google’s top menu bar from Black to white. Named as <a href="http://userscripts.org/scripts/show/105735">Google light Menu bar</a>, the script reverts you back to the older white background with all links accessible and working as before. The script works out of the box and there is nothing to tweak or configure.</p><p>Here is how Google.com will look, once you have installed the second script which changes the menu bar color to White from Black:</p><p><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="White menu bar of Google.com" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Change-The-Color-Of-Googles-Navigation-M_D81B/google-top-menu-bar-white.png" border="0" alt="White menu bar of Google.com" width="550" height="300" /></p><p>Pretty neat and does exactly what it says. The previous script hides the navigation bar while this one modifies the style attribute of the menu bar HTML element, thus allowing you to use the links while change the menu bar color to White from Black.</p><p>Google Light Nav bar is a free download, works with Firefox, Opera and Google Chrome. Give this a try!</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/change-google-navigation-menu-bar-color-to-white/9429/">Change The Color Of Google&#8217;s Navigation Menu Bar From Black To White</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Remove The Ugly Black Navigation Menu Bar From Google.com Search Result Pages</title><link>http://www.ampercent.com/remove-google-black-navigation-bar/9425/</link> <comments>http://www.ampercent.com/remove-google-black-navigation-bar/9425/#comments</comments> <pubDate>Wed, 29 Jun 2011 01:58:31 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Greasemonkey Scripts]]></category> <category><![CDATA[Opera]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9425</guid> <description><![CDATA[<p>From the past couple of weeks, Google has been experimenting a major design overhaul of search result pages on Google.com. The design changes were randomly tested on different users and it appears that Google has finally implemented the newer design on Google.com. Here is how the new design of Google.com looks like: There is a [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/remove-google-black-navigation-bar/9425/">Remove The Ugly Black Navigation Menu Bar From Google.com Search Result Pages</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>From the past couple of weeks, Google has been experimenting a major design overhaul of search result pages on Google.com. The design changes were randomly tested on different users and it appears that Google has <a href="http://googleblog.blogspot.com/2011/06/evolving-google-design-and-experience.html">finally implemented</a> the newer design on Google.com.</p><p>Here is how the new design of Google.com looks like:</p><p><a href="http://cdn.ampercent.com/wp/wp-content/uploads/post/5dc15d72d553_616F/google-new-design-black-navigation-bar.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border-width: 0px;" title="google-new-design-black-navigation-bar" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/5dc15d72d553_616F/google-new-design-black-navigation-bar_thumb.png" alt="Google's new design black navigation bar" width="550" height="373" border="0" /></a></p><p>There is a new black navigation bar on Google.com and the size of Google logo has also been reduced in width and height. The black navigation menu bar on Google will appear across all Google products, whether you are using Gmail, Google Reader, Google Maps or Google Translate – <strong>this ugly menu bar is here to stay!</strong></p><p>However, if you don’t like the new menu bar of Google.com and want to hide or remove it, here is a Greasemonkey script which will come handy.</p><p><a href="http://userscripts.org/scripts/show/105723"><strong>Disable Google black Bar</strong></a> is a nifty little Greasemonkey script which will let you remove Google’s black menu bar entirely from search result pages and from all the sites where this menu bar appears. So if you hate this newer design of Google and want to see the previous clean layout of Google.com, install the userscript and completely hide Google’s navigation bar from the design view.</p><p>Here is how the Google homepage and search result pages look, once you have installed the userscript:</p><p><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Switch to classic Google - remove black menu bar" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/5dc15d72d553_616F/classic-google.png" alt="Switch to classic Google - remove black menu bar" width="550" height="362" border="0" /></p><p>Keith Dsouza, the <a href="http://techie-buzz.com/annoyances/remove-google-search-black-bar.html">developer of the userscript</a> says that he is working on improving the Userscript to change the black bar to an earlier version of Google.com.</p><p>Google says in a blog post that the new design is geared towards more focus and usability but I found the black menu bar on Google.com extremely distracting and decided to remove it completely. I hardly use the navigational links but since I perform a lot of search every single day, I don’t want to see a cluttered user interface.</p><p>Disable Google Black bar is a free download, works in Opera, Google Chrome and Firefox.</p><p><strong>Update: </strong> Those who want to retain Google&#8217;s top menu bar and only want to<a href="http://www.ampercent.com/change-google-navigation-menu-bar-color-to-white/9429/"> change the color from Black to white</a>, should instead install <a href="http://userscripts.org/scripts/show/105735">this userscript</a>. Thanks Martzuid for tipping us in the comments section.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/remove-google-black-navigation-bar/9425/">Remove The Ugly Black Navigation Menu Bar From Google.com Search Result Pages</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Qualys Browser Check Secures Your Browser by Suggesting Which Plugins Needs To Be Updated</title><link>http://www.ampercent.com/secure-browser-update-outdated-plugins-extensions/9407/</link> <comments>http://www.ampercent.com/secure-browser-update-outdated-plugins-extensions/9407/#comments</comments> <pubDate>Tue, 21 Jun 2011 00:21:00 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Browsers]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Internet Explorer]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9407</guid> <description><![CDATA[<p>A browser is often the center point of malicious activities and hack attempts. Many studies reveal that the security of a person’s email, social or other online accounts depend on how secure their browser is. There are a lot of third-party websites who try to take advantage of your browser’s old configuration and outdated plugins, [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/secure-browser-update-outdated-plugins-extensions/9407/">Qualys Browser Check Secures Your Browser by Suggesting Which Plugins Needs To Be Updated</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>A browser is often the center point of malicious activities and hack attempts.</p><p>Many studies reveal that the security of a person’s email, social or other online accounts depend on how secure their browser is. There are a lot of third-party websites who try to take advantage of your browser’s old configuration and outdated plugins, so you should be very careful and should regularly install the latest version of the browser you are using. If your web browser is not patched to it’s latest version and you are running an old version of a plugin, chances are that third-party malicious sites can use it to breach your system.</p><p>But how do you know when an update to your browser is available? How do you know whether you are running the latest version of Internet Explorer or have the most secure version for Adobe Flash? There are so many plugins and extensions already installed on your browser and it’s a bit difficult on the part of novice users to update all the plugins manually.</p><p>Thankfully, <a href="https://browsercheck.qualys.com/"><strong>Qualys browser check</strong></a> changes all that.</p><p>Qualys browser check is a free browser plugin which tells you whether you are running an outdated browser plugin or any software on your system needs an upgrade. The tool scans vulnerabilities and loopholes in your current browser configuration and tells you which plugins needs to be updated and which extensions have a newer version available.</p><p>Qualys browser check works on Windows, Linux and MAC computers and supports all the major browsers including Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera.</p><h3>Use Qualys Browser Check To Secure Your Browser</h3><p>Using the tool is fairly simple and takes only a few seconds. Go to the Qualys browser check homepage and install the plugin on your browser. Once the plugin is installed, hit the “Scan now” button and the plugin will scan your browser’s configuration and present a report.</p><p>I ran the tool on Internet Explorer 8 and here is the report I got:</p><p><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="secure-your-browser" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Secure-Your-browser_4A5F/secure-your-browser.jpg" border="0" alt="secure-your-browser" width="460" height="350" /></p><p>The plugin found the following security vulnerabilities on my system:</p><p>1. I am running an older version of Internet Explorer while Microsoft has already released a newer version which <a href="http://www.ampercent.com/internet-explorer-9-blocks-99-malware-most-secure-browser/7575/">blocks 99% of the malware from third-party sites</a>. To fix this, all I have to do is click the “Fix it” button and I am taken to the Microsoft downloads website, so that I can download the latest version of Internet Explorer and update my system.</p><p>2. My Adobe Flash player is outdated and it is in a highly insecure state. This needs to be fixed immediately so I clicked the “Fix it” button and installed the latest version of Adobe Flash, which is free of course.</p><p>Additionally, the tool also checks whether your browser plugins are outdated or not. Previously, we have discussed how to keep <a href="http://www.ampercent.com/firefox-plugins-update-improves-speed/8235/">Firefox</a> and <a href="http://www.ampercent.com/google-chrome-plugin-updater/8880/">Google Chrome plugins up to date</a> but with the help of this tool, there is no need to manually update any of your browser plugins.</p><p>Qualys browser check tool checks the following plugins:</p><p>Adobe Flash, Adobe Reader, Apple Quick time, Foxit reader, Microsoft Silverlight, Microsoft Windows media player, Real Player, Java runtime and VLC media player. A complete documentation is <a href="https://community.qualys.com/docs/DOC-1542#s2">available here</a></p><p>It is strongly advised to run this check once in two weeks, update all your browser plugins and completely secure your browser to be on the safe side. Remember that safe browsing also depends on your habits as well as on the tools you are using. Keep yourself away from malicious sites, bad software and install a good antivirus program on your computer.</p><p>Tip: <a href="http://www.ampercent.com/secure-gmail-account-hacking-phishing/6965/">Secure your Gmail account from phishing attempts</a></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/secure-browser-update-outdated-plugins-extensions/9407/">Qualys Browser Check Secures Your Browser by Suggesting Which Plugins Needs To Be Updated</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Firefox Nightly Build Adds Better Privacy Controls Using An About:Permissions Page</title><link>http://www.ampercent.com/firefox-about-permissions-page-control-user-privacy/9315/</link> <comments>http://www.ampercent.com/firefox-about-permissions-page-control-user-privacy/9315/#comments</comments> <pubDate>Fri, 27 May 2011 11:39:41 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9315</guid> <description><![CDATA[<p>When it comes to the privacy and security of your online profiles, email,  social accounts or your website &#8211; the first thing to take note is your browser. Since every other web activity is performed on the browser, it is really important to configure your browser for maximum security so that you don&#8217;t end up giving away [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/firefox-about-permissions-page-control-user-privacy/9315/">Firefox Nightly Build Adds Better Privacy Controls Using An About:Permissions Page</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>When it comes to the privacy and security of your online profiles, email,  social accounts or your website &#8211; the first thing to take note is your browser.</p><p>Since every other web activity is performed on the browser, it is really important to configure your browser for maximum security so that you don&#8217;t end up giving away your data to third party websites. The option&#8217;s panel of your browser may be configured to store your passwords, share your location, handle cookies and other privacy related features.</p><p>At the end of the day, most novice users are not well aware about how secure their browser is. They either don&#8217;t care whether a website is tracking their location, whether they have saved a whole bunch of passwords on their browser (which can be risky) or whether third party websites are accessing their <a href="http://www.ampercent.com/how-to-automatically-clear-firefox-cache-history-cookies-on-exit/6428/">browsing history or cached data</a> in the background.</p><p>Thankfully, the latest nightly build of Firefox has introduced a new tool which can be used to tweak the necessary permissions given to third party websites. Here is how the about:permissions page in Firefox looks like:</p><p><img class="aligncenter size-full wp-image-9316" title="About permissions page in Firefox" src="http://cdn.ampercent.com/wp/wp-content/uploads/about-permissions-page-firefox.png" alt="About permissions page in Firefox" width="590" height="334" />To open the about:permissions page in Firefox, you must install the latest nightly build from the FIrefox nightly website. Trying to access this page on your current Firefox installation e.g Firefox 4 might give a page not found error.</p><p>The about:permissions page, as the name suggests can be used to tweak privacy related features of all third party websites from a single page. Although the same preferences are available under Tools &gt; options, it seems that the Firefox team wants to provide a dedicated page to users so that they can control the default permissions for websites from a single page.</p><p>Here are a few things which can be done from Firefox&#8217;s about:permissions page:</p><p><strong>1. Choose the websites with whom you want to share your location: </strong>If you frequently use Google Maps, Foursquare and other location sharing apps, you might want to add these sites to Firefox&#8217;s about:permisions page and choose &#8220;Always share location with these sites&#8221;.</p><p>For a specific site which you don&#8217;t trust and don&#8217;t want to give them your current location data, it&#8217;s wise to choose &#8220;Always ask&#8221; or &#8220;Block&#8221;. Chossing &#8216;Always ask&#8221; will show a notification like &#8220;This site wants to know your location&#8221; when you open it on Firefx. I would advise choosing the &#8220;Always ask&#8217; option over &#8220;Block&#8221; so that you can decide to share your location data when you open or use a site, rather than choosing &#8220;Block&#8221; which will prevent sites from tracking your location.</p><p><strong>2. Allow Only Specific sites to Store passwords:</strong> Again I would advise not to store passwords on the browser and use a dedicated <a href="http://www.ampercent.com/free-portable-password-manager-windows/1309/">password manager application like Keepass</a>. But if you don&#8217;t want to use a password manager program and have the habit of saving passwords in Firefox, you can use the about:permissions page to define for which sites Firefox would store and manage passwords.</p><p><strong>Example</strong>: If you have 6 Gmail accounts and you want to store all the passwords only for Gmail and no other site, it&#8217;s a good idea to add mail.google.com to Firefox&#8217;s about:permissions page, save all the username and passwords one by one and then choose the &#8220;Block&#8221; option.</p><p>This will configure Firefox to never save any passwords for any other site except Gmail. Your saved username and passwords will continue to work as before, it&#8217;s just that Firefox will not throw the dialog box &#8216; Do you want this password to be saved?&#8221; in future.</p><p><strong>3. Blocking Popup Winodows for specific sites: </strong> The same is true for allowing or blocking popups from sites you don&#8217;t trust. If you use a lot of Firefox add-ons and don&#8217;t want to block pop ups from Mozilla, add the pop up blocking exception to the about:permissions page and choose &#8220;Block Pop up windows&#8221; option. This will block pop up windows from every other site while allowing popups from the sites that are present in the exception list.</p><p>Other options are allowing and blocking cookies, and maintaining offline storage for sites that support it. The newer dashboad will surely help novice users who need a simple page for managing passwords, location, cookies and other privacy related options in Firefox.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/firefox-about-permissions-page-control-user-privacy/9315/">Firefox Nightly Build Adds Better Privacy Controls Using An About:Permissions Page</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How To Format A Webpage To Get A Clutter Free And Easy Reading Environment</title><link>http://www.ampercent.com/clutter-free-reading-text-only-version-webpage/9173/</link> <comments>http://www.ampercent.com/clutter-free-reading-text-only-version-webpage/9173/#comments</comments> <pubDate>Sun, 08 May 2011 20:07:42 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google Chrome]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9173</guid> <description><![CDATA[<p>Here are some tips which will help you format a webpage for easier reading by removing advertisements, widgets, plugins, subscription boxes and other unnecessary UI elements.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/clutter-free-reading-text-only-version-webpage/9173/">How To Format A Webpage To Get A Clutter Free And Easy Reading Environment</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>Reading articles on blogs, forums or news website can get really messy &#8211; thanks to the advertisements, widgets, buttons, subscription box and other unnecessary UI elements. One good way to remove clutter and advertisements from article pages is to install an Ad blocker browser extension but sometimes, blocking the ads is not just enough.</p><p>You may find that some webpages are very badly formatted, uses peculiar fonts or colors, have low font size and the template background is green or red. The article is informative and has quality information but the sad thing is that not every website owner is aware of proper web standards.</p><p>So how do you format a webpage for easy reading and keep only the content of the article, removing all the ads, Facebook social plugins, widgets, banners, subscription boxes and other promotional stuff ? In this article we look at some ways to make a webpage suitable for easy reading.</p><h3>Readability – Browser Bookmarklet For Comfortable Reading of Webpages</h3><p>This is one my my favorite <a href="http://www.ampercent.com/useful-search-bookmarklets/5269/">bookmarklets</a> and I use it on news websites who have a mix of unnecessary sections. <strong><a href="http://www.readability.com/">Readability</a></strong> is a web and mobile app which helps you to remove clutter from webpages and offers a minimalist text version of the page, suitable for easy reading with bigger fonts and a subtle background.</p><p><strong>For example:</strong> On using the above bookmarklet on the New York Times website,  the same article transforms into a clean text only version.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="Format webpages for clutter free reading" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Readable-Formats-A-Webpage-For-Easy-Read_13B23/clutter-free-reading.png" alt="Format webpages for clutter free reading" width="593" height="239" border="0" /></p><p>There are other advantages of using the Readability bookmarklet over browser extensions. You can share the article on social sharing sites, bookmark the webpage on your Readability account, <a href="http://www.ampercent.com/reduce-printing-costs/7876/">print a formatted copy</a> of the webpage on paper or download the text only version of the same page for offline use. If you are a writer and do a lot of reading every other day, I highly recommend this bookmarklet for distraction free reading environment.</p><p><strong>Note:</strong> A similar bookmarklet is also offered by <a href="http://readable.tastefulwords.com/">Readable</a>, which offers more control on choosing a custom font, color, page background, font size and so on.</p><h3>Browser Extension For Reading the Text only version of a Webpage</h3><p>Instaread is a useful browser extension available for both <a href="https://chrome.google.com/webstore/detail/njmpbcjaomahmmcbeacllaknjkadpilc#" rel="nofollow">Google Chrome</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/instaread/" rel="nofollow">Firefox</a>, which lets you quickly convert a webpage to it’s text only version. In reality, the Instapaper extension is a browser bookmarklet wrapped around a browser add-on which lets you remove ads, widgets and other useless clutter from webpages so that you can easily read the text or comments.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="instaread" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Readable-Formats-A-Webpage-For-Easy-Read_13B23/instaread.png" alt="instaread" width="386" height="275" border="0" />Using Instaread is simple. While reading a webpage or a blog post, simply hit the extension button or pull in the context menu option and you will see the text only version of the webpage in the same browser tab. Instaread also lets you choose a preferred font so if you hate the default Georgia font, you can choose between Verdana, Arial and a couple of more eye friendly fonts. Thanks <a href="http://blog.arpitnext.com/instaread">Arpit</a></p><p>I used the Instapaper chrome extension on Wall Street Journal article and here is how the text only minimalist version looks like:</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="View text only version for easy reading" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Readable-Formats-A-Webpage-For-Easy-Read_13B23/text-only-version.png" alt="View text only version for easy reading" width="493" height="297" border="0" /></p><h3>Using An RSS Reader For Reading Blog Articles</h3><p>This is one of the best ways to read websites and online content from websites which you visit on a daily basis.  An online or a <a href="http://www.ampercent.com/feeddemon-portable-run-feeddemon-from-usb-drive/8993/">desktop RSS reader</a> allows you to read all the latest articles from a blog, forum in a clutter free environment.</p><p>All you have to do is grab the <a href="http://feeds2.feedburner.com/ampercent">RSS feed</a> of the website and subscribe in your online RSS reader (I personally use Google Reader as my default RSS reader).</p><p>The advantage of using an RSS reader is that you don’t need to visit all the blogs, websites, forums one by one. Whenever there is a new update or a new article is published on your favorite website, you will see a new update on your RSS reader. Here are some more <a href="http://www.ampercent.com/filter-keywords-rss-feeds-reduce-clutter/7599/">Google Reader tips</a> for effective feed management.</p><p><strong>Related:</strong> You might also want to try <a href="https://chrome.google.com/webstore/detail/iooicodkiihhpojmmeghjclgihfjdjhj">Evernote Clearly</a>, a super Google Chrome extension which can <a href="http://www.ampercent.com/distraction-free-reading-evernote-clearly/9834/">format webpages for easier reading</a>. The added advantage here is the ability to clip the formatted copy directly to your Evernote account.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/clutter-free-reading-text-only-version-webpage/9173/">How To Format A Webpage To Get A Clutter Free And Easy Reading Environment</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Adobe Flash Player 10.3 Lets You Delete Flash Cookies Directly From Your Browser</title><link>http://www.ampercent.com/adobe-flash-player-10-3-lets-you-delete-flash-cookies-directly-from-your-browser/9145/</link> <comments>http://www.ampercent.com/adobe-flash-player-10-3-lets-you-delete-flash-cookies-directly-from-your-browser/9145/#comments</comments> <pubDate>Wed, 04 May 2011 19:54:33 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Adobe]]></category> <category><![CDATA[Browsers]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Internet Explorer]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9145</guid> <description><![CDATA[<p>Adobe Flash 10.3 now lets you delete flash files and cookies from your computer, directly from the browsing history page of Internet Explorer, Firefox or Google Chrome</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/adobe-flash-player-10-3-lets-you-delete-flash-cookies-directly-from-your-browser/9145/">Adobe Flash Player 10.3 Lets You Delete Flash Cookies Directly From Your Browser</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: right; padding-top: 0px; border: 0px;" title="flash-cookie" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Adobe-Flash-Player-10.3_A73/flash-cookie.jpg" alt="flash-cookie" width="286" height="188" align="right" border="0" />There is one major difference between Flash cookies and normal cookies saved by websites on your computer’s “<a href="http://www.ampercent.com/delete-temporary-files-internet-files-computer/7664/">Temporary Internet Files</a>” folder.</p><p>First, Flash cookies <strong>are not deleted</strong> when you <a href="http://www.ampercent.com/how-to-automatically-clear-firefox-cache-history-cookies-on-exit/6428/">clear your browsers browsing history</a> i.e clearing your browser cache or hitting the “Delete Browsing history” button in Google Chrome, Internet Explorer or Mozilla Firefox does not delete Flash cookies saved on your computer.</p><p>Flash cookies are used by websites who solely depend on shockwave flash objects or say web video sites like YouTube who stream FLV videos via your browser. Whenever you use a website which needs Adobe Flash for rendering or human interaction, a Flash cookie is saved on your computer which remains there until the next time you visit the same website.</p><p>Upon successive visits the <strong>Flash cookies are overwritten</strong> depending upon your actions.</p><p><strong>Example: </strong>Go to YouTube or any other website which uses Flash objects. Interact with the Flash elements which could mean changing the screen resolution of YouTube videos, adjusting the volume or playing a game on some gaming website with custom preferences. When you are done, <a href="http://www.ampercent.com/clear-browser-cache-and-browsing-history-in-google-chrome/5715/">delete all browsing history</a> and reload the page.</p><p>You should see the same preferences of the Flash elements because those preferences were saved in a Flash cookie and not as a normal bowser cookie accessible from your browser history settings in Firefox or Internet Explorer.</p><h3>How To Delete Flash Cookies That Are Saved on Your Computer</h3><p>Simple.</p><p>Open the following directory in Windows Explorer and there you have all the Flash and SWF cookie files saved in the shared objects folder.</p><p><em>C:\Users\Username\AppData\Roaming\Macromedia\Flash Player\#SharedObjects – replace username with the actual username of your computer</em></p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="Delete Flash Cookies From Your Computer" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Adobe-Flash-Player-10.3_A73/delete-flash-cookies-from-computer.png" alt="Delete Flash Cookies From Your Computer" width="575" height="402" border="0" /></p><p>Please note that flash files and cookies of each website is stored in it’s local folder, so you can clear Flash cookies of a particular site using this method. Another noteworthy point is that you can also find the last modification time of a cookie which could put some light when was the last time a YouTube video was viewed on this computer or when was the last time you opened a particular news website.</p><h3>Adobe Flash 10.3 Let’s You Delete Flash Cookies From Your Browser</h3><p>The good news however is that Adobe has released an update to Adobe Flash Player and the recent beta version (10.3, <a href="http://labs.adobe.com/technologies/flashplatformruntimes/flashplayer10-3/">download here</a>) lets you clear flash cookies and cached objects directly from your browser’s browsing history page. Flash player 10.3 integrates features and local storage of flash objects with the browser’s privacy settings so novice users won’t have any problems <strong>flushing the older flash files</strong>, if there is any problem related with Adobe Flash on some website.</p><p><strong>Example:</strong> Let’s say you grandma wants to watch the royal wedding video but she is unable to preview it on Internet Explorer because YouTube continues to show an “Adobe Flash Error”. Instead of manually deleting Adobe flash’s object cache, ask your grandma to go to Tools &gt; Options and hit “Clear Browsing history”.</p><p>This will also delete all the previously cached Flash objects and probably now she won’t have any Adobe flash problems in the browser.</p><p>To test this newer feature, download the latest Flash player from Adobe, install it for your browser and head over to <a href="http://ie.microsoft.com/testdrive/Browser/FlashCookies/Default.html">this Microsoft page</a>.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="Flash cookie test page" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/Adobe-Flash-Player-10.3_A73/flash-cookie-test-page.png" alt="Flash cookie test page" width="571" height="335" border="0" /></p><p>Here you can create a demo Flash cookie and test whether Internet Explorer is able to delete it, once you clear IE’s browsing history and reload the page again.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/adobe-flash-player-10-3-lets-you-delete-flash-cookies-directly-from-your-browser/9145/">Adobe Flash Player 10.3 Lets You Delete Flash Cookies Directly From Your Browser</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Speed Up Firefox 4 By Disabling Tab Animations</title><link>http://www.ampercent.com/speed-up-firefox-4-by-disabling-tab-animations/9018/</link> <comments>http://www.ampercent.com/speed-up-firefox-4-by-disabling-tab-animations/9018/#comments</comments> <pubDate>Wed, 13 Apr 2011 16:20:00 +0000</pubDate> <dc:creator>webmaster</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Tricks and Tutorials]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=9018</guid> <description><![CDATA[<p>Firefox 4 is one of the best browsers you can use. Its customization features and usability make it second to none in the world of internet clients. The major complaint is that it is not as fast as Google Chrome. One simple trick you can do to make Firefox 4 faster is to disable the tab animations.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/speed-up-firefox-4-by-disabling-tab-animations/9018/">Speed Up Firefox 4 By Disabling Tab Animations</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p><a href="http://www.mozilla.com/en-US/firefox/fx/">Firefox 4</a> is one of the best browsers you can use. Its customization features and usability make it second to none in the world of internet clients. The major complaint is that it is not as fast as <a href="http://www.google.com/chrome">Google Chrome</a>.</p><p>One simple trick you can do to <a href="http://www.ampercent.com/reduce-firefox-memory-usage-hacks/1637/">make Firefox 4 faster</a> is to disable the tab animations. The only downside to doing this is that you lose some for the eye candy that Firefox 4 is now known for. If speed is your goal, however, I suggest you do this immediately.</p><h3>How To Disable Firefox 4&#8242;s Tab Animations</h3><p style="text-align: center;"><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/ff-tab-animations-warning.jpg" alt="" width="557" height="179" /></p><p>1. Type &#8216;about:config&#8217; into your Firefox address bar. When greeted with this screen, simple click the button that says <strong>I&#8217;ll be careful, I promise!</strong></p><p style="text-align: center;"><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/ff-tab-animations-step-2.jpg" alt="" width="515" height="96" /></p><p>2. Type &#8216;browser.tabs.animate&#8217; into the <em>Filter</em> bar towards the top of the window.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/ff-tab-animations-step-3.jpg" alt="" /></p><p>3. Double click the word <em>true</em> under <strong>Value</strong> to change the value to <em>false.</em> Now close the tab.</p><h3>Faster Firefox Browsing Without Tab Animations</h3><p>After closing the &#8216;about:config&#8217; tab, you will have already enabled the change. if you ever wanted to turn the animations back on, you can simply follow these steps but change the value to <em>true.</em></p><p>I personally see a difference in the time it takes for a tab to load with the animations off. I am not sure if it is placebo or not, but if it feels faster then I am happy.</p><p>If you have any questions or comments, or have an idea on how to further speed up Firefox 4, please let us know by saying so in the section below.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/speed-up-firefox-4-by-disabling-tab-animations/9018/">Speed Up Firefox 4 By Disabling Tab Animations</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Move Your Blogging To Your Browser with ScribeFire</title><link>http://www.ampercent.com/cross-platform-blogging-editor-scribefire/8922/</link> <comments>http://www.ampercent.com/cross-platform-blogging-editor-scribefire/8922/#comments</comments> <pubDate>Tue, 12 Apr 2011 06:39:44 +0000</pubDate> <dc:creator>webmaster</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Blogging]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Safari]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=8922</guid> <description><![CDATA[<p>Anyone who does any sort of regular blogging knows that there are benefits to using a piece of blogging software. The ability to work on a post without being restricted to your site's back end give you the freedom to check references and take screenshots easily. Windows Live Writer is always a favorite of bloggers, but what if you are looking for something that is cross platform? If you are, then you should take a look at a browser plugin known as ScribeFire.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/cross-platform-blogging-editor-scribefire/8922/">Move Your Blogging To Your Browser with ScribeFire</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>Anyone who does any sort of regular blogging knows that there are benefits to using a piece of blogging software. The ability to work on a post without being restricted to your site&#8217;s backend gives you the freedom to check references and take screenshots easily.</p><p><a href="http://www.ampercent.com/windows-live-writer-2010/6222/">Windows Live Writer</a> is always a favorite of bloggers, but what if you are looking for a cross platform blogging editor which works on Windows, Linux and MAC computers? If you are, then you should take a look at a browser plugin known as <strong><a href="http://www.scribefire.com/">ScribeFire</a></strong>.</p><h3>What is ScribeFire?</h3><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/scribefire-homepage.png" alt="broswer, plugin, blogging, firefox, chrome, opera" width="575" height="400" /></p><p>ScribeFire isn&#8217;t actually a piece of software that you install on your machine. Instead, it is a browser plugin that spans all major operating systems. It is available for Mozilla Firefox, Google Chrome, Opera, and Apple&#8217;s Safari browsers. The experience of using ScribeFire is the same across all browsers and operating systems. ScribeFire is compatible with a wide range of blogging platforms, including WordPress, Blogger, MovableType, and SquareSpace.</p><h3>ScribeFire&#8217;s Full Bodied Feature Set</h3><p><strong><img class="aligncenter size-full wp-image-8923" src="http://cdn.ampercent.com/wp/wp-content/uploads/scribefire-post-editor-e1302025376857.jpg" alt="ScribeFire, Blogging, Post, Editing" width="575" height="178" /><br /> </strong></p><p>Any blogger can tell you that a piece of software is useless without a robust feature set, and ScribeFire is no slouch.</p><p>At its base, it includes a fantastic WYSIWYG post editor. You can use any of the basic formatting features available to you when writing a post on any platform. You can also add images and videos to the articles with ease. The only thing I see missing from its feature set in this category is the heading formats. Many of us like to use preset formatting for subheadings within posts, and ScribeFire does not have those preset formats.</p><p><img class="aligncenter size-full wp-image-8925" src="http://cdn.ampercent.com/wp/wp-content/uploads/scribefire-share-post.jpg" alt="social, digg, facebook, twitter, share post" width="411" height="187" /></p><p>Beyond the basic editing capabilities, ScribeFire has a lot to offer bloggers.</p><p>It includes a monetization feature that uses <a href="http://www.inlinks.com/">InLinks</a> to automatically insert paid links into posts. It also has a set of share features that will automatically allow you to share your new post on several social sites, like <a href="http://www.ampercent.com/tag/facebook/">Facebook</a> and <a href="http://www.ampercent.com/tag/digg/">Digg</a>. Here again I notice a glaring omission, and this time its <a href="http://www.ampercent.com/tag/twitter/">Twitter</a>. I am not sure why Twitter is not included in the sharing package within ScribeFire, but I hope they will add it in a future update.</p><p><img class="aligncenter size-full wp-image-8924" src="http://cdn.ampercent.com/wp/wp-content/uploads/scribefire-related-articles.jpg" alt="similar, content, search. links, references" width="324" height="419" /></p><p>Another great feature of ScribeFire is its <strong>related articles search</strong>. While it doesn&#8217;t focus on articles that are on your website, it does help you find related articles for possible references. It is possible to have your blog added to the pool of articles, but I do not see a way to restrict it to only your website.</p><h3>ScribeFire&#8217;s Road To Daily Use</h3><p>I have had issues with Windows Live Writer in the past, and I have been searching for something else to use for blogging.</p><p>Overall, I am impressed with ScribeFire&#8217;s feature set and usability. As I mentioned, there are a couple of minor issues with it, but I think that they are easily forgiven for all the other features that ScribeFire has to offer. If you are in the market for a great piece of blogging software, you should definately give ScribeFire a try.</p><p>What blogging platform are you using? Do you have any suggestion or comments? If you do, please let us know by leaving a comment below.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/cross-platform-blogging-editor-scribefire/8922/">Move Your Blogging To Your Browser with ScribeFire</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/56 queries in 0.056 seconds using disk: basic
Object Caching 1674/1790 objects using disk: basic
Content Delivery Network via cdn.ampercent.com

Served from: www.ampercent.com @ 2012-02-04 09:18:49 -->
