We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e19f6 commit 1351424Copy full SHA for 1351424
background.js
@@ -3,15 +3,15 @@
3
* parameter. We'll search the query string portion of the URL for this
4
* pattern to determine if there's any stripping work to do.
5
*/
6
-var searchPattern = new RegExp('utm_|clid|icid|mkt_tok', 'i');
+var searchPattern = new RegExp('utm_|clid|icid|mc_|mkt_tok', 'i');
7
8
/*
9
* Pattern matching the query string parameters (key=value) that will be
10
* stripped from the final URL.
11
12
var replacePattern = new RegExp(
13
'([?&]' +
14
- '(icid|mkt_tok|(g|fb)clid|utm_(source|medium|term|campaign|content|cid|reader|referrer|name))' +
+ '(icid|mkt_tok|(g|fb)clid|mc_[ce]id|utm_(source|medium|term|campaign|content|cid|reader|referrer|name))' +
15
'=[^&#]*)',
16
'ig');
17
0 commit comments