One quick way is to add this conversion to the bottom of all CameraImage_* fragment shaders (when the original code says return xxx, change it to fixed4 col = xxx, then add these lines, and return col).
#ifndef UNITY_COLORSPACE_GAMMA
col.xyz = GammaToLinearSpace(col.xyz);
#endif