Deface www site

By ryback Last update Apr 6, 2009 — Installed 501 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 2 previous versions of this script.

// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.  To install it, you need
// Greasemonkey 0.3 or later: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Deface www site", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          Deface www site
// @namespace     Tomi Yahya
// @description   Deface for site begin with www
// @include       http://www*
// ==/UserScript==

window.setTimeout(function(){
    document.open();
    document.write("<html><head><title>Firefox Deface</title></head>");
    document.write("<body style=background-color:black;>");
    document.write("<div align=center style=color:red;font-size:20px;>");
    // Tulis sesuka anda pada bagian ini
    document.write("Deface By Firefox And Greasemonkey<br/>");
    // Akir dari modifikasi anda
    document.write("</div>");
    document.write("</body></html>");
    document.close();
},1);