How can I get this to work with the cooking workbench?

I tried to modify the config file but it didn't do anything. I may have done it incorrectly. If I can't get this to work are there better plugins to handle cooking workbenches, mixing tables, etc, besides just regular furnaces?

Edit: This was the change I made to the config file - in the first section:

{
"Use Permission": true,
"Speed Multipliers": {
"global": 1000.0,
"furnace": 1000.0,
"cookingworkbench": 1000
},

This is what it looks like trying to cook a massive amount of chicken pies:


It seems like the plugin doesn't recognise the short name for some reason. I had assumed that the plugin and/or Oxide had some form of API to look up new short names dynamically but perhaps not. Might just need a code change to the plugin itself.

Compilation throws this error:

[Quick Smelt] [Configuration] cookingworkbench is not a valid furnace short name.

EDIT: I've looked at the plugin's code and it's looking for items with a parent class of BaseOven, so I'm guessing the cooking workbench being a dual purpose item/entity probably has a different parent class (BaseWorkbench) but I can't seem to find proper documentation of the Oxide libs and don't want to setup a dev env tonight.

Well I appreciate you taking the time to look into this. It's interesting that there's a parent class, and that BaseOven is potentially blocking things like mixing tables and cooking workbenches. Not much I can do, or you, really. I wonder how the bigger modded servers handle things like this. Maybe they're using a custom plugin.