greasemonkey: stop embedded JS from running
A page has the following in the html:
<script type="text/javascript">
// some co开发者_如何学Gode
</script>
My greasemonkey script needs to prevent that script from running. How can I do this?
Update: I understand that in the general case this is impossible. However, in my specific case, I may have a loophole?
<script type="text/javascript">
if (!window.devicePixelRatio) {
// some code that I -don't- want to be run, regardless of the browser
}
</script>
Is there some way I can define window.devicePixelRatio
before the embedded script runs?
This is now possible with @run-at document-start
and Firefox's beforescriptexecute
. Tested only in FF24.
// ==UserScript==
...
// @run-at document-start
// ==/UserScript==
//a search string to uniquely identify the script
//for example, an anti-adblock script
var re = /adblock/i;
window.addEventListener('beforescriptexecute', function(e) {
if(re.test(e.target.text)){
e.stopPropagation();
e.preventDefault();
}
}, true);
beforescriptexecute
was rejected for HTML 5 in 2016, and Chrome is unlikely to implement it.
It does not run for <script>
nodes inserted by other scripts.
Re:
Is there some way I can define
window.devicePixelRatio
before the embedded script runs?
There is now. Like so:
// ==UserScript==
// @name _Pre set devicePixelRatio
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @run-at document-start
// @grant none
// ==/UserScript==
//-- @grant none is imporatant in this case.
window.devicePixelRatio = "Unimportant string or function or whatever";
In the general case:
Since Firefox version 4, this is now possible on Firefox only. Use the checkForBadJavascripts
utility to leverage the power of beforescriptexecute
. Like so:
// ==UserScript==
// @name _Block select inline JS
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @require https://gist.github.com/raw/2620135/checkForBadJavascripts.js
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
introduced in GM 1.0. It restores the sandbox.
*/
checkForBadJavascripts ( [
[false, /window\.devicePixelRatio/, null]
] );
This blocks the first inline script, that contains window.devicePixelRatio
, entirely. If you want to selective modify parts of that script, see this answer and/or this answer.
User scripts run after the page is loaded, so you aren't able to.
Unless, the code uses the "onload" event.
User scripts are executed after the DOM is fully loaded, but before onload occurs. This means that your scripts can begin immediately and don't need to wait for onload.
Another option is to use Privoxy instead of GreaseMonkey. You just use Privoxy as your proxy (on localhost) and search/replace the strings you don't like.
精彩评论