mbelchev / Extract USAS CSV

// ==UserScript==
// @name          Extract USAS CSV
// @description   Changes the output format of database entries from USAS from PDF to CSV
// @include       https://www.usaswimming.org/times/*
// @version       1.0
// @license       MIT
// @grant 		  GM.getValue
// @require 	  https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
// ==/UserScript==
GM_registerMenuCommand("Switch Filetype", function(){
	var opt = document.getElementById('OutputTypes').options[0];
    opt.value =  'csv';
    opt.text = 'CSV';
 });