Iolva , I don't think there is need for any 3rd party plugin for this. If I understand correctly, what you ask can be done with just 1 simple event:
every tick----> set scrollx | Player.X ......(this is for horizontal camera movement. use scrolly / Player.Y for vertical movement)
This is far more versatile from the Scroll to behavior, because you can lerp it and have easing in the movement:
every tick-----> set scrollx | lerp(scrollx, Player.X, Z) ......(where Z is any number between 0 and 1. A 0.1 should produce a nice easing movement)