Stop mobile network proxy from injecting JavaScript

后端 未结 13 992
鱼传尺愫
鱼传尺愫 2020-11-29 18:50

I am using a mobile network based internet connection and the source code is being rewritten when they present the site to the end user.

In the localhost my website

13条回答
  •  时光说笑
    2020-11-29 19:42

    If you are getting it on a site that you own or are developing, then you can simply override the function by setting it to null. This is what worked for me just fine.

    bmi_SafeAddOnload = null;
    

    As for getting it on other sites you visit, then you could probably open the devtools console and just enter that into there and wipe it out if a page is taking a long time to load. Haven't yet tested that though.

提交回复
热议问题