Fix Quartz/qz.com (gdpr)

Removal of gdpr-cookie kept refreshing the page.
PS adblocker needs to block xhr-element: ||vent.qz.com/log$xhr,1p
This commit is contained in:
magnolia1234 2019-12-12 21:54:17 +01:00 committed by GitHub
parent 1836d1080a
commit 592c45ddb5

View File

@ -196,7 +196,8 @@ const remove_cookies = [
// select specific cookie(s) to hold from remove_cookies domains
const remove_cookies_select_hold = {
'washingtonpost.com': ['wp_gdpr']
'washingtonpost.com': ['wp_gdpr'],
'qz.com': ['gdpr']
}
// select only specific cookie(s) to drop from remove_cookies domains
@ -488,7 +489,7 @@ _gaq.push(['_trackPageview']);
function isSiteEnabled(details) {
var isEnabled = enabledSites.some(function(enabledSite) {
var useSite = details.url.indexOf("." + enabledSite) !== -1;
var useSite = (details.url.indexOf("." + enabledSite) !== -1 || details.url.indexOf("/" + enabledSite) !== -1);
if (enabledSite in restrictions) {
return useSite && details.url.indexOf(restrictions[enabledSite]) !== -1;
}