CodeForces_submit_keyboard_shortcut

CodeForcesにおいてCtrl+Enterで提出ができるようになります

  1. // ==UserScript==
  2. // @name CodeForces_submit_keyboard_shortcut
  3. // @version 1.0
  4. // @description CodeForcesにおいてCtrl+Enterで提出ができるようになります
  5. // @author Osmium_1008
  6. // @license MIT
  7. // @include https://codeforces.com/contest/*/problem/*
  8. // @include https://codeforces.com/contest/*/submit*
  9. // @include https://codeforces.com/problemset/submit*
  10. // @include https://codeforces.com/problemset/problem/*
  11. // @supportURL https://twitter.com/Osmium_1008
  12. // @namespace https://greatest.deepsurf.us/users/251827
  13. // ==/UserScript==
  14. (function() {
  15. document.addEventListener('keydown', function (event) {
  16. if ((event.ctrlKey||event.metaKey)&&event.keyCode==13){
  17. $(".submit")[0].click();
  18. }
  19. }, false);
  20. })();