Page 1 of 1

Suggestions

Posted: Wed Jul 20, 2022 4:38 am
by АлександрМорозов
and I have another suggestion, which I have never seen anywhere else... :-)
Enable your browser to connect to external binary libraries via some API, .dll/.dylib/.so, which would have access, at least for reading, to the entire DOM of the open site. Even I know that this is not difficult to implement...
Such a thing would make it possible to program any functionality at all, without referring to JS with all its security limitations and extremely crooked syntax and retarded sandbox....
And also not to cry when a tiny utility pulls another copy of the whole chrome embedded framework...... ))))))))))))))
Something like system-dependent Activex applets, but at the end-user rather than site level...
Respect to you....

Re: Suggestions

Posted: Thu Jul 21, 2022 7:59 am
by salvadordf
Try using the DevTools protocol with any Chromium based browser :
https://chromedevtools.github.io/devtools-protocol/

You only need to run the browser with this parameter :

Code: Select all

--remote-debugging-port=9222
You can also use the DOMVisitor demo in CEF4Delphi if you need even more features.