Advertisement
TLama

Untitled

Nov 28th, 2014
589
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.32 KB | None | 0 0
  1. var
  2.   I: Integer;
  3. begin
  4.   // navigate with your TChromium to some URL first, then you can list plugins...
  5.   for I := 0 to CefGetWebPluginCount - 1 do
  6.     ShowMessage(
  7.       CefGetWebPluginInfo(I).Name + sLineBreak +
  8.       CefGetWebPluginInfo(I).Path + sLineBreak +
  9.       CefGetWebPluginInfo(I).Description
  10.     );
  11. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement