Current shortcut keys are:
- F8: Run Page
- F9: Apply Changes
- Alt + F9: Clicks the highlighted button
- Shift + F9: Cancel
- Alt + PageDown: Next
- Alt + PageUp: Previous
- Ctrl + Shift + S: Shared Components
- Ctrl + Shift + E: Edit Page
It is tested with Google Chrome and Firefox (Greasemonkey must be installed).
You can download the script here: http://userscripts.org/scripts/show/81058
Press the big green Install-button to install the script in your browser :-)
Hi,
ReplyDeletethanks for your script. Here is small update for toogle "Return to page" checkbox tested in Google Chrome:
...
} else if (isShiftPressed && isCtrlPressed && myKeyCode == 90) {
// SHIFT + CTRL + Z -> toogle return to page
var checkbox = $('a:contains(Return to Page)').closest('table').find('input:checkbox');
var checked = checkbox.attr('checked');
if (checked) {
checkbox.attr('checked', false);
} else {
checkbox.attr('checked', true);
}
}
Best
Kamil
@Kamil
ReplyDeleteThanks for the input, nice touch. The change is now included with due credit in the script :-)
H.