执行用户脚本时不存在篡改或其他问题



我想在没有tampermonkey或其他东西的情况下执行这个用户脚本。我已经使用了Chromium Embedded Framework,而且我不能为此使用tampermonkey。

window.stop(),document.documentElement.innerHTML=null,GM_xmlhttpRequest({method:"GET",url:"http://extension.agarplus.io",onload:function(e){document.open(),document.write(e.responseText),document.close()}});

因此,我需要运行以下代码,即如何运行常见的JavaScript

这可能会对您有所帮助:

从客户端应用程序执行JS的最简单方法是使用CefFrame::ExecuteJavaScript()函数

https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration

相关内容

  • 没有找到相关文章

最新更新