Replies: 5 comments 2 replies
-
It will log to stdout default. Could you provide log? |
Beta Was this translation helpful? Give feedback.
-
**E:\app\v8_killer-master\target\debug>v8_killer_launcher.exe E:\bilibili-debugger\bilibili\bi.exe 21:17:34.331 (AppIndex) > Starting... |
Beta Was this translation helpful? Give feedback.
-
Sorry, I seem to know where I am wrong |
Beta Was this translation helpful? Give feedback.
-
But I still do not konw what script I can inject to open devtools. |
Beta Was this translation helpful? Give feedback.
-
In addition, I found some electron applications were started with "jsc" files, and the injection failed again. |
Beta Was this translation helpful? Give feedback.
-
I successfully injected your config. But But I can't see any effect. Where are the parameters of “console.log ” logged? In addition, This project seems to only support injecting native v8 functions, which I am not sure. I have a question. If I want to open devtools, What code should I inject instead? I tried this script:
var allWebContents = require('electron').webContents.getAllWebContents() allWebContents.forEach((contents)=>{ if (contents.openDevTools) { contents.openDevTools(); } }
But failed.I don't know if my way is wrong. I sincerely look forward to your reply. Thank you very much.
Beta Was this translation helpful? Give feedback.
All reactions