From c2e70c9137f3382d84d1a3f9b8e5fed80d150f6d Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Wed, 25 Feb 2026 19:29:56 -0500 Subject: [PATCH] Update rules --- README.md | 180 ++++++------- data/data.minify.json | 2 +- data/data_in_readable_form.txt | 456 ++++++++++++++++++++++++++++----- data/rules.minify.hash | 2 +- 4 files changed, 493 insertions(+), 147 deletions(-) diff --git a/README.md b/README.md index 1ad7b3e..2ddad99 100644 --- a/README.md +++ b/README.md @@ -1,87 +1,93 @@ -This is a fork of [ClearURLs/Addon](https://github.com/ClearURLs/Addon) with some modifications. The -main change is moving the data/rule files to this repo instead of loading them from a gitlab page -that the original author hosts. This removes the risk of a bad actor gaining control over that URL -and making changes that lead to arbitrary code execution or redirecting your browser to arbitrary -URLs. - -## Install - -**Firefox** -* I have a signed xpi that you can immediately install. Open `build/` and drag the xpi into Firefox. - It may take a few seconds for the browser to display the extension installation dialog box. -* You can also find the signed Firefox files in the project's [Releases page](https://github.com/sir-pinecone/clear-urls-browser-extension/releases). - -**Chrome** -* Go to Chrome extensions page. -* Toggle the developer mode (top-right of page). -* Click `Load unpacked`. -* Select this project's root folder. - -## Development - -### Local Testing - -* Firefox: open about:debugging and click `Load Temporary Add-on...` then select `manifest.json` file. -* Chrome: follow the install steps from above. - -## Signing and Building - -### Firefox -* Install web-ext with `$ npm install --global web-ext` -* Generate an unlisted xpi with: - `web-ext sign --api-key --api-secret ` - * You can obtain these keys from https://addons.mozilla.org/en-US/developers/addon/api/key/ -* The signed xpi will be in `web-ext-artifacts/`. Drag this into Firefox to install it. -* Alternatively use the private sign-firefox-extension.sh script (not included in the repo) which places the xpi in `build/`. - ---- - -**ClearURLs** is an add-on based on the new WebExtensions technology and is optimized for *Firefox* and *Chrome* based browsers. - -This extension will automatically remove tracking elements from URLs to help protect your privacy when browse through the Internet, -which is regularly updated by us and can be found [here](https://gitlab.com/anti-tracking/ClearURLs/rules/-/raw/master/data.min.json). - -## Application -Many websites use tracking elements in the URL (e.g. `https://example.com?utm_source=newsletter1&utm_medium=email&utm_campaign=sale`) to mark your online activity. -All that tracking code is not necessary for a website to be displayed or work correctly and can therefore be removed—that is exactly what ClearURLs does. - -Another common example are Amazon URLs. If you search for a product on Amazon you will see a very long URL, such as: -``` -https://www.amazon.com/dp/exampleProduct/ref=sxin_0_pb?__mk_de_DE=ÅMÅŽÕÑ&keywords=tea&pd_rd_i=exampleProduct&pd_rd_r=8d39e4cd-1e4f-43db-b6e7-72e969a84aa5&pd_rd_w=1pcKM&pd_rd_wg=hYrNl&pf_rd_p=50bbfd25-5ef7-41a2-68d6-74d854b30e30&pf_rd_r=0GMWD0YYKA7XFGX55ADP&qid=1517757263&rnid=2914120011 -``` - -Indeed most of the above URL is tracking code. Once ClearURLs has cleaned the address, it will look like this: -`https://www.amazon.com/dp/exampleProduct` - -## Features - -* Removes tracking from URLs automatically in the background -* Blocks some common ad domains (optional) -* Has a built-in tool to clean up multiple URLs at once -* Supports redirection to the destination, without tracking services as middleman -* Adds an entry to the context menu so that links can be copied quickly and cleanly -* Blocks hyperlink auditing, also known as *ping tracking* (see also [this article](https://html.spec.whatwg.org/multipage/links.html#hyperlink-auditing)) -* Prevents ETag tracking -* Prevents tracking injection over history API (see also: [The replaceState() method](https://developer.mozilla.org/en-US/docs/Web/API/History_API#The_replaceState()_method)) -* Prevents Google from rewriting the search results (to include tracking elements) -* Prevents Yandex from rewriting the search results (to include tracking elements) - -## Permissons -Reasoning for needed permissions can be found under [here](https://gitlab.com/KevinRoebert/ClearUrls/issues/159). - -## Copyright -We use some third-party scripts in our add-on. The authors and licenses are listed below. -- [WebExtension browser API Polyfill](https://github.com/mozilla/webextension-polyfill) | - Copyright by Mozilla | - [MPL-2.0](https://github.com/mozilla/webextension-polyfill/blob/master/LICENSE) -- [Bootstrap v4.3.1](https://github.com/twbs/bootstrap/tree/v4.3.1) | - Copyright 2011-2016 Twitter, Inc. | - [MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE) -- [jQuery v3.4.1](https://github.com/jquery/jquery/tree/3.4.1) | - Copyright JS Foundation and other contributors | - [MIT](https://jquery.org/license/) -- [DataTables v1.10.20](https://github.com/DataTables/DataTables/tree/master) | Copyright (c) 2008-2015 SpryMedia Limited | [MIT](https://datatables.net/license/) -- [Pickr v1.7.0](https://github.com/Simonwep/pickr/tree/1.7.0) | Copyright (c) 2018 - 2020 Simon Reinisch | - [MIT](https://github.com/Simonwep/pickr/blob/master/LICENSE) -- [Font Awesome v5.12.0](https://github.com/FortAwesome/Font-Awesome/tree/5.12.0) | Copyright (c) @fontawesome | - [Font Awesome Free License](https://github.com/FortAwesome/Font-Awesome/blob/master/LICENSE.txt) +This is a fork of [ClearURLs/Addon](https://github.com/ClearURLs/Addon) with some modifications. The +main change is moving the data/rule files to this repo instead of loading them from a gitlab page +that the original author hosts. This removes the risk of a bad actor gaining control over that URL +and making changes that lead to arbitrary code execution or redirecting your browser to arbitrary +URLs. + +## Install + +**Firefox** +* I have a signed xpi that you can immediately install. Open `build/` and drag the xpi into Firefox. + It may take a few seconds for the browser to display the extension installation dialog box. +* You can also find the signed Firefox files in the project's [Releases page](https://github.com/sir-pinecone/clear-urls-browser-extension/releases). + +**Chrome** +* Go to Chrome extensions page. +* Toggle the developer mode (top-right of page). +* Click `Load unpacked`. +* Select this project's root folder. + +## Development + +### Local Testing + +* Firefox: open about:debugging and click `Load Temporary Add-on...` then select `manifest.json` file. +* Chrome: follow the install steps from above. + +## Signing and Building + +### Firefox +* Install web-ext with `$ npm install --global web-ext` +* Generate an unlisted xpi with: + `web-ext sign --api-key --api-secret ` + * You can obtain these keys from https://addons.mozilla.org/en-US/developers/addon/api/key/ +* The signed xpi will be in `web-ext-artifacts/`. Drag this into Firefox to install it. +* Alternatively use the private sign-firefox-extension.sh script (not included in the repo) which places the xpi in `build/`. + +## Updating rules + +* Get the upstream rules and put it in data/data_in_readable_form.txt +* Minify that and put it in data/data.minify.json +* Get the sha256 hash of the minified file and add it to rules.minify.hash + +--- + +**ClearURLs** is an add-on based on the new WebExtensions technology and is optimized for *Firefox* and *Chrome* based browsers. + +This extension will automatically remove tracking elements from URLs to help protect your privacy when browse through the Internet, +which is regularly updated by us and can be found [here](https://gitlab.com/anti-tracking/ClearURLs/rules/-/raw/master/data.min.json). + +## Application +Many websites use tracking elements in the URL (e.g. `https://example.com?utm_source=newsletter1&utm_medium=email&utm_campaign=sale`) to mark your online activity. +All that tracking code is not necessary for a website to be displayed or work correctly and can therefore be removed—that is exactly what ClearURLs does. + +Another common example are Amazon URLs. If you search for a product on Amazon you will see a very long URL, such as: +``` +https://www.amazon.com/dp/exampleProduct/ref=sxin_0_pb?__mk_de_DE=ÅMÅŽÕÑ&keywords=tea&pd_rd_i=exampleProduct&pd_rd_r=8d39e4cd-1e4f-43db-b6e7-72e969a84aa5&pd_rd_w=1pcKM&pd_rd_wg=hYrNl&pf_rd_p=50bbfd25-5ef7-41a2-68d6-74d854b30e30&pf_rd_r=0GMWD0YYKA7XFGX55ADP&qid=1517757263&rnid=2914120011 +``` + +Indeed most of the above URL is tracking code. Once ClearURLs has cleaned the address, it will look like this: +`https://www.amazon.com/dp/exampleProduct` + +## Features + +* Removes tracking from URLs automatically in the background +* Blocks some common ad domains (optional) +* Has a built-in tool to clean up multiple URLs at once +* Supports redirection to the destination, without tracking services as middleman +* Adds an entry to the context menu so that links can be copied quickly and cleanly +* Blocks hyperlink auditing, also known as *ping tracking* (see also [this article](https://html.spec.whatwg.org/multipage/links.html#hyperlink-auditing)) +* Prevents ETag tracking +* Prevents tracking injection over history API (see also: [The replaceState() method](https://developer.mozilla.org/en-US/docs/Web/API/History_API#The_replaceState()_method)) +* Prevents Google from rewriting the search results (to include tracking elements) +* Prevents Yandex from rewriting the search results (to include tracking elements) + +## Permissons +Reasoning for needed permissions can be found under [here](https://gitlab.com/KevinRoebert/ClearUrls/issues/159). + +## Copyright +We use some third-party scripts in our add-on. The authors and licenses are listed below. +- [WebExtension browser API Polyfill](https://github.com/mozilla/webextension-polyfill) | + Copyright by Mozilla | + [MPL-2.0](https://github.com/mozilla/webextension-polyfill/blob/master/LICENSE) +- [Bootstrap v4.3.1](https://github.com/twbs/bootstrap/tree/v4.3.1) | + Copyright 2011-2016 Twitter, Inc. | + [MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE) +- [jQuery v3.4.1](https://github.com/jquery/jquery/tree/3.4.1) | + Copyright JS Foundation and other contributors | + [MIT](https://jquery.org/license/) +- [DataTables v1.10.20](https://github.com/DataTables/DataTables/tree/master) | Copyright (c) 2008-2015 SpryMedia Limited | [MIT](https://datatables.net/license/) +- [Pickr v1.7.0](https://github.com/Simonwep/pickr/tree/1.7.0) | Copyright (c) 2018 - 2020 Simon Reinisch | + [MIT](https://github.com/Simonwep/pickr/blob/master/LICENSE) +- [Font Awesome v5.12.0](https://github.com/FortAwesome/Font-Awesome/tree/5.12.0) | Copyright (c) @fontawesome | + [Font Awesome Free License](https://github.com/FortAwesome/Font-Awesome/blob/master/LICENSE.txt) diff --git a/data/data.minify.json b/data/data.minify.json index a14da9b..d763b20 100644 --- a/data/data.minify.json +++ b/data/data.minify.json @@ -1 +1 @@ -{"providers":{"amazon":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}","rules":["p[fd]_rd_[a-z]*","qid","srs?","__mk_[a-z]{1,3}_[a-z]{1,3}","spIA","ms3_c","[a-z%0-9]*ie","refRID","colii?d","[^a-z%0-9]adId","qualifier","_encoding","smid","field-lbr_brands_browse-bin","ref_?","th","sprefix","crid","keywords","cv_ct_[a-z]+","linkCode","creativeASIN","ascsubtag","aaxitk","hsa_cr_id","sb-ci-[a-z]+","rnid","dchild","camp","creative","s","content-id"],"rawRules":["\\/ref=[^/?]*"],"referralMarketing":["tag","ascsubtag"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/gp\\/.*?(?:redirector.html|cart\\/ajax-update.html|video\\/api\\/)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/(?:hz\\/reviews-render\\/ajax\\/|message-us\\?|s\\?)"]},"amazon search":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/s\\?","rules":["p[fd]_rd_[a-z]*","qid","srs?","__mk_[a-z]{1,3}_[a-z]{1,3}","spIA","ms3_c","[a-z%0-9]*ie","refRID","colii?d","[^a-z%0-9]adId","qualifier","_encoding","smid","field-lbr_brands_browse-bin","ref_?","th","sprefix","crid","cv_ct_[a-z]+","linkCode","creativeASIN","ascsubtag","aaxitk","hsa_cr_id","sb-ci-[a-z]+","rnid","dchild","camp","creative"],"rawRules":["\\/ref=[^/?]*"],"referralMarketing":["tag"]},"fls-na.amazon":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?fls-na\\.amazon(?:\\.[a-z]{2,}){1,}"},"google":{"forceRedirection":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}","rules":["ved","bi[a-z]*","gfe_[a-z]*","ei","source","gs_[a-z]*","site","oq","esrc","uact","cd","cad","gws_[a-z]*","atyp","vet","_u","je","dcr","ie","sei","sa","dpr","btn[a-z]*","usg","cd","cad","uact","aqs","sourceid","sxsrf","rlz","i-would-rather-use-firefox","pcampaignid"],"referralMarketing":["referrer"],"exceptions":["^https?:\\/\\/mail\\.google\\.com\\/mail\\/u\\/","^https?:\\/\\/(?:docs|accounts)\\.google(?:\\.[a-z]{2,}){1,}","^https?:\\/\\/([a-z0-9-\\.])*(chat|drive)\\.google\\.com\\/videoplayback","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}(?:\\/upload)?\\/drive\\/","^https?:\\/\\/news\\.google\\.com.*\\?hl=.","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/s\\?tbm=map.*?gs_[a-z]*=.","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:complete\\/search|setprefs|searchbyimage)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:appsactivity|aclk\\?)"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/url\\?.*?(?:url|q)=(https?[^&]+)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/.*?adurl=([^&]+)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/amp\\/s\\/([^&]+)"]},"googleSearch":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/search\\?","rules":["client","sclient"]},"googlesyndication":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googlesyndication\\.com"},"doubleclick":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?doubleclick(?:\\.[a-z]{2,}){1,}","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?doubleclick(?:\\.[a-z]{2,}){1,}\\/.*?tag_for_child_directed_treatment=;%3F([^&]*)"]},"googleadservices":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googleadservices\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googleadservices\\.com\\/.*?adurl=([^&]*)"]},"globalRules":{"urlPattern":".*","rules":["(?:%3F)?utm(?:_[a-z_]*)?","(?:%3F)?ga_[a-z_]+","(?:%3F)?yclid","(?:%3F)?_openstat","(?:%3F)?fb_action_(?:types|ids)","(?:%3F)?fb_(?:source|ref)","(?:%3F)?fbclid","(?:%3F)?action_(?:object|type|ref)_map","(?:%3F)?gs_l","(?:%3F)?mkt_tok","(?:%3F)?hmb_(?:campaign|medium|source)","(?:%3F)?gclid","(?:%3F)?otm_[a-z_]*","(?:%3F)?cmpid","(?:%3F)?os_ehash","(?:%3F)?_ga","(?:%3F)?_gl","(?:%3F)?__twitter_impression","(?:%3F)?wt_?z?mc","(?:%3F)?wtrid","(?:%3F)?[a-z]?mc","(?:%3F)?dclid","Echobox","(?:%3F)?spm","(?:%3F)?vn(?:_[a-z]*)+","(?:%3F)?tracking_source","(?:%3F)?ceneo_spo","(?:%3F)?itm_(?:campaign|medium|source)","(?:%3F)?__hsfp","(?:%3F)?__hssc","(?:%3F)?__hstc","(?:%3F)?_hsenc","(?:%3F)?__s","(?:%3F)?hsCtaTracking","(?:%3F)?mc_(?:eid|cid|tc)","(?:%3F)?ml_subscriber","(?:%3F)?ml_subscriber_hash","(?:%3F)?msclkid","(?:%3F)?oly_anon_id","(?:%3F)?oly_enc_id","(?:%3F)?rb_clickid","(?:%3F)?s_cid","(?:%3F)?vero_conv","(?:%3F)?vero_id","(?:%3F)?wickedid","(?:%3F)?twclid"],"referralMarketing":["(?:%3F)?ref_?","(?:%3F)?referrer"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?matrix\\.org\\/_matrix\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(?:cloudflare\\.com|prismic\\.io|tangerine\\.ca|gitlab\\.com)","^https?:\\/\\/myaccount.google(?:\\.[a-z]{2,}){1,}","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gcsip\\.(?:com|nl)[^?]*\\?.*?&?ref_?=.","^https?:\\/\\/[^/]+/[^/]+/[^/]+\\/-\\/refs\\/switch[^?]*\\?.*?&?ref_?=.","^https?:\\/\\/bugtracker\\.[^/]*\\/[^?]+\\?.*?&?ref_?=[^/?&]*","^https?:\\/\\/comment-cdn\\.9gag\\.com\\/.*?comment-list.json\\?","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?battle\\.net\\/login","^https?:\\/\\/blizzard\\.com\\/oauth2","^https?:\\/\\/kreditkarten-banking\\.lbb\\.de","^https?:\\/\\/www\\.tinkoff\\.ru","^https?:\\/\\/www\\.cyberport\\.de\\/adscript\\.php","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tweakers\\.net\\/ext\\/lt\\.dsp\\?.*?(?:%3F)?&?ref_?=.","^https?:\\/\\/git(lab)?\\.[^/]*\\/[^?]+\\?.*?&?ref_?=[^/?&]*","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/message-us\\?","^https?:\\/\\/authorization\\.td\\.com","^https?:\\/\\/support\\.steampowered\\.com","^https?:\\/\\/privacy\\.vakmedianet\\.nl\\/.*?ref=","^https?:\\/\\/sso\\.serverplan\\.com\\/manage2fa\\/check\\?ref=","^https?:\\/\\/login\\.meijer\\.com\\/.*?\\?ref=","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/(?:login_alerts|ajax|should_add_browser)/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/groups\\/member_bio\\/bio_dialog\\/","^https?:\\/\\/api\\.taiga\\.io","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gog\\.com\\/click\\.html","^https?:\\/\\/login\\.progressive\\.com","^https?:\\/\\/www\\.sephora\\.com\\/api\\/","^https?:\\/\\/www\\.contestgirl\\.com","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?agenciatributaria\\.gob\\.es","^https?:\\/\\/login\\.ingbank\\.pl","^wss?:\\/\\/(?:[a-z0-9-]+\\.)*?zoom\\.us","^https?:\\/\\/api\\.bilibili\\.com","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?onet\\.pl\\/[^?]*\\?.*?utm_campaign=.","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?stripe\\.com\\/[^?]+.*?&?referrer=[^/?&]*","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lichess\\.org\\/login.*?&?referrer=.*?","^https?:\\/\\/like.co\\/api\\/like\\/likebutton\\/[^?]+.*?&?referrer=[^/?&]*","^https?:\\/\\/button.like.co\\/in\\/.*?&?referrer=[^/?&]*","^https?:\\/\\/www\\.mma\\.go\\.kr","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?github\\.com","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?billiger\\.de\\/.*?mc=","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?\\.youtrack\\.cloud"]},"adtech":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?adtech(?:\\.[a-z]{2,}){1,}"},"contentpass":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?contentpass\\.(?:net|de)"},"bf-ad":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bf-ad(?:\\.[a-z]{2,}){1,}"},"amazon-adsystem":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon-adsystem(?:\\.[a-z]{2,}){1,}","exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon-adsystem(?:\\.[a-z]{2,}){1,}\\/v3\\/oor\\?"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon-adsystem(?:\\.[a-z]{2,}){1,}\\/x\\/c\\/.+?\\/([^&]+)"]},"adsensecustomsearchads":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?adsensecustomsearchads(?:\\.[a-z]{2,}){1,}"},"youtube":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com","rules":["feature","gclid","kw"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/signin\\?.*?"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/redirect?.*?q=([^&]*)"]},"youtube_pagead":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/pagead"},"youtube_apiads":{"completeProvider":true,"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/api\\/stats\\/ads"},"facebook":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com","rules":["hc_[a-z_%\\[\\]0-9]*","[a-z]*ref[a-z]*","__tn__","eid","__(?:xts|cft)__(?:\\[|%5B)\\d(?:\\]|%5D)","comment_tracking","dti","app","video_source","ftentidentifier","pageid","padding","ls_ref","action_history","tracking","referral_code","referral_story_type"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/.*?(plugins|ajax)\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/dialog\\/(?:share|send)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/groups\\/member_bio\\/bio_dialog\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/photo\\.php\\?","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/privacy\\/specific_audience_selector_dialog\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/photo\\/download\\/"],"redirections":["^https?:\\/\\/l[a-z]?\\.facebook\\.com/l\\.php\\?.*?u=(https?%3A%2F%2F[^&]*)"]},"twitter":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?twitter.com","rules":["(?:ref_?)?src","s","cn","ref_url","t"],"exceptions":["^https?:\\/\\/twitter.com\\/i\\/redirect"]},"reddit":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?reddit.com","rules":["%24deep_link","\\$deep_link","correlation_id","ref_campaign","ref_source","%243p","\\$3p","%24original_url","\\$original_url","_branch_match_id"],"redirections":["^https?:\\/\\/out\\.reddit\\.com\\/.*?url=([^&]*)","^https?:\\/\\/click\\.redditmail\\.com\\/.*?url=([^&]*)"]},"netflix":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?netflix.com","rules":["trackId","tctx","jb[a-z]*?"]},"techcrunch":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?techcrunch\\.com","rules":["ncid","sr","sr_share"]},"bing":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bing(?:\\.[a-z]{2,}){1,}","rules":["cvid","form","sk","sp","sc","qs","qp"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bing(?:\\.[a-z]{2,}){1,}\\/WS\\/redirect\\/"]},"tweakers":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tweakers\\.net","rules":["nb","u"]},"twitch":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?twitch\\.com","rules":["tt_medium","tt_content"]},"vivaldi":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?vivaldi\\.com","rules":["pk_campaign","pk_kwd"]},"indeed":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?indeed\\.com","rules":["from","alid","[a-z]*tk"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?indeed\\.com\\/rc\\/clk"]},"hhdotru":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hh\\.ru","rules":["vss","t","swnt","grpos","ptl","stl","exp","plim"]},"ebay":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?ebay(?:\\.[a-z]{2,}){1,}","rules":["_trkparms","_trksid","_from","hash"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?rover\\.ebay(?:\\.[a-z]{2,}){1,}\\/rover.*mpre=([^&]*)"]},"cnet":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cnet\\.com","rules":["ftag"]},"imdb.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?imdb\\.com","rules":["ref_","pf_rd_[a-z]*"]},"govdelivery.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?govdelivery\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?links\\.govdelivery\\.com.*\\/track\\?.*(https?:\\/\\/.*)"]},"walmart.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?walmart\\.com","rules":["u1","ath[a-z]*"]},"net-parade.it":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?net\\-parade\\.it","rules":["pl"]},"prvnizpravy.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?prvnizpravy\\.cz","rules":["xid"]},"youku.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youku\\.com","rules":["tpa"]},"nytimes.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?nytimes\\.com","rules":["smid"]},"tchibo.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tchibo\\.de","rules":["wbdcd"]},"steampowered":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?steampowered\\.com","rules":["snr"]},"steamcommunity":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?steamcommunity\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?steamcommunity\\.com\\/linkfilter\\/\\?url=([^&]*)"]},"mozaws.net":{"urlPattern":"https?:\\/\\/outgoing\\.prod\\.mozaws\\.net\\/","redirections":["https?:\\/\\/[^/]+\\/v1\\/[0-9a-f]{64}\\/(.*)"]},"shutterstock.com":{"urlPattern":"https?:\\/\\/([a-z0-9-.]*\\.)shutterstock\\.com","rules":["src"]},"mozilla.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozilla\\.org","rules":["src","platform","redirect_source"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozilla.org\\/api"]},"readdc.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?readdc\\.com","rules":["ref"]},"dailycodingproblem.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dailycodingproblem\\.com","rules":["email"]},"github.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?github\\.com","rules":["email_token","email_source"]},"deviantart.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?deviantart\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?deviantart\\.com\\/.*?\\/outgoing\\?(.*)"]},"site2.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site2\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site2\\.com.*?\\?.*=(.*)"]},"site.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site\\.com.*?\\?to=([^&]*)"]},"site3.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site3\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site3\\.com.*?\\?r=([^&]*)"]},"aliexpress":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?aliexpress(?:\\.[a-z]{2,}){1,}","rules":["ws_ab_test","btsid","algo_expid","algo_pvid","gps-id","scm[_a-z-]*","cv","af","mall_affr","sk","dp","terminal_id","aff_request_id"]},"mozillazine.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozillazine\\.org","rules":["sid"]},"9gag.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?9gag\\.com","rules":["ref"],"exceptions":["^https?:\\/\\/comment-cdn\\.9gag\\.com\\/.*?comment-list.json\\?"]},"linksynergy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linksynergy\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linksynergy\\.com\\/.*?murl=([^&]*)"]},"giphy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?giphy\\.com","rules":["ref"]},"gate.sc":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gate\\.sc","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gate\\.sc\\/.*?url=([^&]*)"]},"vk.com":{"urlPattern":"^https?:\\/\\/vk\\.com","redirections":["^https?:\\/\\/vk\\.com\\/away\\.php\\?to=([^&]*)"]},"woot.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?woot\\.com","rules":["ref_?"]},"vitamix.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?vitamix\\.com","rules":["_requestid","cid","dl","di","sd","bi"]},"curseforge.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?curseforge\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?curseforge\\.com\\/linkout\\?remoteUrl=([^&]*)"]},"messenger.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?messenger\\.com","redirections":["^https?:\\/\\/l\\.messenger\\.com\\/l\\.php\\?u=([^&]*)"]},"nypost.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?nypost\\.com","rules":["__twitter_impression"]},"ozon.ru":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?ozon\\.ru","rules":["partner"]},"norml.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?norml\\.org","rules":["link_id","can_id","source","email_referrer","email_subject"]},"LinkedIn":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linkedin\\.com","rules":["refId","trk","li[a-z]{2}","trackingId"]},"LinkedIn Learning":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linkedin\\.com\\/learning","rules":["u"]},"smartredirect.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?smartredirect\\.de","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?smartredirect\\.de.*?url=([^&]*)"]},"SPIEGEL ONLINE":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?spiegel\\.de","rules":["b"]},"rutracker.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?rutracker\\.org","redirections":[".*url=([^&]*)"]},"instagram":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?instagram\\.com","rules":["igshid"],"redirections":[".*u=([^&]*)"]},"lazada.com.my":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lazada\\.com\\.my","rules":["ad_src","did","pa","mp","impsrc","cid","pos"]},"imgsrc.ru":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?imgsrc\\.ru","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dlp\\.imgsrc\\.ru\\/go\\/\\d+\\/\\d+\\/\\d+\\/([^&]*)"]},"boredpanda.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?boredpanda\\.com","rules":["h"]},"awstrack.me":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?awstrack\\.me","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?awstrack\\.me\\/.*\\/(https?.*?)\\/"]},"exactag.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?exactag\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?exactag\\.com.*url=([^&]*)"]},"bahn.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bahn\\.de","rules":["dbkanal_[0-9]{3}"]},"disq.us":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?disq\\.us","rules":["cuid"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?disq\\.us\\/.*?url=([^&]*)%3A"]},"anonym.to":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?anonym\\.to","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?anonym\\.to.*\\?([^&]*)"]},"moosejaw.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?moosejaw\\.com","rules":["cm_lm","cm_mmc","webUserId","spMailingID","spUserID","spJobID","spReportId"]},"spotify.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?spotify\\.com","rules":["si"]},"yandex":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(?:yandex(?:\\.[a-z]{2,}){1,}|ya\\.ru)","rules":["lr","redircnt"]},"healio.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?healio\\.com","rules":["ecp","m_bt"]},"zoho.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?zoho\\.com","rules":["iref"]},"snapchat.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?snapchat\\.com","rules":["sc_referrer","sc_ua"]},"medium.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?medium\\.com","rules":["source"]},"swp.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?swp\\.de","rules":["source"]},"wps.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?wps\\.com","rules":["from"]},"accounts.firefox.com":{"urlPattern":"^https?:\\/\\/(?:accounts\\.)?firefox\\.com","rules":["context","entrypoint","form_type"]},"support.mozilla.org":{"urlPattern":"^https?:\\/\\/(?:support\\.)?mozilla\\.org","rules":["as"]},"ClearURLsTest":{"urlPattern":"^https?:\\/\\/kevinroebert\\.gitlab\\.io\\/ClearUrls\\/void\\/index\\.html","rules":["test"],"redirections":["^https?:\\/\\/kevinroebert\\.gitlab\\.io\\/ClearUrls\\/void\\/index\\.html\\?url=([^&]*)"]},"ClearURLsTestBlock":{"completeProvider":true,"urlPattern":"^https?:\\/\\/kevinroebert\\.gitlab\\.io\\/ClearUrls\\/void\\/block\\.svg"},"ClearURLsTest2":{"urlPattern":"^https?:\\/\\/test\\.clearurls\\.xyz\\/void\\/index\\.html","rules":["test"],"redirections":["^https?:\\/\\/test\\.clearurls\\.xyz\\/void\\/index\\.html\\?url=([^&]*)"]},"ClearURLsTestBlock2":{"completeProvider":true,"urlPattern":"^https?:\\/\\/test\\.clearurls\\.xyz\\/void\\/block\\.svg"},"diepresse.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?diepresse\\.com","rules":["from","xtor","xt_at"]},"newsletter.lidl.com":{"urlPattern":"^https?:\\/\\/newsletter\\.lidl(?:\\.[a-z]{2,}){1,}","rules":["x"]},"allegro.pl":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?allegro\\.pl","rules":["reco_id","sid"]},"backcountry.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?backcountry\\.com","rules":["CMP_SKU","MER","mr:trackingCode","mr:device","mr:adType","iv_","CMP_ID","k_clickid","rmatt","INT_ID","ti","fl"],"referralMarketing":["mr:referralID"]},"meetup.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?meetup\\.com","rules":["rv","_xtd"]},"apple.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?apple\\.com","rules":["app","ign-itsc[a-z]+"]},"alabout.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?alabout\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?alabout\\.com.*url=([^&]*)"]},"newyorker.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?newyorker\\.com","rules":["source","bxid","cndid","esrc","mbid"]},"gog.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gog\\.com","rules":["track_click","link_id"]},"tradedoubler.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tradedoubler\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tradedoubler\\.com.*(?:url|_td_deeplink)=([^&]*)"]},"theguardian.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?theguardian\\.com","rules":["CMP"]},"srvtrck.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?srvtrck\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?srvtrck\\.com.*url=([^&]*)"]},"mysku.ru":{"urlPattern":"^https?:\\/\\/mysku\\.ru","redirections":["^https?:\\/\\/mysku\\.ru.*r=([^&]*)"]},"admitad.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?admitad\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?admitad\\.com.*ulp=([^&]*)"]},"taobao.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?taobao\\.com","rules":["price","sourceType","suid","ut_sk","un","share_crt_v","sp_tk","cpp","shareurl","short_name","app","scm[_a-z-]*","pvid","algo_expid","algo_pvid","ns","abbucket","ali_refid","ali_trackid","acm","utparam","pos","abtest","trackInfo","utkn","scene","mytmenu","turing_bucket","lygClk","impid","bftTag","bftRwd","spm","_u"]},"tmall.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tmall\\.com","rules":["price","sourceType","suid","ut_sk","un","share_crt_v","sp_tk","cpp","shareurl","short_name","app","scm[_a-z-]*","pvid","algo_expid","algo_pvid","ns","abbucket","ali_refid","ali_trackid","acm","utparam","pos","abtest","trackInfo","user_number_id","utkn","scene","mytmenu","turing_bucket","lygClk","impid","bftTag","bftRwd","activity_id"]},"tb.cn":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tb\\.cn","rules":["sm"]},"bilibili.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bilibili\\.com","rules":["callback","spm_id_from","from_source","from","seid","mid","share_source","msource","refer_from","share_from","share_medium","share_source","share_plat","share_tag","share_session_id","timestamp","unique_k","vd_source","plat_id","buvid","is_story_h5","up_id"],"exceptions":["^https?:\\/\\/api\\.bilibili\\.com","^https?:\\/\\/space\\.bilibili\\.com"]},"m.bilibili.com":{"urlPattern":"^https?:\\/\\/m\\.bilibili\\.com","rules":["bbid","ts"]},"live.bilibili.com":{"urlPattern":"^https?:\\/\\/live\\.bilibili\\.com","rules":["visit_id","session_id","broadcast_type","is_room_feed"]},"marketscreener.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?marketscreener\\.com","rules":["type_recherche","mots","noredirect","RewriteLast","lien","aComposeInputSearch","type_recherche_forum","add_mots","countview"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?marketscreener\\.com\\/search\\/\\?"]},"marketscreener.com search":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?marketscreener\\.com\\/search\\/\\?","rules":["type_recherche","noredirect","RewriteLast","lien","aComposeInputSearch","type_recherche_forum","countview"]},"bestbuy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bestbuy\\.com","rules":["irclickid","irgwc","loc","acampID","mpid","intl"]},"digidip.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?digidip\\.net","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?digidip\\.net.*url=([^&]*)"]},"tiktok.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tiktok\\.com","rules":["u_code","preview_pb","_d","timestamp","user_id","share_app_name","share_iid","source"]},"autoplus.fr":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?autoplus\\.fr","rules":["idprob","hash","sending_id","site_id","dr_tracker"]},"bigfishgames.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bigfishgames\\.com","rules":["pc","npc","npv[0-9]+","npi"],"rawRules":["\\?pc$"]},"dpbolvw.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dpbolvw\\.net","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dpbolvw\\.net.*url=([^&]*)"]},"humblebundle.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?humblebundle\\.com","referralMarketing":["partner"]},"cafepedagogique.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cafepedagogique\\.net","rules":["actId","actCampaignType","actSource"]},"bloculus.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bloculus\\.com","rules":["tl_[a-z_]+"]},"mailpanion.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailpanion\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailpanion\\.com.*destination=([^&]*)"]},"signtr.website":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?signtr\\.website","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?signtr\\.website.*redirect=([^&]*)"]},"mailtrack.io":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailtrack\\.io","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailtrack\\.io.*url=([^&]*)"]},"zillow.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?zillow\\.com","rules":["rtoken"]},"realtor.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?realtor\\.com","rules":["ex","identityID","MID","RID"]},"redfin.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?redfin\\.com","rules":["riftinfo"]},"epicgames.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?epicgames\\.com","rules":["epic_affiliate","epic_gameId"]},"onet.pl":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?onet\\.pl","rules":["srcc","utm_v","utm_medium","utm_source"]},"allrecipes.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?allrecipes\\.com","rules":["internalSource","referringId","referringContentType","clickId"]},"europe1.fr":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?europe1\\.fr","rules":["xtor"]},"effiliation.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?effiliation\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?effiliation\\.com.*url=([^&]*)"]},"argos.co.uk":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?argos\\.co\\.uk","rules":["istCompanyId","istFeedId","istItemId","istBid","clickOrigin"]},"hlserve.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hlserve\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hlserve\\.com.*dest=([^&]*)"]},"thunderbird.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?thunderbird\\.net","rules":["src"]},"cnbc.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cnbc\\.com","rules":["__source"]},"roblox.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?roblox\\.com","rules":["refPageId"]},"cell.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cell\\.com","rules":["_returnURL"]},"academic.oup.com":{"urlPattern":"^https?:\\/\\/academic\\.oup\\.com","rules":["redirectedFrom"]},"flexlinkspro.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?flexlinkspro\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?flexlinkspro\\.com.*url=([^&]*)"]},"agata88.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?agata88\\.com","rules":["source"]},"hs.fi":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hs\\.fi","rules":["share"]},"yle.fi":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?yle\\.fi","rules":["origin"]},"ccbill.com":{"urlPattern":"^https?:\\/\\/refer\\.ccbill\\.com","redirections":["^https?:\\/\\/refer\\.ccbill\\.com.*HTML=([^&]*)"]},"flipkart":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?flipkart\\.com","rules":["otracker.?","ssid","[cilp]id","marketplace","store","srno","store","ppn","ppt","fm","collection-tab-name","sattr\\[\\]","p\\[\\]","st"]},"idealo.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?idealo\\.de","rules":["sid","src","siteId","lcb","leadOutUrl","offerListId","osId","cancelUrl","disc"]},"idealo-partner.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?idealo-partner\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?idealo-partner\\.com.*trg=([^&]*)"]},"teletrader.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?teletrader\\.com","rules":["internal"]},"webgains.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?webgains\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?webgains\\.com.*wgtarget=([^&]*)"]},"deeplearning.ai":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?deeplearning\\.ai","rules":["ecid","_hsmi","_hsenc"]},"getpocket.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?getpocket\\.com","redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?getpocket\\.com.*url=([^&]*)"]},"gamespot.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gamespot\\.com","rules":["PostType","ServiceType","ftag","UniqueID","TheTime"]},"tokopedia.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tokopedia\\.com","rules":["src","trkid","whid"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tokopedia\\.com\\/promo.*r=([^&]*)"]},"wkorea.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?wkorea\\.com","rules":["ddw","ds_ch"]},"eonline.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?eonline\\.com","rules":["source","medium","content"]},"reuters.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?reuters\\.com","rules":["taid"]},"app.adjust.com":{"urlPattern":"^https?:\\/\\/app\\.adjust\\.com","redirections":["^https?:\\/\\/app\\.adjust\\.com.*redirect=([^&]*)"]},"change.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?change\\.org","rules":["source_location","psf_variant","share_intent"]},"ceneo.pl":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?ceneo\\.pl","rules":["tag"]},"wired.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?wired\\.com","rules":["intcid"]},"alibaba cloud arms":{"urlPattern":"^https?:\\/\\/arms-retcode\\.aliyuncs\\.com","rules":["pid","uid","tag","release","environment","sample","behavior","enableSPA","enableLinkTrace","page","begin","c2","c3","success","code","msg","api","traceId","pv_id","flag","sr","vp","ct","_v","sampling","dl","post_res"]},"nikkei":{"urlPattern":"^https?://(?:[a-z0-9-]+\\.)*?nikkei\\.co(?:m|\\.jp)","rules":["adid","i_cid","n_cid","waad"]},"weibo":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?weibo\\.(cn|com)","rules":["weibo_id","dt_dapp"]},"fiverr.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?fiverr\\.com","rules":["context_referrer","source","ref_ctx_id","funnel"]},"etsy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?etsy\\.com","rules":["click_key","click_sum","organic_search_click"]},"magento.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?magento\\.com","rules":["itm_campaign","itm_medium","itm_source","itm_term"]},"novinky.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?novinky\\.cz","rules":["dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id","source","seq_no"]},"aktualne.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?aktualne\\.cz","rules":["dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"]},"seznamzpravy.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?seznamzpravy\\.cz","rules":["dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id","source","seq_no"]},"billiger.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?billiger\\.de","rules":["log","p"]},"respekt.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?respekt\\.cz","rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"]},"faei.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?faei\\.cz","rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"]},"iprima.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?iprima\\.cz","rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"]},"nova.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?nova\\.cz","rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"]},"duckduckgo":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?duckduckgo\\.com","redirections":["^https?:\\/\\/duckduckgo\\.com\\/l\\/.*?uddg=([^&]+)"]},"mercadolibre":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mercadolibre\\.com","rules":["DEAL_ID","L","S","T","V","pdp_filters","position","search_layout","tracking_id","type","c_[_a-zA-Z]+","me\\.[_a-zA-Z]+","reco_[_a-zA-Z]+"]},"quizlet":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?quizlet\\.com","rules":["funnelUUID"]},"bbc":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bbc\\.com","rules":["xtor","at_[a-z_]+"]},"airbnb":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?airbnb\\.(com|ae|ca|co\\.in|co\\.nz|co\\.uk|co\\.za|com\\.au|com\\.mt|com\\.sg|de|gy|ie)","rules":["federated_search_id","search_type","source","source_impression_id"]},"partner-ads.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?partner-ads\\.com","redirections":["^https?:\\/\\/.*?partner-ads\\.com\\/.*?htmlurl=([^&]+)"]},"kahoot.it":{"urlPattern":"^https?://(?:[a-z0-9-]+\\.)*?kahoot\\.it","rules":["refer_method"]}}} +{"providers":{"amazon":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":["p[fd]_rd_[a-z]*","qid","srs?","__mk_[a-z]{1,3}_[a-z]{1,3}","spIA","ms3_c","[a-z%0-9]*ie","refRID","colii?d","[^a-z%0-9]adId","qualifier","_encoding","smid","field-lbr_brands_browse-bin","ref_?","th","sprefix","crid","keywords","cv_ct_[a-z]+","linkCode","creativeASIN","ascsubtag","aaxitk","hsa_cr_id","sb-ci-[a-z]+","rnid","dchild","camp","creative","content-id","dib","dib_tag","social_share","starsLeft","skipTwisterOG"],"referralMarketing":["tag","ascsubtag"],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/gp\\/.*?(?:redirector.html|cart\\/ajax-update.html|video\\/api\\/)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/(?:hz\\/reviews-render\\/ajax\\/|message-us\\?|s\\?)"],"rawRules":["\\/ref=[^/?]*"],"redirections":[],"forceRedirection":false},"msn":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?msn\\.com","completeProvider":false,"rules":["cvid","ocid"],"rawRules":[],"referralMarketing":[],"exceptions":[],"redirections":[],"forceRedirection":false},"amazon search":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/s\\?","completeProvider":false,"rules":["p[fd]_rd_[a-z]*","qid","srs?","__mk_[a-z]{1,3}_[a-z]{1,3}","spIA","ms3_c","[a-z%0-9]*ie","refRID","colii?d","[^a-z%0-9]adId","qualifier","_encoding","smid","field-lbr_brands_browse-bin","ref_?","th","sprefix","crid","cv_ct_[a-z]+","linkCode","creativeASIN","ascsubtag","aaxitk","hsa_cr_id","sb-ci-[a-z]+","rnid","dchild","camp","creative"],"referralMarketing":["tag"],"rawRules":["\\/ref=[^/?]*"],"exceptions":[],"redirections":[],"forceRedirection":false},"fls-na.amazon":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?fls-na\\.amazon(?:\\.[a-z]{2,}){1,}","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"google":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":["ved","bi[a-z]*","gfe_[a-z]*","ei","source","gs_[a-z]*","site","oq","esrc","uact","cd","cad","gws_[a-z]*","atyp","vet","_u","je","dcr","ie","sei","sa","dpr","btn[a-z]*","usg","cd","cad","uact","aqs","sourceid","sxsrf","rlz","i-would-rather-use-firefox","pcampaignid","sca_(?:esv|upv)","iflsig","fbs","ictx","cshid"],"referralMarketing":["referrer"],"rawRules":[],"exceptions":["^https?:\\/\\/mail\\.google\\.com\\/mail\\/u\\/","^https?:\\/\\/accounts\\.google\\.com\\/o\\/oauth2\\/","^https?:\\/\\/accounts\\.google\\.com\\/signin\\/oauth\\/","^https?:\\/\\/(?:docs|accounts)\\.google(?:\\.[a-z]{2,}){1,}","^https?:\\/\\/([a-z0-9-\\.])*(chat|drive)\\.google\\.com\\/videoplayback","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}(?:\\/upload)?\\/drive\\/","^https?:\\/\\/news\\.google\\.com.*\\?hl=.","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/s\\?tbm=map.*?gs_[a-z]*=.","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:complete\\/search|setprefs|searchbyimage)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:appsactivity|aclk\\?)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/safe[-]?browsing\\/([^&]+)"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/url\\?.*?(?:url|q)=(https?[^&]+)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/.*?adurl=([^&]+)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/amp\\/s\\/([^&]+)"],"forceRedirection":true},"googlesyndication":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googlesyndication\\.com","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"doubleclick":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?doubleclick(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?doubleclick(?:\\.[a-z]{2,}){1,}\\/.*?tag_for_child_directed_treatment=;%3F([^&]*)"],"forceRedirection":false},"googleadservices":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googleadservices\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googleadservices\\.com\\/.*?adurl=([^&]*)"],"forceRedirection":false},"globalRules":{"urlPattern":".*","completeProvider":false,"rules":["(?:%3F)?utm(?:_[a-z_]*)?","(?:%3F)?mtm(?:_[a-z_]*)?","(?:%3F)?ga_[a-z_]+","(?:%3F)?yclid","(?:%3F)?_openstat","(?:%3F)?fb_action_(?:types|ids)","(?:%3F)?fb_(?:source|ref)","(?:%3F)?fbclid","(?:%3F)?action_(?:object|type|ref)_map","(?:%3F)?gs_l","(?:%3F)?mkt_tok","(?:%3F)?hmb_(?:campaign|medium|source)","(?:%3F)?gclid","(?:%3F)?srsltid","(?:%3F)?otm_[a-z_]*","(?:%3F)?cmpid","(?:%3F)?os_ehash","(?:%3F)?_ga","(?:%3F)?_gl","(?:%3F)?__twitter_impression","(?:%3F)?wt_?z?mc","(?:%3F)?wtrid","(?:%3F)?[a-z]?mc","(?:%3F)?dclid","Echobox","(?:%3F)?spm","(?:%3F)?vn(?:_[a-z]*)+","(?:%3F)?tracking_source","(?:%3F)?ceneo_spo","(?:%3F)?itm_(?:campaign|medium|source)","(?:%3F)?__hsfp","(?:%3F)?__hssc","(?:%3F)?__hstc","(?:%3F)?_hsenc","(?:%3F)?__s","(?:%3F)?hsCtaTracking","(?:%3F)?mc_(?:eid|cid|tc)","(?:%3F)?ml_subscriber","(?:%3F)?ml_subscriber_hash","(?:%3F)?msclkid","(?:%3F)?oly_anon_id","(?:%3F)?oly_enc_id","(?:%3F)?rb_clickid","(?:%3F)?s_cid","(?:%3F)?vero_conv","(?:%3F)?vero_id","(?:%3F)?wickedid","(?:%3F)?twclid"],"referralMarketing":["(?:%3F)?ref_?","(?:%3F)?referrer"],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?matrix\\.org\\/_matrix\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(?:cloudflare\\.com|prismic\\.io|tangerine\\.ca|gitlab\\.com)","^https?:\\/\\/myaccount.google(?:\\.[a-z]{2,}){1,}","^https?:\\/\\/accounts.google(?:\\.[a-z]{2,}){1,}","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gcsip\\.(?:com|nl)[^?]*\\?.*?&?ref_?=.","^https?:\\/\\/[^/]+/[^/]+/[^/]+\\/-\\/refs\\/switch[^?]*\\?.*?&?ref_?=.","^https?:\\/\\/bugtracker\\.[^/]*\\/[^?]+\\?.*?&?ref_?=[^/?&]*","^https?:\\/\\/comment-cdn\\.9gag\\.com\\/.*?comment-list.json\\?","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?battle\\.net\\/login","^https?:\\/\\/blizzard\\.com\\/oauth2","^https?:\\/\\/kreditkarten-banking\\.lbb\\.de","^https?:\\/\\/www\\.tinkoff\\.ru","^https?:\\/\\/www\\.cyberport\\.de\\/adscript\\.php","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tweakers\\.net\\/ext\\/lt\\.dsp\\?.*?(?:%3F)?&?ref_?=.","^https?:\\/\\/git(lab)?\\.[^/]*\\/[^?]+\\?.*?&?ref_?=[^/?&]*","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/message-us\\?","^https?:\\/\\/authorization\\.td\\.com","^https?:\\/\\/support\\.steampowered\\.com","^https?:\\/\\/privacy\\.vakmedianet\\.nl\\/.*?ref=","^https?:\\/\\/sso\\.serverplan\\.com\\/manage2fa\\/check\\?ref=","^https?:\\/\\/login\\.meijer\\.com\\/.*?\\?ref=","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/(?:login_alerts|ajax|should_add_browser)/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/groups\\/member_bio\\/bio_dialog\\/","^https?:\\/\\/api\\.taiga\\.io","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gog\\.com\\/click\\.html","^https?:\\/\\/login\\.progressive\\.com","^https?:\\/\\/www\\.sephora\\.com\\/api\\/","^https?:\\/\\/www\\.contestgirl\\.com","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?agenciatributaria\\.gob\\.es","^https?:\\/\\/login\\.ingbank\\.pl","^wss?:\\/\\/(?:[a-z0-9-]+\\.)*?zoom\\.us","^https?:\\/\\/api\\.bilibili\\.com","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?onet\\.pl\\/[^?]*\\?.*?utm_campaign=.","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?stripe\\.com\\/[^?]+.*?&?referrer=[^/?&]*","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lichess\\.org\\/login.*?&?referrer=.*?","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?microsoft\\.com\\/.*?research\\/redirect","^https?:\\/\\/like.co\\/api\\/like\\/likebutton\\/[^?]+.*?&?referrer=[^/?&]*","^https?:\\/\\/button.like.co\\/in\\/.*?&?referrer=[^/?&]*","^https?:\\/\\/www\\.mma\\.go\\.kr","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?github\\.com","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?billiger\\.de\\/.*?mc=","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtrack\\.cloud","^https?:\\/\\/cu\\.bankid\\.com","^https?:\\/\\/login\\.aliexpress\\.us","^https?:\\/\\/ieeexplore\\.ieee\\.org","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?sendgb\\.com\\/upload\\/?.*?utm_source=","^https?:\\/\\/firebaseappdistribution\\.googleapis\\.com\\/app-binary-downloads\\/projects\\/?.*?utm_source=","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?irs\\.gov"],"redirections":[],"forceRedirection":false},"adtech":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?adtech(?:\\.[a-z]{2,}){1,}","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bf-ad":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bf-ad(?:\\.[a-z]{2,}){1,}","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"amazon-adsystem":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon-adsystem(?:\\.[a-z]{2,}){1,}","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon-adsystem(?:\\.[a-z]{2,}){1,}\\/v3\\/oor\\?"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon-adsystem(?:\\.[a-z]{2,}){1,}\\/x\\/c\\/.+?\\/([^&]+)"],"forceRedirection":false},"adsensecustomsearchads":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?adsensecustomsearchads(?:\\.[a-z]{2,}){1,}","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"youtube":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(youtube\\.com|youtu\\.be)","completeProvider":false,"rules":["feature","gclid","kw","si","pp"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/signin\\?.*?"],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/redirect?.*?q=([^&]*)"],"forceRedirection":false},"youtube_pagead":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/pagead","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"youtube_apiads":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/api\\/stats\\/ads","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"facebook":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com","completeProvider":false,"rules":["hc_[a-z_%\\[\\]0-9]*","[a-z]*ref[a-z]*","__tn__","eid","__(?:xts|cft)__(?:\\[|%5B)\\d(?:\\]|%5D)","comment_tracking","dti","app","video_source","ftentidentifier","pageid","padding","ls_ref","action_history","tracking","referral_code","referral_story_type","eav","sfnsn","idorvanity","wtsid","rdc","rdr","paipv","_nc_x","_rdr","mibextid"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/.*?(plugins|ajax)\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/dialog\\/(?:share|send)","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/groups\\/member_bio\\/bio_dialog\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/photo\\.php\\?","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/privacy\\/specific_audience_selector_dialog\\/","^https?:\\/\\/(?:[a-z0-9-]+\\.)*?facebook\\.com\\/photo\\/download\\/"],"redirections":["^https?:\\/\\/l[a-z]?\\.facebook\\.com/l\\.php\\?.*?u=(https?%3A%2F%2F[^&]*)"],"forceRedirection":false},"twitter":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?twitter.com","completeProvider":false,"rules":["(?:ref_?)?src","s","cn","ref_url","t"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/twitter.com\\/i\\/redirect"],"redirections":[],"forceRedirection":false},"x":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?x.com","completeProvider":false,"rules":["(?:ref_?)?src","s","cn","ref_url","t"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/x.com\\/i\\/redirect"],"redirections":[],"forceRedirection":false},"reddit":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?reddit.com","completeProvider":false,"rules":["%24deep_link","\\$deep_link","correlation_id","ref_campaign","ref_source","%243p","rdt","\\$3p","%24original_url","\\$original_url","_branch_match_id","share_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/out\\.reddit\\.com\\/.*?url=([^&]*)","^https?:\\/\\/click\\.redditmail\\.com\\/.*?url=([^&]*)"],"forceRedirection":false},"netflix":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?netflix.com","completeProvider":false,"rules":["trackId","tctx","jb[a-z]*?"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"techcrunch":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?techcrunch\\.com","completeProvider":false,"rules":["ncid","sr","sr_share","guccounter","guce_referrer","guce_referrer_sig"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bing":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bing(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":["cvid","sk","sp","sc","qs","qp"],"referralMarketing":["form"],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bing(?:\\.[a-z]{2,}){1,}\\/WS\\/redirect\\/"],"redirections":[],"forceRedirection":false},"tweakers":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tweakers\\.net","completeProvider":false,"rules":["nb","u"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"twitch":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?twitch\\.com","completeProvider":false,"rules":["tt_medium","tt_content"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"vivaldi":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?vivaldi\\.com","completeProvider":false,"rules":["pk_campaign","pk_kwd"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"indeed":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?indeed\\.com","completeProvider":false,"rules":["from","alid","[a-z]*tk"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?indeed\\.com\\/rc\\/clk"],"redirections":[],"forceRedirection":false},"hhdotru":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hh\\.ru","completeProvider":false,"rules":["vss","t","swnt","grpos","ptl","stl","exp","plim"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"ebay":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?ebay(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":["_trkparms","_trksid","_from","hash"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?rover\\.ebay(?:\\.[a-z]{2,}){1,}\\/rover.*mpre=([^&]*)"],"forceRedirection":false},"cnet":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cnet\\.com","completeProvider":false,"rules":["ftag"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"imdb.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?imdb\\.com","completeProvider":false,"rules":["ref_","pf_rd_[a-z]*"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"govdelivery.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?govdelivery\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?links\\.govdelivery\\.com.*\\/track\\?.*(https?:\\/\\/.*)"],"forceRedirection":false},"walmart.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?walmart\\.com","completeProvider":false,"rules":["u1","ath[a-z]*"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"net-parade.it":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?net\\-parade\\.it","completeProvider":false,"rules":["pl"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"prvnizpravy.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?prvnizpravy\\.cz","completeProvider":false,"rules":["xid"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"youku.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youku\\.com","completeProvider":false,"rules":["tpa"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"nytimes.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?nytimes\\.com","completeProvider":false,"rules":["smid"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"tchibo.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tchibo\\.de","completeProvider":false,"rules":["wbdcd"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"steampowered":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?steampowered\\.com","completeProvider":false,"rules":["snr"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"steamcommunity":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?steamcommunity\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?steamcommunity\\.com\\/linkfilter\\/\\?url=([^&]*)"],"forceRedirection":false},"mozaws.net":{"urlPattern":"https?:\\/\\/outgoing\\.prod\\.mozaws\\.net\\/","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["https?:\\/\\/[^/]+\\/v1\\/[0-9a-f]{64}\\/(.*)"],"forceRedirection":false},"shutterstock.com":{"urlPattern":"https?:\\/\\/([a-z0-9-.]*\\.)shutterstock\\.com","completeProvider":false,"rules":["src"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"mozilla.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozilla\\.org","completeProvider":false,"rules":["src","platform","redirect_source"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozilla.org\\/api"],"redirections":[],"forceRedirection":false},"readdc.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?readdc\\.com","completeProvider":false,"rules":["ref"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"dailycodingproblem.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dailycodingproblem\\.com","completeProvider":false,"rules":["email"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"github.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?github\\.com","completeProvider":false,"rules":["email_token","email_source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"deviantart.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?deviantart\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?deviantart\\.com\\/.*?\\/outgoing\\?(.*)"],"forceRedirection":false},"site2.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site2\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site2\\.com.*?\\?.*=(.*)"],"forceRedirection":false},"site.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site\\.com.*?\\?to=([^&]*)"],"forceRedirection":false},"site3.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site3\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?site3\\.com.*?\\?r=([^&]*)"],"forceRedirection":false},"aliexpress":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?aliexpress(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":["ws_ab_test","btsid","algo_expid","algo_pvid","gps-id","scm[_a-z-]*","cv","af","mall_affr","sk","dp","terminal_id","aff_request_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"mozillazine.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozillazine\\.org","completeProvider":false,"rules":["sid"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"9gag.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?9gag\\.com","completeProvider":false,"rules":["ref"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/comment-cdn\\.9gag\\.com\\/.*?comment-list.json\\?"],"redirections":[],"forceRedirection":false},"linksynergy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linksynergy\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linksynergy\\.com\\/.*?murl=([^&]*)"],"forceRedirection":false},"giphy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?giphy\\.com","completeProvider":false,"rules":["ref"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"gate.sc":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gate\\.sc","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gate\\.sc\\/.*?url=([^&]*)"],"forceRedirection":false},"vk.com":{"urlPattern":"^https?:\\/\\/vk\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/vk\\.com\\/away\\.php\\?to=([^&]*)"],"forceRedirection":false},"woot.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?woot\\.com","completeProvider":false,"rules":["ref_?"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"vitamix.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?vitamix\\.com","completeProvider":false,"rules":["_requestid","cid","dl","di","sd","bi"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"curseforge.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?curseforge\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?curseforge\\.com\\/linkout\\?remoteUrl=([^&]*)"],"forceRedirection":false},"messenger.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?messenger\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/l\\.messenger\\.com\\/l\\.php\\?u=([^&]*)"],"forceRedirection":false},"nypost.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?nypost\\.com","completeProvider":false,"rules":["__twitter_impression"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"ozon.ru":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?ozon\\.ru","completeProvider":false,"rules":["partner"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"norml.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?norml\\.org","completeProvider":false,"rules":["link_id","can_id","source","email_referrer","email_subject"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"LinkedIn":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linkedin\\.com","completeProvider":false,"rules":["refId","trk","li[a-z]{2}","trackingId"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"LinkedIn Learning":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?linkedin\\.com\\/learning","completeProvider":false,"rules":["u"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"smartredirect.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?smartredirect\\.de","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?smartredirect\\.de.*?url=([^&]*)"],"forceRedirection":false},"SPIEGEL ONLINE":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?spiegel\\.de","completeProvider":false,"rules":["b"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"rutracker.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?rutracker\\.org","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[".*url=([^&]*)"],"forceRedirection":false},"instagram":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?instagram\\.com","completeProvider":false,"rules":["igshid","igsh"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[".*u=([^&]*)"],"forceRedirection":false},"imgsrc.ru":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?imgsrc\\.ru","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dlp\\.imgsrc\\.ru\\/go\\/\\d+\\/\\d+\\/\\d+\\/([^&]*)"],"forceRedirection":false},"boredpanda.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?boredpanda\\.com","completeProvider":false,"rules":["h"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"awstrack.me":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?awstrack\\.me","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?awstrack\\.me\\/.*\\/(https?.*?)\\/"],"forceRedirection":false},"exactag.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?exactag\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?exactag\\.com.*url=([^&]*)"],"forceRedirection":false},"bahn.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bahn\\.de","completeProvider":false,"rules":["dbkanal_[0-9]{3}"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"disq.us":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?disq\\.us","completeProvider":false,"rules":["cuid"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?disq\\.us\\/.*?url=([^&]*)%3A"],"forceRedirection":false},"anonym.to":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?anonym\\.to","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?anonym\\.to.*\\?([^&]*)"],"forceRedirection":false},"moosejaw.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?moosejaw\\.com","completeProvider":false,"rules":["cm_lm","cm_mmc","webUserId","spMailingID","spUserID","spJobID","spReportId"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"80000hours.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?80000hours\\.org","completeProvider":false,"rules":["int_campaign"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"spotify.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?spotify\\.com","completeProvider":false,"rules":["si"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"yandex":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(?:yandex(?:\\.[a-z]{2,}){1,}|ya\\.ru)","completeProvider":false,"rules":["lr","redircnt"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"healio.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?healio\\.com","completeProvider":false,"rules":["ecp","m_bt"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"zoho.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?zoho\\.com","completeProvider":false,"rules":["iref"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"snapchat.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?snapchat\\.com","completeProvider":false,"rules":["sc_referrer","sc_ua"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"medium.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?medium\\.com","completeProvider":false,"rules":["source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"swp.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?swp\\.de","completeProvider":false,"rules":["source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"wps.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?wps\\.com","completeProvider":false,"rules":["from"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"accounts.firefox.com":{"urlPattern":"^https?:\\/\\/(?:accounts\\.)?firefox\\.com","completeProvider":false,"rules":["entrypoint","form_type"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"support.mozilla.org":{"urlPattern":"^https?:\\/\\/(?:support\\.)?mozilla\\.org","completeProvider":false,"rules":["as"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"ClearURLsTest":{"urlPattern":"^https?:\\/\\/kevinroebert\\.gitlab\\.io\\/ClearUrls\\/void\\/index\\.html","completeProvider":false,"rules":["test"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/kevinroebert\\.gitlab\\.io\\/ClearUrls\\/void\\/index\\.html\\?url=([^&]*)"],"forceRedirection":false},"ClearURLsTestBlock":{"urlPattern":"^https?:\\/\\/kevinroebert\\.gitlab\\.io\\/ClearUrls\\/void\\/block\\.svg","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"ClearURLsTest2":{"urlPattern":"^https?:\\/\\/test\\.clearurls\\.xyz\\/void\\/index\\.html","completeProvider":false,"rules":["test"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/test\\.clearurls\\.xyz\\/void\\/index\\.html\\?url=([^&]*)"],"forceRedirection":false},"ClearURLsTestBlock2":{"urlPattern":"^https?:\\/\\/test\\.clearurls\\.xyz\\/void\\/block\\.svg","completeProvider":true,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"diepresse.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?diepresse\\.com","completeProvider":false,"rules":["from","xtor","xt_at"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"newsletter.lidl.com":{"urlPattern":"^https?:\\/\\/newsletter\\.lidl(?:\\.[a-z]{2,}){1,}","completeProvider":false,"rules":["x"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"allegro.pl":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?allegro\\.pl","completeProvider":false,"rules":["reco_id","sid"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"backcountry.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?backcountry\\.com","completeProvider":false,"rules":["CMP_SKU","MER","mr:trackingCode","mr:device","mr:adType","iv_","CMP_ID","k_clickid","rmatt","INT_ID","ti","fl"],"referralMarketing":["mr:referralID"],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"meetup.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?meetup\\.com","completeProvider":false,"rules":["rv","_xtd"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"apple.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?apple\\.com","completeProvider":false,"rules":["app","ign-itsc[a-z]+"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"alabout.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?alabout\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?alabout\\.com.*url=([^&]*)"],"forceRedirection":false},"newyorker.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?newyorker\\.com","completeProvider":false,"rules":["source","bxid","cndid","esrc","mbid"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"gog.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gog\\.com","completeProvider":false,"rules":["track_click","link_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"tradedoubler.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tradedoubler\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tradedoubler\\.com.*(?:url|_td_deeplink)=([^&]*)"],"forceRedirection":false},"theguardian.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?theguardian\\.com","completeProvider":false,"rules":["CMP"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"srvtrck.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?srvtrck\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?srvtrck\\.com.*url=([^&]*)"],"forceRedirection":false},"mysku.ru":{"urlPattern":"^https?:\\/\\/mysku\\.ru","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/mysku\\.ru.*r=([^&]*)"],"forceRedirection":false},"admitad.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?admitad\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?admitad\\.com.*ulp=([^&]*)"],"forceRedirection":false},"taobao.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?taobao\\.com","completeProvider":false,"rules":["price","sourceType","suid","ut_sk","un","share_crt_v","sp_tk","cpp","shareurl","short_name","app","scm[_a-z-]*","pvid","algo_expid","algo_pvid","ns","abbucket","ali_refid","ali_trackid","acm","utparam","pos","abtest","trackInfo","utkn","scene","mytmenu","turing_bucket","lygClk","impid","bftTag","bftRwd","spm","_u"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"tmall.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tmall\\.com","completeProvider":false,"rules":["price","sourceType","suid","ut_sk","un","share_crt_v","sp_tk","cpp","shareurl","short_name","app","scm[_a-z-]*","pvid","algo_expid","algo_pvid","ns","abbucket","ali_refid","ali_trackid","acm","utparam","pos","abtest","trackInfo","user_number_id","utkn","scene","mytmenu","turing_bucket","lygClk","impid","bftTag","bftRwd","activity_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"tb.cn":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tb\\.cn","completeProvider":false,"rules":["sm"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bilibili.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bilibili\\.com","completeProvider":false,"rules":["callback","spm_id_from","from_source","from","seid","mid","share_source","msource","refer_from","share_from","share_medium","share_source","share_plat","share_tag","share_session_id","timestamp","unique_k","vd_source","plat_id","buvid","is_story_h5","up_id"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/api\\.bilibili\\.com","^https?:\\/\\/space\\.bilibili\\.com"],"redirections":[],"forceRedirection":false},"space.bilibili.com":{"urlPattern":"^https?:\\/\\/space\\.bilibili\\.com","completeProvider":false,"rules":["spm_id_from"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"m.bilibili.com":{"urlPattern":"^https?:\\/\\/m\\.bilibili\\.com","completeProvider":false,"rules":["bbid","ts"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"live.bilibili.com":{"urlPattern":"^https?:\\/\\/live\\.bilibili\\.com","completeProvider":false,"rules":["visit_id","session_id","broadcast_type","is_room_feed"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"marketscreener.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?marketscreener\\.com","completeProvider":false,"rules":["type_recherche","mots","noredirect","RewriteLast","lien","aComposeInputSearch","type_recherche_forum","add_mots","countview"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?marketscreener\\.com\\/search\\/\\?"],"redirections":[],"forceRedirection":false},"marketscreener.com search":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?marketscreener\\.com\\/search\\/\\?","completeProvider":false,"rules":["type_recherche","noredirect","RewriteLast","lien","aComposeInputSearch","type_recherche_forum","countview"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bestbuy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bestbuy\\.com","completeProvider":false,"rules":["irclickid","irgwc","loc","acampID","mpid","intl"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"digidip.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?digidip\\.net","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?digidip\\.net.*url=([^&]*)"],"forceRedirection":false},"tiktok.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tiktok\\.com","completeProvider":false,"rules":["u_code","preview_pb","_d","_t","_r","timestamp","user_id","share_app_name","share_iid","source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"xiaohongshu.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?xiaohongshu\\.com","completeProvider":false,"rules":["xhsshare","author_share","type","xsec_source","share_from_user_hidden","app_version","ignoreEngage","app_platform","apptime","appuid","shareRedId","share_id","exSource","verifyUuid","verifyType","verifyBiz"],"referralMarketing":[],"rawRules":[],"exceptions":["^https?:\\/\\/edith\\.xiaohongshu\\.com\\/api\\/sns\\/web\\/v1\\/user\\/hover_card"],"redirections":[],"forceRedirection":false},"autoplus.fr":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?autoplus\\.fr","completeProvider":false,"rules":["idprob","hash","sending_id","site_id","dr_tracker"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bigfishgames.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bigfishgames\\.com","completeProvider":false,"rules":["pc","npc","npv[0-9]+","npi"],"referralMarketing":[],"rawRules":["\\?pc$"],"exceptions":[],"redirections":[],"forceRedirection":false},"dpbolvw.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dpbolvw\\.net","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?dpbolvw\\.net.*url=([^&]*)"],"forceRedirection":false},"humblebundle.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?humblebundle\\.com","completeProvider":false,"rules":[],"referralMarketing":["partner"],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"cafepedagogique.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cafepedagogique\\.net","completeProvider":false,"rules":["actId","actCampaignType","actSource"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bloculus.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bloculus\\.com","completeProvider":false,"rules":["tl_[a-z_]+"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"mailpanion.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailpanion\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailpanion\\.com.*destination=([^&]*)"],"forceRedirection":false},"signtr.website":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?signtr\\.website","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?signtr\\.website.*redirect=([^&]*)"],"forceRedirection":false},"mailtrack.io":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailtrack\\.io","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mailtrack\\.io.*url=([^&]*)"],"forceRedirection":false},"zillow.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?zillow\\.com","completeProvider":false,"rules":["rtoken"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"realtor.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?realtor\\.com","completeProvider":false,"rules":["ex","identityID","MID","RID"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"redfin.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?redfin\\.com","completeProvider":false,"rules":["riftinfo"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"epicgames.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?epicgames\\.com","completeProvider":false,"rules":["epic_affiliate","epic_gameId"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"onet.pl":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?onet\\.pl","completeProvider":false,"rules":["srcc","utm_v","utm_medium","utm_source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"allrecipes.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?allrecipes\\.com","completeProvider":false,"rules":["internalSource","referringId","referringContentType","clickId"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"europe1.fr":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?europe1\\.fr","completeProvider":false,"rules":["xtor"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"effiliation.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?effiliation\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?effiliation\\.com.*url=([^&]*)"],"forceRedirection":false},"argos.co.uk":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?argos\\.co\\.uk","completeProvider":false,"rules":["istCompanyId","istFeedId","istItemId","istBid","clickOrigin"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"hlserve.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hlserve\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hlserve\\.com.*dest=([^&]*)"],"forceRedirection":false},"thunderbird.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?thunderbird\\.net","completeProvider":false,"rules":["src"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"cnbc.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cnbc\\.com","completeProvider":false,"rules":["__source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"roblox.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?roblox\\.com","completeProvider":false,"rules":["refPageId"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"cell.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?cell\\.com","completeProvider":false,"rules":["_returnURL"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"academic.oup.com":{"urlPattern":"^https?:\\/\\/academic\\.oup\\.com","completeProvider":false,"rules":["redirectedFrom"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"flexlinkspro.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?flexlinkspro\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?flexlinkspro\\.com.*url=([^&]*)"],"forceRedirection":false},"agata88.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?agata88\\.com","completeProvider":false,"rules":["source"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"hs.fi":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?hs\\.fi","completeProvider":false,"rules":["share"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"yle.fi":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?yle\\.fi","completeProvider":false,"rules":["origin"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"ccbill.com":{"urlPattern":"^https?:\\/\\/refer\\.ccbill\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/refer\\.ccbill\\.com.*HTML=([^&]*)"],"forceRedirection":false},"flipkart":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?flipkart\\.com","completeProvider":false,"rules":["otracker.?","ssid","[cilp]id","marketplace","store","srno","store","ppn","ppt","fm","collection-tab-name","sattr\\[\\]","p\\[\\]","st","qH","hpid","ctx","nnc"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"idealo.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?idealo\\.de","completeProvider":false,"rules":["sid","src","siteId","lcb","leadOutUrl","offerListId","osId","cancelUrl","disc"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"idealo-partner.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?idealo-partner\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?idealo-partner\\.com.*trg=([^&]*)"],"forceRedirection":false},"teletrader.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?teletrader\\.com","completeProvider":false,"rules":["internal"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"webgains.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?webgains\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?webgains\\.com.*wgtarget=([^&]*)"],"forceRedirection":false},"deeplearning.ai":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?deeplearning\\.ai","completeProvider":false,"rules":["ecid","_hsmi","_hsenc"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"getpocket.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?getpocket\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?getpocket\\.com.*url=([^&]*)"],"forceRedirection":false},"gamespot.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gamespot\\.com","completeProvider":false,"rules":["PostType","ServiceType","ftag","UniqueID","TheTime"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"tokopedia.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tokopedia\\.com","completeProvider":false,"rules":["src","trkid","whid"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":["^https?:\\/\\/(?:[a-z0-9-]+\\.)*?tokopedia\\.com\\/promo.*r=([^&]*)"],"forceRedirection":false},"wkorea.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?wkorea\\.com","completeProvider":false,"rules":["ddw","ds_ch"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"eonline.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?eonline\\.com","completeProvider":false,"rules":["source","medium","content"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"reuters.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?reuters\\.com","completeProvider":false,"rules":["taid"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"app.adjust.com":{"urlPattern":"^https?:\\/\\/app\\.adjust\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":["^https?:\\/\\/app\\.adjust\\.com.*redirect=([^&]*)"],"forceRedirection":false},"change.org":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?change\\.org","completeProvider":false,"rules":["source_location","psf_variant","share_intent"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"ceneo.pl":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?ceneo\\.pl","completeProvider":false,"rules":["tag"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"wired.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?wired\\.com","completeProvider":false,"rules":["intcid"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"alibaba cloud arms":{"urlPattern":"^https?:\\/\\/arms-retcode\\.aliyuncs\\.com","completeProvider":false,"rules":["pid","uid","tag","release","environment","sample","behavior","enableSPA","enableLinkTrace","page","begin","c2","c3","success","code","msg","api","traceId","pv_id","flag","sr","vp","ct","_v","sampling","dl","post_res"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"nikkei":{"urlPattern":"^https?://(?:[a-z0-9-]+\\.)*?nikkei\\.co(?:m|\\.jp)","completeProvider":false,"rules":["adid","i_cid","n_cid","waad"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"weibo":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?weibo\\.(cn|com)","completeProvider":false,"rules":["weibo_id","dt_dapp"],"referralMarketing":[],"exceptions":[],"rawRules":[],"redirections":[],"forceRedirection":false},"fiverr.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?fiverr\\.com","completeProvider":false,"rules":["context_referrer","source","ref_ctx_id","funnel"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"etsy.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?etsy\\.com","completeProvider":false,"rules":["click_key","click_sum","organic_search_click"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"magento.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?magento\\.com","completeProvider":false,"rules":["itm_campaign","itm_medium","itm_source","itm_term"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"novinky.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?novinky\\.cz","completeProvider":false,"rules":["dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id","source","seq_no"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"aktualne.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?aktualne\\.cz","completeProvider":false,"rules":["dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"seznamzpravy.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?seznamzpravy\\.cz","completeProvider":false,"rules":["dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id","source","seq_no"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"billiger.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?billiger\\.de","completeProvider":false,"rules":["log","p"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"respekt.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?respekt\\.cz","completeProvider":false,"rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"faei.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?faei\\.cz","completeProvider":false,"rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"iprima.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?iprima\\.cz","completeProvider":false,"rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"nova.cz":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?nova\\.cz","completeProvider":false,"rules":["sznclid","dop_ab_variant","dop_source_zone_name","dop_req_id","dop_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"duckduckgo":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?duckduckgo\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/duckduckgo\\.com\\/l\\/.*?uddg=([^&]+)"],"forceRedirection":false},"mercadolibre":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mercadoli[bv]re\\.com","completeProvider":false,"rules":["DEAL_ID","L","S","T","V","pdp_filters","position","search_layout","tracking_id","type","c_[_a-zA-Z]+","me\\.[_a-zA-Z]+","reco_[_a-zA-Z]+","ad_click_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"quizlet":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?quizlet\\.com","completeProvider":false,"rules":["funnelUUID"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"bbc":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bbc\\.com","completeProvider":false,"rules":["xtor","at_[a-z_]+"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"airbnb":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?airbnb\\.(com|ae|ca|co\\.in|co\\.nz|co\\.uk|co\\.za|com\\.au|com\\.mt|com\\.sg|de|gy|ie)","completeProvider":false,"rules":["federated_search_id","search_type","source","source_impression_id"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"partner-ads.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?partner-ads\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/.*?partner-ads\\.com\\/.*?htmlurl=([^&]+)"],"forceRedirection":false},"kahoot.it":{"urlPattern":"^https?://(?:[a-z0-9-]+\\.)*?kahoot\\.it","completeProvider":false,"rules":["refer_method"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"href.li":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?href\\.li","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/href\\.li\\/\\?(http.+)"],"forceRedirection":false},"adform.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?adform\\.net","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/track\\.adform\\.net\\/C\\/.*?ckurl=([^&]+)"],"forceRedirection":false},"artefact.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?artefact\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/.*?artefact\\.com\\/trck\\/.*?deeplinkurl=([^&]+)"],"forceRedirection":false},"awin1.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?awin1\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/.*?awin1\\.com\\/.*?ued=([^&]+)"],"forceRedirection":false},"telekom.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?telekom\\.de","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/aaa\\.telekom\\.de\\/trck\\/.*?deeplinkurl=([^&]+)"],"forceRedirection":false},"cc.loginfra.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?loginfra\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/cc\\.loginfra\\.com\\/.*?u=([^&]+)"],"forceRedirection":false},"t.umblr.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?umblr\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/t\\.umblr\\.com\\/redirect\\?z=([^&]+)"],"forceRedirection":false},"goodreads.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?goodreads\\.com","completeProvider":false,"rules":["from_search","from_srp","qid","rank","ac"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"sohu":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?sohu\\.com","completeProvider":false,"rules":["pvid","scm"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"shopee":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?shopee\\.(com|co\\.th|tw)","completeProvider":false,"rules":["publish_id","sp_atk","xptdk"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"lazada":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lazada\\.(com|co\\.th|co\\.id|com\\.my|com\\.ph|sg|vn)","completeProvider":false,"rules":["clickTrackInfo","abid","pvid","ad_src","spm","src","from","scm","pa","pid_pvid","did","mp","cid","impsrc","pos"],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":[],"forceRedirection":false},"pantip.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?pantip\\.com","completeProvider":false,"rules":[],"rawRules":["#lead.*"],"referralMarketing":[],"exceptions":[],"redirections":[],"forceRedirection":false},"skimresources.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?skimresources\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/go\\.skimresources\\.com\\/.*?url=([^&]+)"],"forceRedirection":false},"office-partner.de":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?office-partner\\.de","completeProvider":false,"rules":["sPartner","campaign"],"rawRules":[],"referralMarketing":[],"exceptions":[],"redirections":[],"forceRedirection":false},"mozgcp.net":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozgcp\\.net","completeProvider":false,"rules":[],"rawRules":[],"referralMarketing":[],"exceptions":[],"redirections":["^https?:\\/\\/prod\\.outgoing\\.prod\\.webservices\\.mozgcp\\.net\\/v1\\/.+?\\/([^&]+)"],"forceRedirection":false},"thetimes.co.uk":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?thetimes\\.co\\.uk","completeProvider":false,"rules":["shareToken"],"rawRules":[],"referralMarketing":[],"exceptions":[],"redirections":[],"forceRedirection":false},"metro.co.uk":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?metro\\.co\\.uk","completeProvider":false,"rules":["ito"],"rawRules":[],"referralMarketing":[],"exceptions":[],"redirections":[],"forceRedirection":false},"forbes.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?forbes\\.com","completeProvider":false,"rules":["sh"],"rawRules":[],"referralMarketing":[],"exceptions":[],"redirections":[],"forceRedirection":false},"viglink.com":{"urlPattern":"^https?:\\/\\/(?:[a-z0-9-]+\\.)*?viglink\\.com","completeProvider":false,"rules":[],"referralMarketing":[],"rawRules":[],"exceptions":[],"redirections":["^https?:\\/\\/redirect\\.viglink\\.com\\/.*?u=([^&]+)"],"forceRedirection":false}}} diff --git a/data/data_in_readable_form.txt b/data/data_in_readable_form.txt index 2d60bec..bdccb46 100644 --- a/data/data_in_readable_form.txt +++ b/data/data_in_readable_form.txt @@ -35,8 +35,12 @@ "dchild", "camp", "creative", - "s", - "content-id" + "content-id", + "dib", + "dib_tag", + "social_share", + "starsLeft", + "skipTwisterOG" ], "referralMarketing": [ "tag", @@ -52,6 +56,19 @@ "redirections": [], "forceRedirection": false }, + "msn": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?msn\\.com", + "completeProvider": false, + "rules": [ + "cvid", + "ocid" + ], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, "amazon search": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?amazon(?:\\.[a-z]{2,}){1,}\\/s\\?", "completeProvider": false, @@ -142,7 +159,12 @@ "sxsrf", "rlz", "i-would-rather-use-firefox", - "pcampaignid" + "pcampaignid", + "sca_(?:esv|upv)", + "iflsig", + "fbs", + "ictx", + "cshid" ], "referralMarketing": [ "referrer" @@ -150,13 +172,16 @@ "rawRules": [], "exceptions": [ "^https?:\\/\\/mail\\.google\\.com\\/mail\\/u\\/", + "^https?:\\/\\/accounts\\.google\\.com\\/o\\/oauth2\\/", + "^https?:\\/\\/accounts\\.google\\.com\\/signin\\/oauth\\/", "^https?:\\/\\/(?:docs|accounts)\\.google(?:\\.[a-z]{2,}){1,}", "^https?:\\/\\/([a-z0-9-\\.])*(chat|drive)\\.google\\.com\\/videoplayback", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}(?:\\/upload)?\\/drive\\/", "^https?:\\/\\/news\\.google\\.com.*\\?hl=.", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/s\\?tbm=map.*?gs_[a-z]*=.", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:complete\\/search|setprefs|searchbyimage)", - "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:appsactivity|aclk\\?)" + "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/(?:appsactivity|aclk\\?)", + "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/safe[-]?browsing\\/([^&]+)" ], "redirections": [ "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/url\\?.*?(?:url|q)=(https?[^&]+)", @@ -165,19 +190,6 @@ ], "forceRedirection": true }, - "googleSearch": { - "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?google(?:\\.[a-z]{2,}){1,}\\/search\\?", - "completeProvider": false, - "rules": [ - "client", - "sclient" - ], - "referralMarketing": [], - "rawRules": [], - "exceptions": [], - "redirections": [], - "forceRedirection": false - }, "googlesyndication": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?googlesyndication\\.com", "completeProvider": true, @@ -217,6 +229,7 @@ "completeProvider": false, "rules": [ "(?:%3F)?utm(?:_[a-z_]*)?", + "(?:%3F)?mtm(?:_[a-z_]*)?", "(?:%3F)?ga_[a-z_]+", "(?:%3F)?yclid", "(?:%3F)?_openstat", @@ -228,6 +241,7 @@ "(?:%3F)?mkt_tok", "(?:%3F)?hmb_(?:campaign|medium|source)", "(?:%3F)?gclid", + "(?:%3F)?srsltid", "(?:%3F)?otm_[a-z_]*", "(?:%3F)?cmpid", "(?:%3F)?os_ehash", @@ -272,6 +286,7 @@ "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?matrix\\.org\\/_matrix\\/", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(?:cloudflare\\.com|prismic\\.io|tangerine\\.ca|gitlab\\.com)", "^https?:\\/\\/myaccount.google(?:\\.[a-z]{2,}){1,}", + "^https?:\\/\\/accounts.google(?:\\.[a-z]{2,}){1,}", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?gcsip\\.(?:com|nl)[^?]*\\?.*?&?ref_?=.", "^https?:\\/\\/[^/]+/[^/]+/[^/]+\\/-\\/refs\\/switch[^?]*\\?.*?&?ref_?=.", "^https?:\\/\\/bugtracker\\.[^/]*\\/[^?]+\\?.*?&?ref_?=[^/?&]*", @@ -303,12 +318,19 @@ "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?onet\\.pl\\/[^?]*\\?.*?utm_campaign=.", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?stripe\\.com\\/[^?]+.*?&?referrer=[^/?&]*", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lichess\\.org\\/login.*?&?referrer=.*?", + "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?microsoft\\.com\\/.*?research\\/redirect", "^https?:\\/\\/like.co\\/api\\/like\\/likebutton\\/[^?]+.*?&?referrer=[^/?&]*", "^https?:\\/\\/button.like.co\\/in\\/.*?&?referrer=[^/?&]*", "^https?:\\/\\/www\\.mma\\.go\\.kr", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?github\\.com", "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?billiger\\.de\\/.*?mc=", - "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?\\.youtrack\\.cloud" + "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtrack\\.cloud", + "^https?:\\/\\/cu\\.bankid\\.com", + "^https?:\\/\\/login\\.aliexpress\\.us", + "^https?:\\/\\/ieeexplore\\.ieee\\.org", + "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?sendgb\\.com\\/upload\\/?.*?utm_source=", + "^https?:\\/\\/firebaseappdistribution\\.googleapis\\.com\\/app-binary-downloads\\/projects\\/?.*?utm_source=", + "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?irs\\.gov" ], "redirections": [], "forceRedirection": false @@ -323,16 +345,6 @@ "redirections": [], "forceRedirection": false }, - "contentpass": { - "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?contentpass\\.(?:net|de)", - "completeProvider": true, - "rules": [], - "referralMarketing": [], - "rawRules": [], - "exceptions": [], - "redirections": [], - "forceRedirection": false - }, "bf-ad": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bf-ad(?:\\.[a-z]{2,}){1,}", "completeProvider": true, @@ -368,12 +380,14 @@ "forceRedirection": false }, "youtube": { - "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com", + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(youtube\\.com|youtu\\.be)", "completeProvider": false, "rules": [ "feature", "gclid", - "kw" + "kw" , + "si", + "pp" ], "referralMarketing": [], "rawRules": [], @@ -425,7 +439,17 @@ "action_history", "tracking", "referral_code", - "referral_story_type" + "referral_story_type", + "eav", + "sfnsn", + "idorvanity", + "wtsid", + "rdc", + "rdr", + "paipv", + "_nc_x", + "_rdr", + "mibextid" ], "referralMarketing": [], "rawRules": [], @@ -460,6 +484,24 @@ "redirections": [], "forceRedirection": false }, + "x": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?x.com", + "completeProvider": false, + "rules": [ + "(?:ref_?)?src", + "s", + "cn", + "ref_url", + "t" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [ + "^https?:\\/\\/x.com\\/i\\/redirect" + ], + "redirections": [], + "forceRedirection": false + }, "reddit": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?reddit.com", "completeProvider": false, @@ -470,10 +512,12 @@ "ref_campaign", "ref_source", "%243p", + "rdt", "\\$3p", "%24original_url", "\\$original_url", - "_branch_match_id" + "_branch_match_id", + "share_id" ], "referralMarketing": [], "rawRules": [], @@ -504,7 +548,10 @@ "rules": [ "ncid", "sr", - "sr_share" + "sr_share", + "guccounter", + "guce_referrer", + "guce_referrer_sig" ], "referralMarketing": [], "rawRules": [], @@ -517,14 +564,15 @@ "completeProvider": false, "rules": [ "cvid", - "form", "sk", "sp", "sc", "qs", "qp" ], - "referralMarketing": [], + "referralMarketing": [ + "form" + ], "rawRules": [], "exceptions": [ "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?bing(?:\\.[a-z]{2,}){1,}\\/WS\\/redirect\\/" @@ -1140,7 +1188,8 @@ "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?instagram\\.com", "completeProvider": false, "rules": [ - "igshid" + "igshid", + "igsh" ], "referralMarketing": [], "rawRules": [], @@ -1150,24 +1199,6 @@ ], "forceRedirection": false }, - "lazada.com.my": { - "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lazada\\.com\\.my", - "completeProvider": false, - "rules": [ - "ad_src", - "did", - "pa", - "mp", - "impsrc", - "cid", - "pos" - ], - "referralMarketing": [], - "rawRules": [], - "exceptions": [], - "redirections": [], - "forceRedirection": false - }, "imgsrc.ru": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?imgsrc\\.ru", "completeProvider": false, @@ -1272,6 +1303,18 @@ "redirections": [], "forceRedirection": false }, + "80000hours.org": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?80000hours\\.org", + "completeProvider": false, + "rules": [ + "int_campaign" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, "spotify.com": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?spotify\\.com", "completeProvider": false, @@ -1375,7 +1418,6 @@ "urlPattern": "^https?:\\/\\/(?:accounts\\.)?firefox\\.com", "completeProvider": false, "rules": [ - "context", "entrypoint", "form_type" ], @@ -1774,6 +1816,18 @@ "redirections": [], "forceRedirection": false }, + "space.bilibili.com": { + "urlPattern": "^https?:\\/\\/space\\.bilibili\\.com", + "completeProvider": false, + "rules": [ + "spm_id_from" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, "m.bilibili.com": { "urlPattern": "^https?:\\/\\/m\\.bilibili\\.com", "completeProvider": false, @@ -1878,6 +1932,8 @@ "u_code", "preview_pb", "_d", + "_t", + "_r", "timestamp", "user_id", "share_app_name", @@ -1890,6 +1946,35 @@ "redirections": [], "forceRedirection": false }, + "xiaohongshu.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?xiaohongshu\\.com", + "completeProvider": false, + "rules": [ + "xhsshare", + "author_share", + "type", + "xsec_source", + "share_from_user_hidden", + "app_version", + "ignoreEngage", + "app_platform", + "apptime", + "appuid", + "shareRedId", + "share_id", + "exSource", + "verifyUuid", + "verifyType", + "verifyBiz" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [ + "^https?:\\/\\/edith\\.xiaohongshu\\.com\\/api\\/sns\\/web\\/v1\\/user\\/hover_card" + ], + "redirections": [], + "forceRedirection": false + }, "autoplus.fr": { "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?autoplus\\.fr", "completeProvider": false, @@ -2280,7 +2365,11 @@ "collection-tab-name", "sattr\\[\\]", "p\\[\\]", - "st" + "st", + "qH", + "hpid", + "ctx", + "nnc" ], "referralMarketing": [], "exceptions": [], @@ -2740,7 +2829,7 @@ "forceRedirection": false }, "mercadolibre": { - "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mercadolibre\\.com", + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mercadoli[bv]re\\.com", "completeProvider": false, "rules": [ "DEAL_ID", @@ -2755,7 +2844,8 @@ "type", "c_[_a-zA-Z]+", "me\\.[_a-zA-Z]+", - "reco_[_a-zA-Z]+" + "reco_[_a-zA-Z]+", + "ad_click_id" ], "referralMarketing": [], "rawRules": [], @@ -2826,6 +2916,256 @@ "exceptions": [], "redirections": [], "forceRedirection": false + }, + "href.li": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?href\\.li", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/href\\.li\\/\\?(http.+)" + ], + "forceRedirection": false + }, + "adform.net": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?adform\\.net", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/track\\.adform\\.net\\/C\\/.*?ckurl=([^&]+)" + ], + "forceRedirection": false + }, + "artefact.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?artefact\\.com", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/.*?artefact\\.com\\/trck\\/.*?deeplinkurl=([^&]+)" + ], + "forceRedirection": false + }, + "awin1.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?awin1\\.com", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/.*?awin1\\.com\\/.*?ued=([^&]+)" + ], + "forceRedirection": false + }, + "telekom.de": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?telekom\\.de", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/aaa\\.telekom\\.de\\/trck\\/.*?deeplinkurl=([^&]+)" + ], + "forceRedirection": false + }, + "cc.loginfra.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?loginfra\\.com", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/cc\\.loginfra\\.com\\/.*?u=([^&]+)" + ], + "forceRedirection": false + }, + "t.umblr.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?umblr\\.com", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/t\\.umblr\\.com\\/redirect\\?z=([^&]+)" + ], + "forceRedirection": false + }, + "goodreads.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?goodreads\\.com", + "completeProvider": false, + "rules": [ + "from_search", + "from_srp", + "qid", + "rank", + "ac" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "sohu": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?sohu\\.com", + "completeProvider": false, + "rules": [ + "pvid", + "scm" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "shopee": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?shopee\\.(com|co\\.th|tw)", + "completeProvider": false, + "rules": [ + "publish_id", + "sp_atk", + "xptdk" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "lazada": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?lazada\\.(com|co\\.th|co\\.id|com\\.my|com\\.ph|sg|vn)", + "completeProvider": false, + "rules": [ + "clickTrackInfo", + "abid", + "pvid", + "ad_src", + "spm", + "src", + "from", + "scm", + "pa", + "pid_pvid", + "did", + "mp", + "cid", + "impsrc", + "pos" + ], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "pantip.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?pantip\\.com", + "completeProvider": false, + "rules": [], + "rawRules": [ + "#lead.*" + ], + "referralMarketing": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "skimresources.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?skimresources\\.com", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/go\\.skimresources\\.com\\/.*?url=([^&]+)" + ], + "forceRedirection": false + }, + "office-partner.de": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?office-partner\\.de", + "completeProvider": false, + "rules": [ + "sPartner", + "campaign" + ], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "mozgcp.net": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?mozgcp\\.net", + "completeProvider": false, + "rules": [], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/prod\\.outgoing\\.prod\\.webservices\\.mozgcp\\.net\\/v1\\/.+?\\/([^&]+)" + ], + "forceRedirection": false + }, + "thetimes.co.uk": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?thetimes\\.co\\.uk", + "completeProvider": false, + "rules": [ + "shareToken" + ], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "metro.co.uk": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?metro\\.co\\.uk", + "completeProvider": false, + "rules": [ + "ito" + ], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "forbes.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?forbes\\.com", + "completeProvider": false, + "rules": [ + "sh" + ], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [], + "forceRedirection": false + }, + "viglink.com": { + "urlPattern": "^https?:\\/\\/(?:[a-z0-9-]+\\.)*?viglink\\.com", + "completeProvider": false, + "rules": [], + "referralMarketing": [], + "rawRules": [], + "exceptions": [], + "redirections": [ + "^https?:\\/\\/redirect\\.viglink\\.com\\/.*?u=([^&]+)" + ], + "forceRedirection": false } } } diff --git a/data/rules.minify.hash b/data/rules.minify.hash index 3b62677..4144d2c 100644 --- a/data/rules.minify.hash +++ b/data/rules.minify.hash @@ -1 +1 @@ -18ece9513135aefb68fdffa0e4d18b1ae441dc57076d1715bffb4bee27ec8963 +0721cbff905c1490080773a35344986d4155f02f6a405c522dfd1fc2057ab00b