8b6c8bc0ec
Transition from the GPL jumpscare to a more concise header: /* * Vencord, a Discord client mod * Copyright (c) 2023 Vendicated and contributors * * SPDX-License-Identifier: GPL-3.0 */ Old files still keep the old headers, while eslint will now autofix the new header Reviewed-on: https://codeberg.org/Ven/cord/pulls/6 Co-authored-by: Rini <rini@rinici.de> Co-committed-by: Rini <rini@rinici.de>
139 lines
3.0 KiB
TypeScript
139 lines
3.0 KiB
TypeScript
/*
|
|
* Vencord, a modification for Discord's desktop app
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
export const defaultRules = [
|
|
"action_object_map",
|
|
"action_type_map",
|
|
"action_ref_map",
|
|
"spm@*.aliexpress.com",
|
|
"scm@*.aliexpress.com",
|
|
"aff_platform",
|
|
"aff_trace_key",
|
|
"algo_expid@*.aliexpress.*",
|
|
"algo_pvid@*.aliexpress.*",
|
|
"btsid",
|
|
"ws_ab_test",
|
|
"pd_rd_*@amazon.*",
|
|
"_encoding@amazon.*",
|
|
"psc@amazon.*",
|
|
"tag@amazon.*",
|
|
"ref_@amazon.*",
|
|
"pf_rd_*@amazon.*",
|
|
"pf@amazon.*",
|
|
"crid@amazon.*",
|
|
"keywords@amazon.*",
|
|
"sprefix@amazon.*",
|
|
"sr@amazon.*",
|
|
"ie@amazon.*",
|
|
"node@amazon.*",
|
|
"qid@amazon.*",
|
|
"callback@bilibili.com",
|
|
"cvid@bing.com",
|
|
"form@bing.com",
|
|
"sk@bing.com",
|
|
"sp@bing.com",
|
|
"sc@bing.com",
|
|
"qs@bing.com",
|
|
"pq@bing.com",
|
|
"sc_cid",
|
|
"mkt_tok",
|
|
"trk",
|
|
"trkCampaign",
|
|
"ga_*",
|
|
"gclid",
|
|
"gclsrc",
|
|
"hmb_campaign",
|
|
"hmb_medium",
|
|
"hmb_source",
|
|
"spReportId",
|
|
"spJobID",
|
|
"spUserID",
|
|
"spMailingID",
|
|
"itm_*",
|
|
"s_cid",
|
|
"elqTrackId",
|
|
"elqTrack",
|
|
"assetType",
|
|
"assetId",
|
|
"recipientId",
|
|
"campaignId",
|
|
"siteId",
|
|
"mc_cid",
|
|
"mc_eid",
|
|
"pk_*",
|
|
"sc_campaign",
|
|
"sc_channel",
|
|
"sc_content",
|
|
"sc_medium",
|
|
"sc_outcome",
|
|
"sc_geo",
|
|
"sc_country",
|
|
"nr_email_referer",
|
|
"vero_conv",
|
|
"vero_id",
|
|
"yclid",
|
|
"_openstat",
|
|
"mbid",
|
|
"cmpid",
|
|
"cid",
|
|
"c_id",
|
|
"campaign_id",
|
|
"Campaign",
|
|
"hash@ebay.*",
|
|
"fb_action_ids",
|
|
"fb_action_types",
|
|
"fb_ref",
|
|
"fb_source",
|
|
"fbclid",
|
|
"refsrc@facebook.com",
|
|
"hrc@facebook.com",
|
|
"gs_l",
|
|
"gs_lcp@google.*",
|
|
"ved@google.*",
|
|
"ei@google.*",
|
|
"sei@google.*",
|
|
"gws_rd@google.*",
|
|
"gs_gbg@google.*",
|
|
"gs_mss@google.*",
|
|
"gs_rn@google.*",
|
|
"_hsenc",
|
|
"_hsmi",
|
|
"__hssc",
|
|
"__hstc",
|
|
"hsCtaTracking",
|
|
"source@sourceforge.net",
|
|
"position@sourceforge.net",
|
|
"t@*.twitter.com",
|
|
"s@*.twitter.com",
|
|
"ref_*@*.twitter.com",
|
|
"tt_medium",
|
|
"tt_content",
|
|
"lr@yandex.*",
|
|
"redircnt@yandex.*",
|
|
"feature@youtube.com",
|
|
"kw@youtube.com",
|
|
"wt_zmc",
|
|
"utm_source",
|
|
"utm_content",
|
|
"utm_medium",
|
|
"utm_campaign",
|
|
"utm_term",
|
|
"si@open.spotify.com",
|
|
"igshid",
|
|
];
|