Recent posts by hac

Subscribe to Recent posts by hac 3 posts found

May 3, 2007
hac 3 posts

Topic: Script development / Tabs in iGoogle

howdy!

I'm trying to figure out how to remove specific elements within the iGoogle page.

I've been able to remove the "home" tab with it's elements, but not the "add a tab" link.

I removed "home" with the following code:

if (document.getElementById("tab0_view") != null) {
	document.getElementById("tab0_view").style.display = 'none';
}
if (document.getElementById("tab0_edit") != null) {
	document.getElementById("tab0_edit").style.display = 'none';
}
if (document.getElementById("tab0_view_title") != null) {
	document.getElementById("tab0_view_title").style.display = 'none';
}

It seems like the "add a tab" line doesn't have an ID, but it does have a class name "tab addtab" within a rather large LI tag.

 <li class="tab addtab">  <script src="/ig/ig_popup.js">
</script><script> "a bunch of js code" </script>
<a href="#" onclick="return _open_mtabs_dialog();">Add a tab</a></li>


Any semi painless ideas to get that tag outta there?

 
Apr 24, 2007
hac 3 posts

Topic: Ideas and script requests / Remove Google Top Bar

have you tried doing it in platypus?

http://platypus.mozdev.org/

remove what you want, then look at the source of the script, and add that?

just a thought. :)

 
Apr 24, 2007
hac 3 posts

Topic: Script development / Modifying iGoogle homepage?

Howdy!

Okay, so I found a script I liked, and tweaked it a bit to sorta match the gmail AirSkin:

gmail air: http://userscripts.org/scripts/show/7555
igoogle air, sorta: http://userscripts.org/scripts/show/8772

I'm finding that I'm lost in this world. :)

I want to add borders to the tables within the RSS feeds, so the total layout matches Air, but can't figure out what it takes to do that.

Any ideas?