- Import jquery at bottom of site scripts: // ==UserScript==
// @name Import Jquery
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Add jquery to websites for console debugging
// @author Jerome Scott
// @require http://code.jquery.com/jquery-3.4.1.min.js
// @match *://*/*
// @run-at document-end
// @grant none
// ==/UserScript==
// access jquery object using $
var $ = window.jQuery