jQuery AJAX wrapper for GM_xmlhttpRequest
This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greatest.deepsurf.us/scripts/401399/938754/GM%20XHR.js
Allows you to use GM_xmlhttpRequest for $.ajax instead of the default XHR. This means that you can do CORS requests, as long as @connect is set properly.
// Setup GM_XHR
$.ajaxSetup({ xhr: function() {return new GM_XHR; } });