Adds a StartPage link to the 'Security & Privacy Info' page generated by NoScript from the '?' on a domain - code is annotated and script is currently unpublished on Greasyfork
This adds a StartPage link to your security checks for the domain that you queried in NoScript.
This is unpublished on Greasyfork as it is modifying a security extension.
The makers may take objection to that, and I do not wish to offend them!
Therefore, if they do object (in the NoScript forums) I will remove this at their request.
However, I am hoping that (because this is a simple modification that would be an active choice by any user that wishes to implement it) that they will be OK with it. :-)
This userscript uses the jQuery 'slim' minified code from the official jQuery site at jquery.com/download.
This is because I am rather dumb and couldn't do this with standard javascript, sorry!
// @require https://code.jquery.com/jquery-3.7.1.slim.min.js
I thought that I might need to use their 'observe' (a really nice library simplifying the mutationobserver JS craziness that I just can't grep) in case the page was heavy / generating HTML ... so ... yeah, perhaps only the second require is needed here ... that would likely be the only difference made here.
Not much more to say, here ... the code has annotations that describe each of the three lines in there. :)
Version notes follow.
Initial version first of which had violent monkey requires (in case I needed to mutationobserve) ... however ...
This version has the 'slim' jQuery minified version direct from jquery.com.