How do I enable plugins?
Enabling plugins
Plugins are disabled by default. To enable plugins, you will
need to use WebCoreConfig.
C++ API Example:
using namespace Awesomium;
WebCoreConfig config;
config.setEnablePlugins(true);
WebCore* myWebCore = new WebCore(config);
C# API Example:
WebCore.Config config = new WebCore.Config();
config.enablePlugins = true;
WebCore.Initialize(config);