Google Voice Icon
Google Voice Icon by malabooboo

Google Voice is the eighth wonder of the world.

Mac users lucky enough to have secured an invite might consider creating a Fluid site specific browser to carve out some space for Google Voice on the Dock.

An SSB is quite useful in itself, but even more so when a few CSS tweaks are applied.

After launching Fluid and creating the SSB for http://google.com/voice (I highly recommend using malabooboo’s icon for the app icon), launch the newly created app and open the preferences panel.

Click on Userstyles and then on the plus button to add a new URL pattern.

In my case I simply used an asterisk (*) for the pattern, which matches any url. For more information on Userstyles, watch this video.

Adding your own CSS formatting instructions will alter how the page is displayed and potentially remove annoyances. Here are a few examples:

Allow the SMS textarea to be resized

1
2
3
.gc-quicksms div textarea {
    resize: both !important;
}
1
2
3
4
5
6
.gc-message-sms-old {
    display: block !important;
}
.gc-message-sms-show {
    display: none;
}
1
2
3
#gc-sidebar-invites {
    display: none;
}
1
2
3
#gbar {
    display: none;
}

Remember to refresh the browser window with CMD-R to apply any changes made to the userstyles.