Makerbot is now supported in the August 2021 release. Yay (I have 2)!
One catch is the post produces a GCODE .nc file and stops short of the .x3g you actually need for your Makerbot.
To fix this you can install the GPX utility from https://github.com/markwal/GPX then add the following code to your own modified version of the makerbot.cps post:
function onTerminate()
{
var outputPath = getOutputPath().lastIndexOf(".");
file = getOutputPath().substr(0, outputPath < 0 ? outputPath.length : outputPath) + ".x3g";
platform = getPlatform();
if (platform == “WIN32“)
{
// install the GPX utility from https://github.com/markwal/GPX , replace <path> below with your install path
// this converts .nc to .x3g for Makerbot replicator 2
execute(“C:\\<path>\\gpx", "-p -m r2 \"" + getOutputPath() + "\" \"" + file + "\"", false, '');
// this line opens up the folder containing the .x3g so you can copy it to your makerbot
execute(getOutputPath().substring(0,getOutputPath().lastIndexOf("\\")+1), "" , false, '');
}
}