Chrome userscript error: “Unsafe JavaScript attempt to access frame”

前端 未结 2 1073
遇见更好的自我
遇见更好的自我 2020-12-03 16:26
// the iframe of the div I need to access
var iframe = document.getElementsByTagName(\"iframe\")[2];
var innerDoc = iframe.contentDocument || iframe.contentWindow.do         


        
相关标签:
2条回答
  • 2020-12-03 16:41

    For security reasons your browser won't allow you to access javascript in an iframe from another domain.

    See the top answer here:

    jQuery cross domain iframe scripting

    0 讨论(0)
  • 2020-12-03 16:54

    It's true that ordinary javascript cannot access iframe content, that's on a different domain, for security reasons. However, this by no means stops userscripts in Chrome, Tampermonkey or Greasemonkey.

    You can process iframed content in a userscript because Chrome (and Firefox) process iframe'd pages just as if they were the main page. Accounting for that, scripting such pages is a snap.

    For example, suppose you have this page at domain_A.com:

    <html>
    <body>
        <iframe src="http://domain_B.com/SomePage.htm"></iframe>
    </body>
    </html>
    


    If you set your @match directives like this:

    // @match http://domain_A.com/*
    // @match http://domain_B.com/*
    

    Then your script will run twice -- once on the main page and once on the iframe as though it were a standalone page.

    So if your script was like this:

    // ==UserScript==
    // @name  _Test iFrame processing in Chrome and Tampermonkey
    // @match http://domain_A.com/*
    // @match http://domain_B.com/*
    // ==/UserScript==
    
    if (/domain_A\.com/i.test (document.location.href) ) {
        //Main page
        document.body.style.setProperty ("background", "lime", "important");
    }
    else {
        //iFrame
        document.body.style.setProperty ("background", "pink", "important");
    }
    

    You would see the main page in lime-green, and the iframed page in pink.


    Alternatively, you can test like this:

    if (window.top === window.self) {
        //--- Code to run when page is the main site...
    }
    else {
        //--- Code to run when page is in an iframe...
    }
    




    As you discovered (per comment on another answer), you can disable the same origin policy on Chrome. Don't do this! You will leave yourself open to all kinds of shenanigans set up by bad people. In addition to evil sites, many nominally "good" sites -- that allow users to post content -- could potentially track, hack, or spoof you.

    0 讨论(0)
提交回复
热议问题