我想要在没有tampermonkey或其他的情况下执行此用户脚本。 我已经使用了Chromium Embedded Framework,但我不能使用篡改功能。
window.stop(),document.documentElement.innerHTML = NULL,GM_xmlhttpRequest({方法:" GET",网址:" http://extension.agarplus.io",的onload:函数(E){document.open(),文件撰写(e.responseText),document.close()}});
所以我需要运行这段代码,你如何运行一个常见的javascript
答案 0 :(得分:1)
这可能会对你有所帮助:
从客户端应用程序执行JS的最简单方法是使用 CefFrame :: ExecuteJavaScript()函数
https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration