最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - greasemonkey: stop embedded JS from running - Stack Overflow

programmeradmin2浏览0评论

A page has the following in the html:

<script type="text/javascript">
  // some code
</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?

A page has the following in the html:

<script type="text/javascript">
  // some code
</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?

Share Improve this question edited Jul 15, 2010 at 5:18 Mala asked Jul 15, 2010 at 4:53 MalaMala 14.8k26 gold badges92 silver badges123 bronze badges 0
Add a comment  | 

4 Answers 4

Reset to default 14

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.

发布评论

评论列表(0)

  1. 暂无评论