See below
From a Greasemonkey/Tampermonkey script I want to refer/include always the newest jquery library.
Therefore I coded until now:
// @require http://code.jquery.com/jquery-latest.js
Much to my surprise I experienced that this kind of reference is heavily outdated since it refers to v1.11.1
I want to avoid to code a version number in URL like
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js
Is there no version independent URL for always automatically the latest jquery library?