Showing posts with label firefox. Show all posts
Showing posts with label firefox. Show all posts

Tuesday, October 7, 2008

Hindi Song | Block Certain Words From Appearing On Web Sites with FoxReplace

find replace FoxReplace is a nice little Firefox add-on that you may use to substitute certain words on web pages with something else. It’s as simple as instructing the browser to replace all instances of word "xxx" with "yyy" like in Notepad.

And in case you like to completely hide a word from appearing on web pages, just use a blank instead of specifying a replacement string.

To understand the usage, let’s take this real-world example: Comments written on Digg and YouTube can sometimes leave a normal person depressed because of their language but here’s how FoxReplace can help you.

First create a new rule that applies to all URLs from digg or youtube.com. We use *.youtube.com instead of youtube.com to take care of country specific domains.

substitute-text

Now in the Substitutions panel, choose the "Regular Expression" option and add multiple ‘find & replace’ entries as show in this screenshot.

If you are new to regular expressions, a.*hole will match all words or phrases like a**hole, a**-hole, a** hole, etc. and they will automatically get replaced with the word "awesome".

This is just one example. You may even use Fox Replace to turn Firefox into a slightly more kid-safe browser by specifying a list of stop-words that never appear on web pages.

Or you can use the add-on to edit web pages before capturing not-so-original screenshots.

related articles

· SEO Basics: Creating a Google Friendly Website

Sunday, October 5, 2008

Hindi Song | Ubiquity Tutorial: How to Write a Simple BSE Sensex Tracker

Ubiquity is a new Firefox plugin that can be used as a command line for creating simple Web mashups. What follows is a simple tutorial on how to write a new Ubiquity command (let’s call our command ’sensex’) that displays the current BSE Sensex chart inside any website in Firefox.

To get started, install Ubiquity, press CTRL+Space, and enter the command "command-editor".

ubiquity-command

Then copy and paste this code in the text editor – the command is automatically saved as you type and you may start using the command with restarting Firefox.

CmdUtils.CreateCommand({
// The name of the Ubiquity command - this is what you would type to invoke the command.
name: "sensex",

// The description of the command.
description: "BSE Sensex charts.",

// The preview display - since we only need to view the graph (and nothing else).
preview: function (html) {
// Take the graph from the bseindia.com site, and insert it into the Ubiquity preview window.
html.innerHTML = '
';
}
});

Press Ctrl+Space again and type "sensex" – There you have the live sensex chart accessible from just about any other website.

bbc command

Thursday, October 2, 2008

Hindi Song | Did Google Toolbar Break your Firefox Address Bar Search?

google-toolbar When you type something in the Firefox address bar, it automatically performs a Google search if the phrase you typed doesn’t match a web domain. The situation is slightly different with OpenDNS .

Now, for some unknown reason, the default search function of the Firefox address bar broke after installing the Google Toolbar (version 5.0).

The searches from Firefox address bar were getting redirected to some server at linkhelp.clients.google.com and then to opendns.com.

Not sure whey Google changed the defaults but here’s a a simple fix for the above problem:

1. Type about:config and click ‘I Promise’.

2. Type keyword.URL in the Filter field and change the values as shown below:

related articles

· Google Toolbar for Firefox 3
· Stop OpenDNS From Redirecting Invalid URLs to their Search Pages

Thursday, September 25, 2008

Hindi Song | Click Hyperlinks on Web Pages with Keyboard Shortcuts

web links shortcuts

As the WSJ screenshot suggests, Mouseless Browsing adds unique numbers next to every hyperlink on the current web page – that link could either be in the form of text or even images.

Now if you want to click any of the hyperlinks to visit the target web page, just type the corresponding number with your keyboard and hit Enter.

mouse shortcuts for bbc

The extension also works with search boxes and regular web forms. Here are some examples from BBC News and the CNN home page.

cnn hyperlinks

While you may think that this will only add clutter to web pages, that’s really not the case. Everything can be customized including the style of these "unique numbers" that appear next to web links.

In fact you could can URLs (with wildcards like *techmeme* or *google.com) to automatically suggest sites where this feature should be enabled or disabled by default.

mouse-options

related articles

· Display Windows Clock On Your Desktop With a Keyboard Shortcut
· Speed Launch: Set Aliases for Documents, Programs & Websites

Monday, September 15, 2008

Hindi Song | Open Websites in Google Chrome from Firefox

open google chrome from firefox
Open web pages or even hyperlinks in Google Chrome from Firefox itself.

If are using Firefox along side Google’s browser, this "Open in Google Chrome" extension might come handy - it lets you send web sites and links directly to Google Chrome from Firefox.

It can also be configured to always open certain web pages in Chrome - e.g. *google*, gmail, etc.

Install "Open in Google Chrome" for Firefox 3

Download open-in-google-chrome.xpi on to your desktop and then drag it inside Firefox 3 much like what you did for Send to Google Docs.

Restart Firefox. Then go to Tools -> Add-ons -> Options and browse for the chrome.exe file on your Vista / XP / Windows 2000 machine.

google chrome from firefox

In Windows XP, Google Chrome installs under \Documents and Settings\\Local Settings\Application Data\Google\Chrome\Application\ while in Windows Vista, Google Chrome installs in \Users\\AppData\Local\Google\Chrome\Application\

google-chrome-settings

The Google Chrome Firefox extension can also be configured to open a group of website(s) directly in Chrome even if you try accessing them from Firefox.

For instance, you may add "yahoo" to the list and any site that has yahoo in the URL would open in Chrome automatically. That includes "maps.yahoo.com", "news.yahoo.com", "yahoo.com" and even "bbc.com/news/yahoo-shares.html" so be careful while picking these wildcards.

Credits: Grayson Mixon wrote the excellent IE View Lite add-on based on the IE View of Paul Roub. I just made some very minor changes to Grayson’s code to make it work with Google Browser instead of Internet Explorer. Therefore all credits for the extension go to Grayson as it is entirely built upon his code-base.