Keyboard shortcuts for Cube Timer

Adds keyboard shortcuts to clear the last time or all the times

  1. // ==UserScript==
  2. // @name Keyboard shortcuts for Cube Timer
  3. // @namespace cubetimer
  4. // @description Adds keyboard shortcuts to clear the last time or all the times
  5. // @include http://www.cubetimer.com/
  6. // @author SoKeT
  7. // @version 1
  8. // ==/UserScript==
  9.  
  10. $(document).keydown(function(e) {
  11. if (e.which === 46) { //Esc
  12. $("#elapsed_time").text("00:00.00");
  13. remove_time(time_list.length - 1);
  14. }
  15. else if (e.which === 27) { //Del
  16. clear_times();
  17. }
  18. });