Auto-submit Alma Report Card Grades

When you need to edit/save every teacher's grade for the whole school.

  1. // ==UserScript==
  2. // @name Auto-submit Alma Report Card Grades
  3. // @namespace https://greasyfork.org/en/users/8332-sreyemnayr
  4. // @version 0.1
  5. // @description When you need to edit/save every teacher's grade for the whole school.
  6. // @author Ryan Meyers
  7. // @match https://*.getalma.com/report-cards/batches/*/input?student=*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setTimeout(function(){
  14. document.getElementsByClassName('submission orange')[0].parentElement.parentElement.getElementsByClassName('edit')[0].click();
  15. setTimeout(function(){
  16. document.getElementsByClassName('med-blue-bg')[1].click();
  17. }, 2000);
  18. }, 2000);
  19. })();