View Single Post
ossipena's Avatar
Posts: 3,159 | Thanked: 2,023 times | Joined on Feb 2008 @ Finland
#2
Originally Posted by Addison View Post
Hey all!

This actually should be a very, simple request.

I found a script that can be used in Greasemonkey that makes Google Calendar appear full screen.

The only downside is that you need to press F12 to enable it.

Could someone edit the script and entirely remove the need for this F12 keyboard command and post it back here?

Just have it full screen by default and don't even bother with allowing for a way to restore it back.

The script can be found here:
http://userscripts.org./scripts/show/21376

Hopefully someone with a brain will respond back.
google the keycode for key you want map the function to and change row:

if((e.keyCode==123)) {


e: if you want to do it automaticly, that needs to be modified bit more. or try to remove

window.addEventListener("keydown",function(e) {
if((e.keyCode==123)) {
//if((e.keyCode==122)&&(e.ctrlKey)) { //control-F11


}else{
guser.style.display = "";
gbar.style.display = "";
body.style.margin = "0pt 1ex";
mothertable.style.padding = "0pt 1ex";
nav.style.visibility = "visible";
nav.style.width = "13em";
topbar.style.visibility = "visible";
unsafeWindow._SR_backToCalendar();
}
}
}, false);



and see what happends

Last edited by ossipena; 2009-11-04 at 08:17.
 

The Following User Says Thank You to ossipena For This Useful Post: