IECUSTOMIZER
Hi Belassal,
You can try the same javascriptlet with IE6 (not IE7 though as it does not support the javascript: protocol in the Addressbar).
Just copy your FF javascript to the address bar of IE6 and prefix it with javascript:
eg. javascript:alert('hello world');
Method 2. - Place the scriptlet in an Internet Shortcut(IE6 and 7)
Open up Notepad
type in
url=javascript:{your javascript goes here}
IconFile={the url to your favorite icon}
IconIndex=1
Save the file with a .url extension (make sure you have FileType=All selected in the filetype dropdown) in your Favorites or Links folder
Method 3 - Place the scriptlet in a button script (IE6 and 7)
Open notepad and enter something similar to
<script language=javascript defer>
{your javascript goes here}
</script>
Save the file as a .htm or .html extension.
with all methods you have to be aware of the differences between scripting engines used by FF and IE. Ie uses the external object to access the browser and the document objects. (search msdn for external.menuArguments) and of coarse document.all is a no-no for FireFox.
As far as making an installer for your scriptlete I have a utility to build a msi for Button Add-ons, but my site iecustomizer.com is currently off the air due to a hardware failure. So if you would like to publish your script for the general public or want it packaged to an installer, send us a note and I would be happy to do it for you. Regards.