extend jQuery version detection via js

Only `jQuery.fn.jquery` did not work on some major sites. Found more here: https://stackoverflow.com/questions/55722181/jquery-version-check/55722259#55722259
main
TheConciergeDev 3 years ago committed by GitHub
parent 36871b1831
commit 5f01f6ad44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23502,7 +23502,9 @@
"description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
"icon": "jQuery.svg",
"js": {
"jQuery.fn.jquery": "([\\d.]+)\\;version:\\1"
"jQuery.fn.jquery": "([\\d.]+)\\;version:\\1",
"$().jquery": "([\\d.]+)\\;version:\\1",
"$.fn.jquery": "([\\d.]+)\\;version:\\1"
},
"scripts": [
"jquery[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1",