I visit one website always which i don't want other to see the title of that website.

I want that whenever i open that site my title of that site chnages to something else or hide.

There is a addonon in firefox which can hide the title of window but i have to manually click on hide title.

is there something which can do it automatically for particular website

link|improve this question

69% accept rate
3  
sounds to me like something is showing up in your history that you don't want mom and pop to find ;) – Chase Florell Jun 25 '10 at 0:46
If you just change the title shown in your history, you mom and pop can still search the names of URLs of pages and pictures, browse through the cache, etc… – Marcel Korpel Jun 25 '10 at 1:09
no no its not history , suppose i have 5 tabs open and one tabs title shows some Adult title , when someone is looking at all tabs title i want to change that title not in history but when i am viewing live – Moorage Jun 25 '10 at 1:13
feedback

migrated from stackoverflow.com Jun 25 '10 at 1:57

This question came from our site for professional and enthusiast programmers.

3 Answers

up vote 3 down vote accepted

Use Greasemonkey.

Write a script that changes the page title.

link|improve this answer
Or use Private Browsing mode; but you have to activate it manually, every time, and it doesn't keep track of your history, so visited links are not shown as such. – Marcel Korpel Jun 25 '10 at 1:07
feedback

As Graphain said, use Greasemonkey.

And, because it's easy fun, I have written the GM script for you. :)

// ==UserScript==
// @name           Title Changer for web page XXX
// @namespace      Google
// @include        YourWebsiteHere.tld/*
// ==/UserScript==


window.addEventListener ("load", Greasemonkey_main, false);
Greasemonkey_main ();


function Greasemonkey_main ()
{
    document.title  = 'This is NOT the Highly Incriminating website you are looking for!';
}

.

A place to find additional scripts is: http://userscripts.org/ .

link|improve this answer
feedback

Use F11 to toggle Firefox's full screen mode - that will hide the title and URL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.