![]() |
2009-11-04
, 08:15
|
|
Posts: 3,159 |
Thanked: 2,023 times |
Joined on Feb 2008
@ Finland
|
#2
|
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.
The Following User Says Thank You to ossipena For This Useful Post: | ||
![]() |
2009-11-04
, 08:31
|
|
Posts: 3,811 |
Thanked: 1,151 times |
Joined on Oct 2007
@ East Lansing, MI
|
#3
|
![]() |
2009-11-04
, 09:06
|
Posts: 114 |
Thanked: 45 times |
Joined on Oct 2009
@ Turin, Italy
|
#4
|
// ==UserScript==
// @name Fully Maximize Google Calendar with F12 Toggle
// @namespace http://www.google.com/calendar/*
// @description Makes the most of Google Calendar on limited screen real estate (great for EEE PC).
// @include http://www.google.com/calendar/*
// @include https://www.google.com/calendar/*
// ==/UserScript==
(function(){})();
guser = document.getElementById('guser');
gbar = document.getElementById('gbar');
nav = document.getElementById('nav');
topbar = document.getElementById('topBar');
body = window.document.body;
mothertable = document.getElementById('mothertable');
if (guser.style.display != "none"){guser.style.display = "none";}else{
gbar.style.display = "none";
body.style.margin = "0px";
mothertable.style.padding = "0";
nav.style.visibility = "collapse";
nav.style.width = "0px";
topbar.style.visibility = "collapse";
unsafeWindow._SR_backToCalendar();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();
The Following User Says Thank You to HoX For This Useful Post: | ||
![]() |
2009-11-04
, 09:08
|
Posts: 835 |
Thanked: 772 times |
Joined on Oct 2007
@ Finland
|
#5
|
// ==UserScript== // @name Fully Maximize Google Calendar with F12 Toggle // @namespace http://www.google.com/calendar/* // @description Makes the most of Google Calendar on limited screen real estate (great for EEE PC). // @include http://www.google.com/calendar/* // @include https://www.google.com/calendar/* // ==/UserScript== (function(){ //window.addEventListener("keydown",function(e) { //if((e.keyCode==123)) { //if((e.keyCode==122)&&(e.ctrlKey)) { //control-F11 guser = document.getElementById('guser'); gbar = document.getElementById('gbar'); nav = document.getElementById('nav'); topbar = document.getElementById('topBar'); body = window.document.body; mothertable = document.getElementById('mothertable'); if (guser.style.display != "none"){ guser.style.display = "none"; gbar.style.display = "none"; body.style.margin = "0px"; mothertable.style.padding = "0"; nav.style.visibility = "collapse"; nav.style.width = "0px"; topbar.style.visibility = "collapse"; unsafeWindow._SR_backToCalendar(); }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); })();
The Following User Says Thank You to Kozzi For This Useful Post: | ||
![]() |
2009-11-04
, 09:08
|
Posts: 540 |
Thanked: 387 times |
Joined on May 2009
|
#6
|
The Following User Says Thank You to linuxeventually For This Useful Post: | ||
![]() |
2009-11-04
, 09:47
|
|
Posts: 3,811 |
Thanked: 1,151 times |
Joined on Oct 2007
@ East Lansing, MI
|
#7
|
![]() |
2009-11-04
, 22:32
|
|
Posts: 3,811 |
Thanked: 1,151 times |
Joined on Oct 2007
@ East Lansing, MI
|
#8
|
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.