I've got a Chrome plugin that I would like to use on current Chrome version but unfortunately upon installing, I get the following error:
Unrecognized manifest key 'plugins'.
The manifest sort-of looks like
{
...
"plugins": [
{ "path": "myLib.dll", "public": true }
]
}
I am assuming that something changed in the way that Chrome plugins are built or what is allowed and what isn't. How can I translate calling a *.dll
file from the old format using plugins
as a key in the manifest to the new, correct way?