The Manhattan Distances heuristic I knew from a class I took a few years ago. The rest I just looked up yesterday. It's nice that I can sound informed on the subject after looking at a few web pages

The first thing I was thinking of was trying to get the path to be straighter, since the sprites don't need to move in orthogonal directions. I changed the force used to push the sprite to be lower, and the TargetDistance to be a little higher, and that helped, but as for taking out unnecessary points in the middle, well, I don't see an immediate way to do that. The next thing to do would be to make an algorithm to follow a moving target.
I did modify the sample project to call an update function every 35 frames and I added a player sprite so that it always moves toward the player. I didn't notice any slow-down, and it seemed to work quite well. I don't know fast it would go if I added more sprites, but I don't think it would be too bad.
Also, I don't think I quite understand how the GoldYoink search worked. Did it just not move the enemy while the first search was being performed, then continue along the old path while the new path was being calculated throughout several frames? I suppose the up-side of this would be less time per frame spent searching, but I haven't noticed any slow-down yet with doing it all in one frame, so I don't see a big necessity to spread it out, just yet.