feat(cc-slowness-fix): remove unused large data from some requests

The ViewForum and ViewThread requests may contain the
User.ProfileAbuse.account_reported_abuse field in their responses which
for some users contains megabytes of data and is seemingly unused by the
Community Console.

Thus, this CL removes this data from the responses when the feature
which fixes the CC slowness and high memory usage is enabled.

Change-Id: Idef49285c29d256c5413971c80581ba4ad65cb98
diff --git a/src/xhrInterceptor/responseModifiers/index.js b/src/xhrInterceptor/responseModifiers/index.js
index 057960f..e736593 100644
--- a/src/xhrInterceptor/responseModifiers/index.js
+++ b/src/xhrInterceptor/responseModifiers/index.js
@@ -4,11 +4,15 @@
 import createMessageRemoveParentRef from './createMessageRemoveParentRef.js';
 import flattenThread from './flattenThread.js';
 import loadMoreThread from './loadMoreThread.js';
+import removeUserAbuseEventsInViewForum from './removeUserAbuseEventsInViewForum.js';
+import removeUserAbuseEventsInViewThread from './removeUserAbuseEventsInViewThread.js';
 
 export const responseModifiers = [
   loadMoreThread,
   flattenThread,
   createMessageRemoveParentRef,
+  removeUserAbuseEventsInViewForum,
+  removeUserAbuseEventsInViewThread,
 ];
 
 // Content script target