From 69471e208bb9b8cd5ffbc9aa24800d728dab182e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Berson?= Date: Mon, 29 Jul 2019 10:27:27 +0200 Subject: [PATCH] fix trackers database update --- background.js | 17 +- package-lock.json | 38 + package.json | 3 +- updater.js | 25 + whotracksme.json | 32238 +------------------------------------------- 5 files changed, 69 insertions(+), 32252 deletions(-) create mode 100644 updater.js diff --git a/background.js b/background.js index 92b7913..f2c71d9 100644 --- a/background.js +++ b/background.js @@ -1,5 +1,5 @@ import { chrome, browser } from './globals'; -import trackerData from './whotracksme.json'; +import companyHostnameMapping from './whotracksme.json'; import { cleanStorage, saveCookies, @@ -191,17 +191,6 @@ let cookieTable = {}; const parentTabMapping = {}; -// Create a mapping of hostname to company name -const company_hostname_mapping = {} - -Object.values(trackerData.trackers).forEach((info) => { - const company_name = info.company_id === null ? 'Unknown' : trackerData.companies[info.company_id].name; - info.domains.forEach(y => { - trackerDomains.push(y); - company_hostname_mapping[y] = company_name; - }); -}); - // Adding company name and tracker host. // Structure is: // refTP[url][company_name] => ['trackerdomain1', 'trackerdomain2']; @@ -588,9 +577,9 @@ function parseQueryString(q) { } function getCompanyName(hostname, partialHostName) { - if (company_hostname_mapping.hasOwnProperty(hostname) || company_hostname_mapping.hasOwnProperty(partialHostName)) { + if (companyHostnameMapping.hasOwnProperty(hostname) || companyHostnameMapping.hasOwnProperty(partialHostName)) { return { - company_name: company_hostname_mapping[hostname] || company_hostname_mapping[partialHostName], + company_name: companyHostnameMapping[hostname] || companyHostnameMapping[partialHostName], // tracker_company: e, // tracker_id: trackerData[e].id, tracker_host: hostname diff --git a/package-lock.json b/package-lock.json index 8a632e5..cb9637e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -710,6 +710,24 @@ "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", "dev": true }, + "axios": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.0.tgz", + "integrity": "sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==", + "dev": true, + "requires": { + "follow-redirects": "1.5.10", + "is-buffer": "^2.0.2" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz", + "integrity": "sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw==", + "dev": true + } + } + }, "babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", @@ -3653,6 +3671,26 @@ "integrity": "sha512-0Bk1AsliuYB550zr4JV9AYhsETsD3ELXUQzdXGJfIc1Ni/ukAfBdQInDhVMYJUaT2QxoamNslwkYF7MlOrPUwg==", "dev": true }, + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "dev": true, + "requires": { + "debug": "=3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", diff --git a/package.json b/package.json index 65de725..13c2915 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "watch": "rollup --config rollup.config.js --watch", "lint": "web-ext lint", "start": "concurrently 'npm run watch' 'web-ext run --source-dir .'", - "update-wtm": "curl 'https://whotracks.me/data/trackerdb.json' > whotracksme.json" + "update-wtm": "node updater.js" }, "repository": { "type": "git", @@ -33,6 +33,7 @@ }, "devDependencies": { "@ampproject/rollup-plugin-closure-compiler": "^0.10.0", + "axios": "^0.19.0", "concurrently": "^4.1.1", "rollup": "^1.17.0", "rollup-plugin-json": "^4.0.0", diff --git a/updater.js b/updater.js new file mode 100644 index 0000000..c7b5d13 --- /dev/null +++ b/updater.js @@ -0,0 +1,25 @@ +const fs = require("fs"); +const axios = require("axios"); + +async function update() { + // Fetch latest trackers data from whotracks.me + const { trackers, companies } = (await axios.get( + "https://whotracks.me/data/trackerdb.json" + )).data; + + // Create mapping from tracker domain to company name + const companyMapping = {}; + for (const [tracker, { company_id, domains }] of Object.entries(trackers)) { + const companyName = (companies[company_id] || { name: "unknown" }).name; + for (const domain of domains) { + companyMapping[domain] = companyName; + } + } + + // Save mapping on disk + fs.writeFileSync("whotracksme.json", JSON.stringify(companyMapping), { + encoding: "utf-8" + }); +} + +update(); diff --git a/whotracksme.json b/whotracksme.json index 6346b45..199cc7b 100644 --- a/whotracksme.json +++ b/whotracksme.json @@ -1,32237 +1 @@ -{ - "about": "WhoTracks.Me tracker database: whotracks.me", - "companies": { - " a&nn_investments ": { - "description": "A&NN Investments is an investment holding with focus on Russian market.", - "ghostery_id": null, - "iab_vendor": null, - "id": " a&nn_investments ", - "name": "A&NN Investments ", - "privacy_url": null, - "truste_type": null, - "website_url": "http://ann.ru/" - }, - "1000mercis": { - "description": null, - "ghostery_id": "2262", - "iab_vendor": 388, - "id": "1000mercis", - "name": "1000mercis", - "privacy_url": "http://ads.1000mercis.com/fr.html", - "truste_type": null, - "website_url": "http://www.1000mercis.com/" - }, - "1plusx": { - "description": null, - "ghostery_id": null, - "iab_vendor": 92, - "id": "1plusx", - "name": "1plusX AG", - "privacy_url": "https://www.1plusx.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.1plusx.com/" - }, - "24metrics": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "24metrics", - "name": "24metrics", - "privacy_url": null, - "truste_type": null, - "website_url": "https://24metrics.com/" - }, - "33across": { - "description": "33Across is a publisher technology platform that powers quality publishers to earn revenue, optimize yield, and gain actionable insights. ", - "ghostery_id": "375", - "iab_vendor": 58, - "id": "33across", - "name": "33Across", - "privacy_url": "http://www.33across.com/privacy-policy", - "truste_type": "Ad Platform", - "website_url": "http://33across.com/" - }, - "360i": { - "description": null, - "ghostery_id": "309", - "iab_vendor": null, - "id": "360i", - "name": "360i", - "privacy_url": "https://360i.com/about/privacy/", - "truste_type": null, - "website_url": "https://360i.com/" - }, - "6minutes": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "6minutes", - "name": "6 Minutes Media GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.6min.de/en/" - }, - "AO Kaspersky Lab": { - "description": "Kaspersky Lab is the world\u2019s largest privately held vendor of endpoint protection solutions. The company is ranked among the world\u2019s top four vendors of security solutions for endpoint users.", - "ghostery_id": null, - "iab_vendor": null, - "id": "AO Kaspersky Lab", - "name": "Kaspersky Lab", - "privacy_url": "https://support.kaspersky.com/general/privacy?_ga=2.82314078.972498666.1539343116-1330083114.1539343116", - "truste_type": null, - "website_url": "https://www.kaspersky.com/" - }, - "ab_tasty": { - "description": null, - "ghostery_id": "3037", - "iab_vendor": null, - "id": "ab_tasty", - "name": "AB Tasty", - "privacy_url": "https://www.abtasty.com/uk/terms-of-use/", - "truste_type": null, - "website_url": "https://www.abtasty.com/us/" - }, - "accengage": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "accengage", - "name": "Accengage", - "privacy_url": "https://www.accengage.com/privacy-policy/", - "truste_type": null, - "website_url": "" - }, - "acint": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "acint", - "name": "Acint", - "privacy_url": "http://acint.net/", - "truste_type": null, - "website_url": "http://acint.net/" - }, - "acrweb": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "acrweb", - "name": "ACRWEB", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ziyu.net/" - }, - "active_agent": { - "description": null, - "ghostery_id": null, - "iab_vendor": 40, - "id": "active_agent", - "name": "Active Agent AG", - "privacy_url": "http://www.active-agent.com/de/unternehmen/datenschutzerklaerung/", - "truste_type": null, - "website_url": "http://www.active-agent.com/" - }, - "activision_blizzard": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "activision_blizzard", - "name": "Activision Blizzard", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.activision.com/" - }, - "actu_cci": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "actu_cci", - "name": "ACTU/CCI", - "privacy_url": null, - "truste_type": null, - "website_url": "http://actu-cci.com/" - }, - "acuity_ads": { - "description": "AcuityAds is a technology company that enables marketers to connect intelligently with their most meaningful audiences through digital media.", - "ghostery_id": "1635", - "iab_vendor": 231, - "id": "acuity_ads", - "name": "Acuityads Inc.", - "privacy_url": "https://www.acuityads.com/privacy-policy/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "https://www.acuityads.com/" - }, - "acxiom": { - "description": "Acxiom is an enterprise data, analytics and software as a service company that uniquely fuses trust, experience and scale to fuel data-driven results. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "acxiom", - "name": "Acxiom", - "privacy_url": "https://www.acxiom.com/about-us/privacy/", - "truste_type": "Service Provider", - "website_url": "https://www.acxiom.com/" - }, - "ad4mat": { - "description": "AD4mat provides a consistently high sales volume in both performance display and retargeting. ", - "ghostery_id": "2191", - "iab_vendor": null, - "id": "ad4mat", - "name": "ad4mat", - "privacy_url": " http://www.ad4mat.com/en/privacy/", - "truste_type": "Ad Network", - "website_url": " http://www.ad4mat.com/en/" - }, - "ad6media": { - "description": null, - "ghostery_id": "1466", - "iab_vendor": 331, - "id": "ad6media", - "name": "ad6media", - "privacy_url": "https://www.ad6media.fr/privacy", - "truste_type": null, - "website_url": "https://www.ad6media.fr/" - }, - "ad_lightning": { - "description": "Custom-built to give Publishers & Ad Platforms the tools they need to find bad ads, along with the data and processes to remove them.", - "ghostery_id": null, - "iab_vendor": null, - "id": "ad_lightning", - "name": "Ad Lightning", - "privacy_url": "https://www.adlightning.com/privacy", - "truste_type": null, - "website_url": "https://www.adlightning.com/" - }, - "ad_river": { - "description": null, - "ghostery_id": "294", - "iab_vendor": null, - "id": "ad_river", - "name": "Ad River", - "privacy_url": "http://www.adriver.ru/about/privacy-en/", - "truste_type": null, - "website_url": "http://www.adriver.ru/" - }, - "adara_analytics": { - "description": "ADARA leverages global travel data to drive future business performance. ADARA's Magellan platform transforms loyalty, search and booking data into actionable knowledge that allows companies to better understand, reach and engage customers. The platform is fueled by first party data from more than 90 global travel brands, including United, Delta, Hyatt, Marriott and Hertz, while protecting consumer privacy. ", - "ghostery_id": "286", - "iab_vendor": 57, - "id": "adara_analytics", - "name": "ADARA MEDIA UNLIMITED", - "privacy_url": "https://adara.com/privacy-promise/", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://adara.com/" - }, - "adblade": { - "description": "Adblade is a content-style native ad platform enabling advertisers to reach users on top branded sites with the assurance of brand safety.", - "ghostery_id": "452", - "iab_vendor": null, - "id": "adblade", - "name": "Adblade", - "privacy_url": "https://adblade.com/doc/privacy", - "truste_type": "Ad Network", - "website_url": "https://adblade.com/" - }, - "adclear": { - "description": null, - "ghostery_id": "1787", - "iab_vendor": 299, - "id": "adclear", - "name": "AdClear GmbH", - "privacy_url": "https://www.adclear.de/datenschutzerklaerung/", - "truste_type": null, - "website_url": "http://www.adclear.de/en/home.html" - }, - "adelphic": { - "description": "Adelphic is a mobile advertising solutions company that enables brands to connect with people in meaningful ways. Our technology delivers the most valuable resources in the mobile marketing industry: Audience identification, segmentation and targeting without the need for a persistent identifier. We are a privately held firm with institutional investment from Matrix Partners and Google Ventures. ", - "ghostery_id": "3878", - "iab_vendor": 320, - "id": "adelphic", - "name": "Adelphic LLC", - "privacy_url": "https://adelphic.com/platform/privacy/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "http://www.adelphic.com/" - }, - "adform": { - "description": "Adform is the independent and open full stack ad-tech platform that encompasses creativity, data and trading, servicing media agencies, trading desks, brands and publishers globally. ", - "ghostery_id": "457", - "iab_vendor": 50, - "id": "adform", - "name": "Adform A/S", - "privacy_url": "https://site.adform.com/privacy-center/overview", - "truste_type": null, - "website_url": "http://site.adform.com/" - }, - "adgoal": { - "description": null, - "ghostery_id": "2082", - "iab_vendor": null, - "id": "adgoal", - "name": "adgoal", - "privacy_url": " https://www.adgoal.de/en/privacy.html", - "truste_type": null, - "website_url": "https://www.adgoal.de/en/" - }, - "adjust": { - "description": "Adjust is the industry leader in mobile measurement and fraud prevention.", - "ghostery_id": null, - "iab_vendor": null, - "id": "adjust", - "name": "Adjust GmbH", - "privacy_url": "https://www.adjust.com/terms/privacy-policy/", - "truste_type": null, - "website_url": "https://www.adjust.com/" - }, - "adknowledge": { - "description": "Adknowledge is a digital advertising technology company that specializes in video, social, apps or mobile, email and content recommendation.", - "ghostery_id": null, - "iab_vendor": null, - "id": "adknowledge", - "name": "Adknowledge", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.adknowledge.com/" - }, - "adloox": { - "description": null, - "ghostery_id": "1455", - "iab_vendor": 93, - "id": "adloox", - "name": "Adloox SA", - "privacy_url": "http://adloox.com/disclaimer", - "truste_type": null, - "website_url": "http://www.adloox.com" - }, - "admans": { - "description": null, - "ghostery_id": "4347", - "iab_vendor": null, - "id": "admans", - "name": "Admans", - "privacy_url": "http://www.admans.de/datenschutz/", - "truste_type": null, - "website_url": "http://admans.de/de.html" - }, - "admedo": { - "description": null, - "ghostery_id": null, - "iab_vendor": 151, - "id": "admedo", - "name": "Admedo Ltd", - "privacy_url": "https://www.admedo.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.admedo.com/" - }, - "admeta": { - "description": null, - "ghostery_id": "677", - "iab_vendor": null, - "id": "admeta", - "name": "AdMeta", - "privacy_url": "http://www.admeta.com/upload/Privacy%20Policy.pdf", - "truste_type": null, - "website_url": "http://www.admeta.com/" - }, - "admitad": { - "description": "Admitad is an affiliate network that provides technical and functional tools to help advertising campaigns get a large number of publishers. ", - "ghostery_id": "2202", - "iab_vendor": null, - "id": "admitad", - "name": "Admitad", - "privacy_url": "https://www.admitad.com/en/privacy/#", - "truste_type": "Ad Network", - "website_url": "https://www.admitad.com/en/#" - }, - "adnet.de": { - "description": null, - "ghostery_id": "2407", - "iab_vendor": null, - "id": "adnet.de", - "name": "adNET.de", - "privacy_url": "http://www.adnet.de/index-6_datenschutz.html", - "truste_type": null, - "website_url": "http://www.adnet.de" - }, - "adnologies_gmbh": { - "description": null, - "ghostery_id": "466", - "iab_vendor": null, - "id": "adnologies_gmbh", - "name": "ADNOLOGIES GmbH", - "privacy_url": "http://ads.heias.de/w3c/policy.html", - "truste_type": null, - "website_url": "http://www.adnologies.com/en/" - }, - "adobe": { - "description": "Adobe provides digital media and digital marketing solutions.", - "ghostery_id": "128", - "iab_vendor": null, - "id": "adobe", - "name": "Adobe", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "http://www.adobe.com/" - }, - "adocean": { - "description": null, - "ghostery_id": "468", - "iab_vendor": null, - "id": "adocean", - "name": "AdOcean", - "privacy_url": "http://adocean.cz/en/privacy.html", - "truste_type": null, - "website_url": "http://adocean.cz/en" - }, - "adotmob": { - "description": null, - "ghostery_id": null, - "iab_vendor": 272, - "id": "adotmob", - "name": "A.Mob", - "privacy_url": "https://adotmob.com/privacy.html", - "truste_type": null, - "website_url": "https://adotmob.com/index.html" - }, - "adpushup": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "adpushup", - "name": "AdPushUp, Inc.", - "privacy_url": "https://www.adpushup.com/privacy.php", - "truste_type": null, - "website_url": "https://www.adpushup.com/" - }, - "adroll": { - "description": null, - "ghostery_id": "412", - "iab_vendor": 130, - "id": "adroll", - "name": "AdRoll Inc", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adrollgroup.com/" - }, - "adskeeper": { - "description": null, - "ghostery_id": "2650", - "iab_vendor": null, - "id": "adskeeper", - "name": "Adskeeper", - "privacy_url": null, - "truste_type": null, - "website_url": "http://adskeeper.co.uk/" - }, - "adsnative": { - "description": null, - "ghostery_id": "3277", - "iab_vendor": null, - "id": "adsnative", - "name": "AdsNative", - "privacy_url": "http://adsnative.com/privacy-policy/", - "truste_type": null, - "website_url": "http://adsnative.com/" - }, - "adspirit": { - "description": null, - "ghostery_id": "1326", - "iab_vendor": 6, - "id": "adspirit", - "name": "AdSpirit GmbH", - "privacy_url": "http://www.adspirit.de/privacy", - "truste_type": null, - "website_url": "http://www.adspirit.de " - }, - "adspyglass": { - "description": null, - "ghostery_id": "4778", - "iab_vendor": null, - "id": "adspyglass", - "name": "AdSpyglass", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adspyglass.com/" - }, - "adtheorant": { - "description": null, - "ghostery_id": null, - "iab_vendor": 211, - "id": "adtheorant", - "name": "AdTheorent, Inc", - "privacy_url": "http://adtheorent.com/privacy-policy", - "truste_type": null, - "website_url": "http://adtheorent.com/" - }, - "adtiger": { - "description": "AdTiger is an established independent online marketer. Our broad portfolio includes more than 1,000 premium websites with about 5 billion monthly page impressions. Thus AdTiger is one of the largest German marketers. We offer our customers exclusive sites in addition to a number of theme channels and low-cost RON bookings for long range. Marketed to our website we offer fair condition models, especially a safe and predictable workload.", - "ghostery_id": "341", - "iab_vendor": null, - "id": "adtiger", - "name": "AdTiger", - "privacy_url": "http://www.adtiger.de/diverse-seiten/datenschutz9/", - "truste_type": "Ad Network", - "website_url": "http://www.adtiger.de" - }, - "adtrue": { - "description": null, - "ghostery_id": "4648", - "iab_vendor": null, - "id": "adtrue", - "name": "AdTrue", - "privacy_url": null, - "truste_type": null, - "website_url": "http://adtrue.com/" - }, - "adult_webmaster_empire": { - "description": null, - "ghostery_id": "1556", - "iab_vendor": null, - "id": "adult_webmaster_empire", - "name": "Adult Webmaster Empire", - "privacy_url": "http://www.awempire.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.awempire.com/?referral_rs=awempire" - }, - "adventori": { - "description": null, - "ghostery_id": "3265", - "iab_vendor": 27, - "id": "adventori", - "name": "ADventori SAS", - "privacy_url": "https://www.adventori.com/with-us/legal-notice/", - "truste_type": null, - "website_url": "https://www.adventori.com/" - }, - "adverserve": { - "description": "As one of the leading service company in the online marketing industry, we are the partner for everything related to the execution of advertising campaigns on the Internet. We focus all activities on providing our customers with the most functional and safest ad serving technology and highly qualified traffic manager.", - "ghostery_id": "2726", - "iab_vendor": null, - "id": "adverserve", - "name": "adverServe", - "privacy_url": "http://www.adverserve.com/fileadmin/adverserve/dokumente_download/datenschutzerklaerung_adverserve_29.8_RV_englisch.pdf", - "truste_type": "Ad Network", - "website_url": "http://www.adverserve.com/" - }, - "adverticum": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "adverticum", - "name": "Adverticum Zrt.", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adverticum.net/english/" - }, - "advertise.com": { - "description": "Advertise.com is an online advertising network -- bringing together advertisers, online advertising agencies, and publishers to boost their digital ROI.", - "ghostery_id": null, - "iab_vendor": null, - "id": "advertise.com", - "name": "Advertise.com", - "privacy_url": "http://www.advertise.com/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://www.advertise.com/" - }, - "advolution": { - "description": null, - "ghostery_id": "3036", - "iab_vendor": null, - "id": "advolution", - "name": "Advolution", - "privacy_url": "http://www.advolution.de/datenschutz.php", - "truste_type": null, - "website_url": "http://www.advolution.de" - }, - "adwebster": { - "description": "Adwebster is a technology company which specializes in the operation and maintenance of digital advertising networks.", - "ghostery_id": "3301", - "iab_vendor": null, - "id": "adwebster", - "name": "adwebster", - "privacy_url": "http://adwebster.com/Pages/about/Data-Protection-Policy.aspx", - "truste_type": "Ad Network", - "website_url": "http://adwebster.com" - }, - "adxpansion": { - "description": null, - "ghostery_id": "755", - "iab_vendor": null, - "id": "adxpansion", - "name": "AdXpansion", - "privacy_url": "http://www.adxpansion.com/en/index/privacy", - "truste_type": null, - "website_url": "http://www.adxpansion.com/" - }, - "adyoulike": { - "description": null, - "ghostery_id": "2629", - "iab_vendor": 259, - "id": "adyoulike", - "name": "ADYOULIKE SA", - "privacy_url": "https://www.adyoulike.com/privacy_policy.php", - "truste_type": null, - "website_url": "http://www.adyoulike.com/" - }, - "adzerk": { - "description": "Adzerk provides a suite of APIs for building your own ad server in weeks, not years ", - "ghostery_id": "989", - "iab_vendor": null, - "id": "adzerk", - "name": "Adzerk", - "privacy_url": " http://adzerk.com/privacy/ad-server/", - "truste_type": "Ad Server", - "website_url": "http://adzerk.com/" - }, - "affectv": { - "description": null, - "ghostery_id": "1267", - "iab_vendor": 178, - "id": "affectv", - "name": "Affectv Ltd", - "privacy_url": "https://affectv.com/privacy-policy", - "truste_type": null, - "website_url": "https://affectv.com/" - }, - "affimax": { - "description": null, - "ghostery_id": "2090", - "iab_vendor": null, - "id": "affimax", - "name": "AffiMax", - "privacy_url": "https://www.affimax.de/l/3-Datenschutz.html", - "truste_type": null, - "website_url": "https://www.affimax.de" - }, - "airpr": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "airpr", - "name": "AirPR Inc.", - "privacy_url": "https://airpr.com/privacy-policy/", - "truste_type": null, - "website_url": "https://airpr.com/" - }, - "akamai": { - "description": "Akamai\u00ae is the leading provider of cloud services for helping enterprises provide secure, high-performing user experiences on any device, anywhere. If you've ever shopped online, downloaded music, watched a web video or connected to work remotely, you've probably used Akamai's cloud platform.", - "ghostery_id": null, - "iab_vendor": null, - "id": "akamai", - "name": "Akamai Technologies", - "privacy_url": "https://www.akamai.com/us/en/privacy-policies/", - "truste_type": null, - "website_url": "https://www.akamai.com/" - }, - "akanoo": { - "description": null, - "ghostery_id": "3500", - "iab_vendor": null, - "id": "akanoo", - "name": "Akanoo", - "privacy_url": "http://www.akanoo.com/legal", - "truste_type": null, - "website_url": "http://www.akanoo.com/" - }, - "alibaba": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "alibaba", - "name": "Alibaba", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.alibaba.com/" - }, - "allegro.pl": { - "description": null, - "ghostery_id": "", - "iab_vendor": null, - "id": "allegro.pl", - "name": "Allegro", - "privacy_url": "https://allegro.pl/regulamin/pl#artykul-13.-prywatnosc-i-poufnosc", - "truste_type": null, - "website_url": "https://allegro.pl/" - }, - "amazon_associates": { - "description": "Amazon is an American electronic commerce and cloud computing company, the largest Internet retailer in the world as measured by revenue and market capitalization.", - "ghostery_id": "14", - "iab_vendor": null, - "id": "amazon_associates", - "name": "Amazon", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://affiliate-program.amazon.com/" - }, - "amplitude": { - "description": null, - "ghostery_id": "3070", - "iab_vendor": null, - "id": "amplitude", - "name": "Amplitude", - "privacy_url": "https://amplitude.com/privacy", - "truste_type": null, - "website_url": "https://amplitude.com/" - }, - "ancestry": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "ancestry", - "name": "Ancestry", - "privacy_url": "http://www.ancestry.com/cs/privacyphilosophy", - "truste_type": null, - "website_url": "http://www.ancestry.com/" - }, - "ancora": { - "description": null, - "ghostery_id": "4535", - "iab_vendor": null, - "id": "ancora", - "name": "Ancora", - "privacy_url": "http://www.ancoramediasolutions.com/j/privacy", - "truste_type": null, - "website_url": "http://www.ancoramediasolutions.com/" - }, - "andera_partners": { - "description": "Andera Partners is a private equity firm focused on early- and late-stage venture investments.", - "ghostery_id": null, - "iab_vendor": null, - "id": "andera_partners", - "name": "Andera Partners", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.anderapartners.com/en/" - }, - "answers.com": { - "description": null, - "ghostery_id": "2110", - "iab_vendor": null, - "id": "answers.com", - "name": "Answers.com", - "privacy_url": "http://wiki.answers.com/about/legal_notices.html#privacy", - "truste_type": null, - "website_url": "http://www.answers.com/" - }, - "apa": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "apa", - "name": "Apa", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.apa.at/Site/index.de.html" - }, - "apester": { - "description": null, - "ghostery_id": "4900", - "iab_vendor": 354, - "id": "apester", - "name": "Apester Ltd", - "privacy_url": "https://apester.com/privacy-policy/", - "truste_type": null, - "website_url": "http://apester.com/" - }, - "apn_news_media": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "apn_news_media", - "name": "APN News and Media Ltd", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.apn.com.au/" - }, - "appdynamics": { - "description": null, - "ghostery_id": "2793", - "iab_vendor": null, - "id": "appdynamics", - "name": "AppDynamics", - "privacy_url": "http://www.appdynamics.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.appdynamics.com" - }, - "apple": { - "description": null, - "ghostery_id": "390", - "iab_vendor": null, - "id": "apple", - "name": "Apple", - "privacy_url": "http://www.apple.com/privacy/privacy-policy/", - "truste_type": null, - "website_url": "http://www.apple.com/" - }, - "appnexus": { - "description": "AppNexus operates a cloud-based software platform that enables and optimizes programmatic online advertising.", - "ghostery_id": "17", - "iab_vendor": 32, - "id": "appnexus", - "name": "AppNexus Inc.", - "privacy_url": "https://www.appnexus.com/en/company/platform-privacy-policy", - "truste_type": null, - "website_url": "https://www.appnexus.com/en" - }, - "appsflyer": { - "description": "AppsFlyer is the global leading platform for Mobile Attribution & Marketing Analytics.", - "ghostery_id": null, - "iab_vendor": null, - "id": "appsflyer", - "name": "AppsFlyer", - "privacy_url": "https://www.appsflyer.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.appsflyer.com/" - }, - "arm": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "arm", - "name": "arm", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.arm.com/" - }, - "art.lebedev_studio": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "art.lebedev_studio", - "name": "Art.Lebedev Studio", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.artlebedev.ru/" - }, - "art19": { - "description": "Art19 provides tools for hosting, distribution, and monetization of podcasts.", - "ghostery_id": null, - "iab_vendor": null, - "id": "art19", - "name": "Art19", - "privacy_url": "https://art19.com/privacy", - "truste_type": null, - "website_url": "https://art19.com/" - }, - "arvato": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "arvato", - "name": "Arvato Bertelsmann", - "privacy_url": "https://www.arvato.com/de/ueber-arvato/datenschutz.html", - "truste_type": null, - "website_url": "https://www.arvato.com/" - }, - "at_internet": { - "description": "AT Internet provides web and multichannel analytics, performance monitoring and online reputation management services.", - "ghostery_id": "1270", - "iab_vendor": null, - "id": "at_internet", - "name": "AT Internet", - "privacy_url": "http://www.atinternet.com/en/company/data-protection/data-collection-on-at-internets-sites/", - "truste_type": null, - "website_url": "http://www.atinternet.com/en/" - }, - "atende_software": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "atende_software", - "name": "Atende Software Sp. z o.o.", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.atendesoftware.pl/" - }, - "atlassian": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "atlassian", - "name": "Atlassian", - "privacy_url": "https://www.atlassian.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.atlassian.com/" - }, - "audiencescience": { - "description": null, - "ghostery_id": "19", - "iab_vendor": null, - "id": "audiencescience", - "name": "AudienceScience", - "privacy_url": "http://www.audiencescience.com/privacy/", - "truste_type": null, - "website_url": "http://www.audiencescience.com" - }, - "auth0": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "auth0", - "name": "Auth0 Inc.", - "privacy_url": "https://auth0.com/privacy", - "truste_type": null, - "website_url": "https://auth0.com/" - }, - "automattic": { - "description": "Automattic develops publishing platforms, including the WordPress.com website and the VIP WordPress.com cloud version.", - "ghostery_id": null, - "iab_vendor": null, - "id": "automattic", - "name": "Automattic", - "privacy_url": "https://automattic.com/privacy/", - "truste_type": null, - "website_url": "https://automattic.com/" - }, - "autopilothq": { - "description": "Autopilot is visual marketing software for automating customer journeys", - "ghostery_id": null, - "iab_vendor": null, - "id": "autopilothq", - "name": "AutopilotHQ", - "privacy_url": "https://www.autopilothq.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.autopilothq.com/" - }, - "avail": { - "description": null, - "ghostery_id": "2596", - "iab_vendor": null, - "id": "avail", - "name": "Avail", - "privacy_url": "http://www.parkingcrew.net/privacy.html", - "truste_type": null, - "website_url": "http://avail.com" - }, - "avocet": { - "description": null, - "ghostery_id": "3588", - "iab_vendor": 63, - "id": "avocet", - "name": "Avocet Systems Limited", - "privacy_url": "http://www.avocet.io/privacy-policy", - "truste_type": null, - "website_url": "https://avocet.io/" - }, - "awin": { - "description": null, - "ghostery_id": "2588", - "iab_vendor": null, - "id": "awin", - "name": "Awin", - "privacy_url": "https://www.awin.com/de/rechtliches/privacy-policy", - "truste_type": null, - "website_url": "https://www.awin.com/de" - }, - "axel_springer": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "axel_springer", - "name": "Axel Springer Group", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "baidu": { - "description": "Baidu, the world's largest Chinese search engine, the largest Chinese website. Founded in January 2000 in Beijing's Zhongguancun. ", - "ghostery_id": "2500", - "iab_vendor": null, - "id": "baidu", - "name": "Baidu", - "privacy_url": "http://ir.baidu.com/phoenix.zhtml?c=188488&p=privacy", - "truste_type": "Website Tools", - "website_url": "http://www.baidu.com/" - }, - "bannerflow": { - "description": null, - "ghostery_id": "", - "iab_vendor": 273, - "id": "bannerflow", - "name": "Bannerflow AB", - "privacy_url": "https://www.bannerflow.com/privacy", - "truste_type": null, - "website_url": "https://www.bannerflow.com/" - }, - "bauer_media": { - "description": null, - "ghostery_id": "2001", - "iab_vendor": null, - "id": "bauer_media", - "name": "Bauer Media", - "privacy_url": "https://www.bauermedia.com/datenschutz/", - "truste_type": null, - "website_url": "http://www.bauermedia.com" - }, - "baynote": { - "description": null, - "ghostery_id": "24", - "iab_vendor": null, - "id": "baynote", - "name": "Baynote", - "privacy_url": "http://www.baynote.com/baynote-services-privacy-policy/", - "truste_type": null, - "website_url": "http://www.baynote.com/" - }, - "bazaarvoice": { - "description": null, - "ghostery_id": "1272", - "iab_vendor": null, - "id": "bazaarvoice", - "name": "Bazaarvoice", - "privacy_url": "http://www.bazaarvoice.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.bazaarvoice.com/" - }, - "beeketing": { - "description": null, - "ghostery_id": "4161", - "iab_vendor": null, - "id": "beeketing", - "name": "Beeketing", - "privacy_url": "https://beeketing.com/privacy-policy", - "truste_type": null, - "website_url": "https://beeketing.com/" - }, - "beeswax": { - "description": null, - "ghostery_id": "4160", - "iab_vendor": 12, - "id": "beeswax", - "name": "BeeswaxIO Corporation", - "privacy_url": "https://www.beeswax.com/privacy.html", - "truste_type": null, - "website_url": "http://beeswax.com/" - }, - "bemobile": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "bemobile", - "name": "Bemobile", - "privacy_url": null, - "truste_type": null, - "website_url": "http://bemobile.ua/en/" - }, - "between_digital": { - "description": "Between Digital - is Russia's first yield management system, which allows sites to effectively sell online advertising to technology RTB (real-time-bidding). ", - "ghostery_id": "2492", - "iab_vendor": null, - "id": "between_digital", - "name": "Between Digital", - "privacy_url": "http://betweendigital.ru/privacy-policy", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "http://betweendigital.ru/ssp" - }, - "bid.run": { - "description": null, - "ghostery_id": "4986", - "iab_vendor": null, - "id": "bid.run", - "name": "Bid.Run", - "privacy_url": null, - "truste_type": null, - "website_url": "http://bid.run/" - }, - "bidswitch": { - "description": null, - "ghostery_id": "4672", - "iab_vendor": 128, - "id": "bidswitch", - "name": "BIDSWITCH GmbH", - "privacy_url": "http://www.bidswitch.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.bidswitch.com/" - }, - "bidtellect": { - "description": null, - "ghostery_id": "4166", - "iab_vendor": 185, - "id": "bidtellect", - "name": "Bidtellect, Inc", - "privacy_url": "https://www.bidtellect.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.bidtellect.com/" - }, - "bidtheatre": { - "description": null, - "ghostery_id": "3272", - "iab_vendor": 30, - "id": "bidtheatre", - "name": "BidTheatre AB", - "privacy_url": "https://www.bidtheatre.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.bidtheatre.com/" - }, - "big_wall_vision": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "big_wall_vision", - "name": "Big Wall Vision", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.bigwallvision.fr/" - }, - "bigcommerce": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "bigcommerce", - "name": "BigCommerce", - "privacy_url": "https://www.bigcommerce.com/privacy/", - "truste_type": null, - "website_url": "https://www.bigcommerce.com/" - }, - "blis": { - "description": "Blis is a London-based mobile location technology company.", - "ghostery_id": null, - "iab_vendor": null, - "id": "blis", - "name": "Blis", - "privacy_url": "http://www.blis.com/privacy/", - "truste_type": null, - "website_url": "https://www.blis.com/" - }, - "blogfoster": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "blogfoster", - "name": "Blogfoster GmbH", - "privacy_url": "http://www.blogfoster.com/datenschutz/", - "truste_type": null, - "website_url": "http://www.blogfoster.com/" - }, - "bloomreach": { - "description": null, - "ghostery_id": "396", - "iab_vendor": null, - "id": "bloomreach", - "name": "BloomReach", - "privacy_url": "https://www.bloomreach.com/en/about/privacy-policy", - "truste_type": null, - "website_url": "https://www.bloomreach.com/en" - }, - "blue_triangle_technologies_inc": { - "description": null, - "ghostery_id": "3355", - "iab_vendor": null, - "id": "blue_triangle_technologies_inc", - "name": "Blue Triangle Technologies Inc", - "privacy_url": "https://www.bluetriangletech.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.bluetriangletech.com/" - }, - "bombora": { - "description": null, - "ghostery_id": "933", - "iab_vendor": 163, - "id": "bombora", - "name": "Bombora Inc.", - "privacy_url": "https://bombora.com/privacy", - "truste_type": null, - "website_url": "http://bombora.com/" - }, - "bootstrap_cdn": { - "description": "BootstrapCDN is a public content delivery network. Users of BootstrapCDN can load CSS, JavaScript and images remotely, from its servers, and it's been used more than 7.9 million websites worldwide (including 30% of the top-10k websites) and delivers more than 70 billion requests a month [1]. Bootstrap uses StackPath's global content delivery network, which makes websites using its service resilient to unexpected surges in web traffic. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "bootstrap_cdn", - "name": "BootstrapCDN", - "privacy_url": "https://www.bootstrapcdn.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.bootstrapcdn.com/" - }, - "bounce_exchange": { - "description": null, - "ghostery_id": "2468", - "iab_vendor": 256, - "id": "bounce_exchange", - "name": "Bounce Exchange, Inc", - "privacy_url": "https://www.bouncex.com/privacy/", - "truste_type": null, - "website_url": "http://bounceexchange.com" - }, - "boxever": { - "description": "Boxever is a customer intelligence cloud for marketers.", - "ghostery_id": null, - "iab_vendor": null, - "id": "boxever", - "name": "Boxever", - "privacy_url": "https://www.boxever.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.boxever.com/" - }, - "branch_metrics_inc": { - "description": null, - "ghostery_id": "4164", - "iab_vendor": null, - "id": "branch_metrics_inc", - "name": "Branch Metrics Inc", - "privacy_url": "https://branch.io/privacy_policy/", - "truste_type": null, - "website_url": "https://branch.io/" - }, - "braze_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "braze_inc", - "name": "Braze, Inc.", - "privacy_url": "https://www.braze.com/privacy/", - "truste_type": null, - "website_url": "https://www.braze.com/" - }, - "brightcove": { - "description": null, - "ghostery_id": "683", - "iab_vendor": null, - "id": "brightcove", - "name": "Brightcove", - "privacy_url": "http://www.brightcove.com/en/privacy", - "truste_type": null, - "website_url": "http://www.brightcove.com/en/" - }, - "browser-update": { - "description": null, - "ghostery_id": "1146", - "iab_vendor": null, - "id": "browser-update", - "name": "Browser-Update", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.browser-update.org/" - }, - "bugsnag": { - "description": null, - "ghostery_id": "3347", - "iab_vendor": null, - "id": "bugsnag", - "name": "Bugsnag", - "privacy_url": "http://docs.bugsnag.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "https://bugsnag.com/" - }, - "bunchbox": { - "description": null, - "ghostery_id": "4095", - "iab_vendor": null, - "id": "bunchbox", - "name": "Bunchbox", - "privacy_url": null, - "truste_type": null, - "website_url": "https://app.bunchbox.co/login" - }, - "buysellads.com": { - "description": null, - "ghostery_id": "278", - "iab_vendor": null, - "id": "buysellads.com", - "name": "BuySellAds.com", - "privacy_url": "http://buysellads.com/about/privacy", - "truste_type": null, - "website_url": "http://buysellads.com/" - }, - "c1_exchange_": { - "description": null, - "ghostery_id": "4897", - "iab_vendor": null, - "id": "c1_exchange_", - "name": "C1 Exchange ", - "privacy_url": "http://c1exchange.com/policy", - "truste_type": null, - "website_url": "http://c1exchange.com/" - }, - "catchpoint_systems": { - "description": null, - "ghostery_id": "2897", - "iab_vendor": null, - "id": "catchpoint_systems", - "name": "Catchpoint Systems", - "privacy_url": "http://www.catchpoint.com/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.catchpoint.com/" - }, - "cbs_interactive": { - "description": "CBS Interactive is the premier online content network for information and entertainment. Our brands dive deep into the things people care most about across news, sports, entertainment, technology and business. With hundreds of millions of unique visitors from around the world each month, CBS Interactive is a global top 10 web property and the largest premium content network online.", - "ghostery_id": "425", - "iab_vendor": null, - "id": "cbs_interactive", - "name": "CBS Interactive", - "privacy_url": "https://www.cbsinteractive.com/legal/cbsi/privacy-policy", - "truste_type": "Ad Network", - "website_url": "https://www.cbsinteractive.com/" - }, - "cdnvideo": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnvideo", - "name": "CDNvideo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cdnvideo.com/" - }, - "cedexis": { - "description": null, - "ghostery_id": "691", - "iab_vendor": null, - "id": "cedexis", - "name": "Cedexis", - "privacy_url": "http://www.cedexis.com/privacy-policy/ ", - "truste_type": null, - "website_url": "http://www.cedexis.com/" - }, - "certona__resonance_": { - "description": null, - "ghostery_id": "351", - "iab_vendor": null, - "id": "certona__resonance_", - "name": "Certona (Resonance)", - "privacy_url": "http://www.certona.com/privacy/", - "truste_type": null, - "website_url": "http://www.certona.com/" - }, - "chartbeat": { - "description": "Chartbeat is a betaworks company that provides realtime analytics to Websites and blogs. It shows visitors, load times, and referring sites on a minute-by-minute basis. The service also provides alerts the second your Website crashes or slows to a crawl.", - "ghostery_id": "313", - "iab_vendor": null, - "id": "chartbeat", - "name": "ChartBeat", - "privacy_url": "http://chartbeat.com/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://chartbeat.com" - }, - "chatango": { - "description": null, - "ghostery_id": "2700", - "iab_vendor": null, - "id": "chatango", - "name": "Chatango", - "privacy_url": "http://www.chatango.com/page?full_privacy", - "truste_type": null, - "website_url": "http://www.chatango.com/" - }, - "clear_pier": { - "description": "ClearPier is Canada\u2019s Leading Premium Performance Marketplace for advertisers and publishers.", - "ghostery_id": null, - "iab_vendor": null, - "id": "clear_pier", - "name": "ClearPier", - "privacy_url": "http://clearpier.com/privacy-policy/", - "truste_type": null, - "website_url": "http://clearpier.com/" - }, - "clearbit": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "clearbit", - "name": "Clearbit", - "privacy_url": "https://clearbit.com/privacy", - "truste_type": null, - "website_url": "https://clearbit.com/" - }, - "clever_push": { - "description": null, - "ghostery_id": "4487", - "iab_vendor": null, - "id": "clever_push", - "name": "Clever Push", - "privacy_url": "https://cleverpush.com/privacy", - "truste_type": null, - "website_url": "https://cleverpush.com/" - }, - "clever_tap": { - "description": "CleverTap is a user engagement and analytics platform that is real-time, omni-channel, and works blazingly fast no matter what scale.", - "ghostery_id": null, - "iab_vendor": null, - "id": "clever_tap", - "name": "CleverTap", - "privacy_url": "https://clevertap.com/privacy-policy/", - "truste_type": null, - "website_url": "https://clevertap.com/" - }, - "clickintext": { - "description": null, - "ghostery_id": "1081", - "iab_vendor": null, - "id": "clickintext", - "name": "ClickInText", - "privacy_url": "https://www.clickintext.com/about/confidentialite-retargeting.php", - "truste_type": null, - "website_url": "http://www.clickintext.com/" - }, - "clickonometrics": { - "description": "Clickonometrics measures the on-line market. We answer your questions about the data and analysis of the internet market. We develop tools and technologies that collect and analyze data for business. We support companies and institutions operating in the online advertising market. ", - "ghostery_id": "2889", - "iab_vendor": null, - "id": "clickonometrics", - "name": "Clickonometrics", - "privacy_url": "http://clickonometrics.com/pl/", - "truste_type": "Attribution / Analytics", - "website_url": "http://clickonometrics.pl/" - }, - "clicktale": { - "description": "ClickTale is the industry leader in Customer Experience Analytics (CEA), providing businesses with revolutionary insights into their customers\u2019 online behavior. Over 70,000 businesses rely on ClickTale to optimize website performance, improve usability and dramatically increase conversion rates. ClickTale tracks every mouse move, click and scroll, creating playable videos of customers\u2019 entire browsing sessions as well as powerful visual heatmaps and behavioral reports that perfectly complement traditional web analytics. As a fully hosted subscription service, ClickTale is cost-effective and quick to set up.", - "ghostery_id": "41", - "iab_vendor": null, - "id": "clicktale", - "name": "ClickTale", - "privacy_url": "https://www.clicktale.com/company/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.clicktale.com/" - }, - "clicktripz": { - "description": null, - "ghostery_id": "3110", - "iab_vendor": null, - "id": "clicktripz", - "name": "ClickTripz", - "privacy_url": "https://www.clicktripz.com/privacy_policy.php", - "truste_type": null, - "website_url": "https://www.clicktripz.com" - }, - "clicky": { - "description": null, - "ghostery_id": "312", - "iab_vendor": null, - "id": "clicky", - "name": "Clicky", - "privacy_url": "http://clicky.com/terms", - "truste_type": null, - "website_url": "http://clicky.com/" - }, - "cloud_technologies": { - "description": null, - "ghostery_id": null, - "iab_vendor": 243, - "id": "cloud_technologies", - "name": "Cloud Technologies S.A.", - "privacy_url": "http://onaudience.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.cloudtechnologies.pl/" - }, - "cloudflare": { - "description": "Cloudflare is a web performance and security company that provides online services to protect and accelerate websites online. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "cloudflare", - "name": "Cloudflare", - "privacy_url": "https://www.cloudflare.com/security-policy/", - "truste_type": null, - "website_url": "https://www.cloudflare.com/" - }, - "comcast": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "comcast", - "name": "Comcast", - "privacy_url": null, - "truste_type": null, - "website_url": "http://corporate.comcast.com/" - }, - "comscore": { - "description": "comScore is a recognized global leader in cross-platform measurement of audiences, advertising and consumer behavior. Built on precision and innovation, comScore combines proprietary TV, digital and movie viewing data with vast demographic details to measure consumers\u2019 multiscreen behavior at scale. With more than 3,200 clients and a global footprint in 70 countries, comScore is delivering the future of media measurement.", - "ghostery_id": null, - "iab_vendor": 77, - "id": "comscore", - "name": "comScore, Inc.", - "privacy_url": "https://www.comscore.com/About-comScore/Privacy-Policy", - "truste_type": null, - "website_url": "https://www.comscore.com/" - }, - "conde_nast": { - "description": null, - "ghostery_id": "1951", - "iab_vendor": null, - "id": "conde_nast", - "name": "Cond\u00e9 Nast ", - "privacy_url": "http://www.condenast.com/privacy-policy/#privacypolicy", - "truste_type": null, - "website_url": "http://www.condenast.com/" - }, - "connatix": { - "description": null, - "ghostery_id": null, - "iab_vendor": 143, - "id": "connatix", - "name": "Connatix Native Exchange Inc.", - "privacy_url": "https://connatix.com/privacy-policy/", - "truste_type": null, - "website_url": "https://connatix.com/" - }, - "connexity": { - "description": null, - "ghostery_id": "941", - "iab_vendor": null, - "id": "connexity", - "name": "Connexity", - "privacy_url": "http://connexity.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.connexity.com" - }, - "connextra": { - "description": null, - "ghostery_id": "502", - "iab_vendor": null, - "id": "connextra", - "name": "Connextra", - "privacy_url": "http://connextra.net/privacy_policy.htm", - "truste_type": null, - "website_url": "http://connextra.net/index.htm" - }, - "content.ad": { - "description": "Content.ad combine technology with deep knowledge and expertise to help customers generate revenue through content marketing. ", - "ghostery_id": "2086", - "iab_vendor": null, - "id": "content.ad", - "name": "Content.ad", - "privacy_url": "https://www.content.ad/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "https://www.content.ad/" - }, - "contentful_gmbh": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "contentful_gmbh", - "name": "Contentful GmbH", - "privacy_url": "https://www.contentful.com/legal/de/privacy/", - "truste_type": null, - "website_url": "https://www.contentful.com/" - }, - "conversant": { - "description": null, - "ghostery_id": "280", - "iab_vendor": 24, - "id": "conversant", - "name": "Conversant Europe Ltd.", - "privacy_url": "https://www.conversantmedia.eu/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.conversantmedia.eu/" - }, - "conversion_point": { - "description": "ConversionPoint Technologies Inc., is a leading e-commerce infrastructure technology platform that powers high growth e-commerce sales.", - "ghostery_id": null, - "iab_vendor": null, - "id": "conversion_point", - "name": "ConversionPoint Technologies Inc.", - "privacy_url": "https://www.conversionpoint.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.conversionpoint.com/" - }, - "conviva": { - "description": null, - "ghostery_id": "819", - "iab_vendor": null, - "id": "conviva", - "name": "Conviva", - "privacy_url": " http://www.conviva.com/home/privacy-policy/", - "truste_type": null, - "website_url": "http://www.conviva.com/" - }, - "cox_enterpries": { - "description": null, - "ghostery_id": "6", - "iab_vendor": null, - "id": "cox_enterpries", - "name": "Cox Enterprises", - "privacy_url": "http://www.gamut.media/privacy-policy/", - "truste_type": null, - "website_url": "http://www.gamut.media/" - }, - "cpmstar": { - "description": "CPMStar provides multiplayer gaming content for developers, advertisers and publishers. ", - "ghostery_id": "647", - "iab_vendor": null, - "id": "cpmstar", - "name": "CPMStar", - "privacy_url": "http://www.cpmstar.com/privacyPolicy.html", - "truste_type": "Ad Network", - "website_url": "http://www.cpmstar.com" - }, - "crazy_egg": { - "description": "Crazy Egg allows website owners to create tests to figure out what users are doing on their site. ", - "ghostery_id": "50", - "iab_vendor": null, - "id": "crazy_egg", - "name": "Crazy Egg", - "privacy_url": "https://www.crazyegg.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.crazyegg.com/" - }, - "creative_commons_corp": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "creative_commons_corp", - "name": "Creative Commons Corporation", - "privacy_url": "https://creativecommons.org/privacy/", - "truste_type": null, - "website_url": "https://creativecommons.org/" - }, - "crimtan": { - "description": null, - "ghostery_id": "606", - "iab_vendor": 85, - "id": "crimtan", - "name": "Crimtan Holdings Limited", - "privacy_url": "https://crimtan.com/privacy/", - "truste_type": null, - "website_url": "http://crimtan.com/" - }, - "criteo": { - "description": "Criteo is a personalized retargeting company that works with Internet retailers to serve personalized online display advertisements to consumers who have previously visited the advertiser's website.", - "ghostery_id": "51", - "iab_vendor": 91, - "id": "criteo", - "name": "Criteo S.A.", - "privacy_url": "https://www.criteo.com/privacy/", - "truste_type": null, - "website_url": "http://www.criteo.com/" - }, - "crossengage": { - "description": null, - "ghostery_id": "4497", - "iab_vendor": null, - "id": "crossengage", - "name": "CrossEngage", - "privacy_url": "https://www.crossengage.io/privacy-and-terms/", - "truste_type": null, - "website_url": "https://www.crossengage.io/" - }, - "cxense": { - "description": null, - "ghostery_id": "1160", - "iab_vendor": 412, - "id": "cxense", - "name": "Cxense ASA", - "privacy_url": "https://www.cxense.com/about-us/privacy-policy", - "truste_type": null, - "website_url": "http://www.cxense.com/" - }, - "daconsortium": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "daconsortium", - "name": "D.A.Consortium", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.dac.co.jp/english/" - }, - "datadome": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "datadome", - "name": "DataDome", - "privacy_url": "https://datadome.co/fr/mentions-legales/", - "truste_type": null, - "website_url": "https://datadome.co/" - }, - "dataxu": { - "description": null, - "ghostery_id": "292", - "iab_vendor": 71, - "id": "dataxu", - "name": "Dataxu, Inc. ", - "privacy_url": "https://www.dataxu.com/about-us/privacy/data-collection-platform/", - "truste_type": null, - "website_url": "http://www.dataxu.com/" - }, - "dc_storm": { - "description": null, - "ghostery_id": "237", - "iab_vendor": null, - "id": "dc_storm", - "name": "DC Storm", - "privacy_url": "http://dc-storm.com/en-uk/privacy-policy/", - "truste_type": null, - "website_url": "http://www.dc-storm.com/" - }, - "dca": { - "description": "DCA majors in Big Data technologies. We collect and mine Data to develop IT-solutions for marketing and other business areas.", - "ghostery_id": null, - "iab_vendor": null, - "id": "dca", - "name": "DCA (Data-Centric Alliance)", - "privacy_url": null, - "truste_type": null, - "website_url": "datacentric.ru/en" - }, - "decibel_insight": { - "description": "Decibel Insight records every action visitors take on your web or mobile site. See what content they interact with, optimize the experience and turn more visitors into customers. ", - "ghostery_id": "3679", - "iab_vendor": null, - "id": "decibel_insight", - "name": "Decibel Insight", - "privacy_url": "https://www.decibelinsight.com/PrivacyPolicy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.decibelinsight.com/" - }, - "delta_projects": { - "description": null, - "ghostery_id": "1955", - "iab_vendor": 209, - "id": "delta_projects", - "name": "Delta Projects AB", - "privacy_url": "http://www.deltaprojects.com/data-collection-policy/", - "truste_type": null, - "website_url": " http://www.deltaprojects.com/" - }, - "dentsu_aegis_network": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "dentsu_aegis_network", - "name": "Dentsu Aegis Network", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.dentsuaegisnetwork.com/" - }, - "didomi": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "didomi", - "name": "Didomi", - "privacy_url": "https://privacy.didomi.io/en/", - "truste_type": null, - "website_url": "https://www.didomi.io/en/" - }, - "digicert": { - "description": null, - "ghostery_id": "1526", - "iab_vendor": null, - "id": "digicert", - "name": "Digicert", - "privacy_url": "https://www.digicert.com/digicert-privacy-policy.htm", - "truste_type": null, - "website_url": "https://www.digicert.com/" - }, - "digidip": { - "description": null, - "ghostery_id": "4891", - "iab_vendor": null, - "id": "digidip", - "name": "Digidip", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.digidip.net/" - }, - "digilant": { - "description": null, - "ghostery_id": null, - "iab_vendor": 266, - "id": "digilant", - "name": "Digilant Spain, SLU", - "privacy_url": "https://www.digilant.com/es/politica-privacidad/", - "truste_type": null, - "website_url": "https://www.digilant.com/" - }, - "digital_remedy": { - "description": "Digital Remedy is a digital media solutions company leading the tech enabled marketing space.", - "ghostery_id": null, - "iab_vendor": null, - "id": "digital_remedy", - "name": "Digital Remedy", - "privacy_url": "https://www.digitalremedy.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.digitalremedy.com/" - }, - "digiteka": { - "description": null, - "ghostery_id": "4705", - "iab_vendor": 343, - "id": "digiteka", - "name": "DIGITEKA Technologies", - "privacy_url": "https://www.ultimedia.com/POLICY.html", - "truste_type": null, - "website_url": "http://digiteka.com/" - }, - "disney": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "disney", - "name": "The Walt Disney Company", - "privacy_url": "https://privacy.thewaltdisneycompany.com/en/", - "truste_type": null, - "website_url": "http://www.disney.com/" - }, - "disqus": { - "description": "Disqus is a blog comment hosting service offering a platform for social integration, social networking, user profiles, analytics and more.", - "ghostery_id": "311", - "iab_vendor": null, - "id": "disqus", - "name": "Disqus", - "privacy_url": "https://help.disqus.com/customer/portal/articles/466259-privacy-policy", - "truste_type": null, - "website_url": "https://disqus.com/" - }, - "distil_networks": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "distil_networks", - "name": "distil networks", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.distilnetworks.com/" - }, - "district_m": { - "description": null, - "ghostery_id": null, - "iab_vendor": 144, - "id": "district_m", - "name": "district m inc.", - "privacy_url": "https://districtm.net/en/page/platforms-data-and-privacy-policy/", - "truste_type": null, - "website_url": "https://districtm.net/en/" - }, - "dmg_media": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "dmg_media", - "name": "Dmn Media", - "privacy_url": "https://www.dmgmedia.co.uk/privacy-cookie-policy/", - "truste_type": null, - "website_url": "https://www.dmgmedia.co.uk/" - }, - "dmgt": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "dmgt", - "name": "Daily Mail and General Trust plc", - "privacy_url": "https://www.dmgt.com/site-services/privacy-policy", - "truste_type": null, - "website_url": "https://www.dmgt.com/" - }, - "docler_ip": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "docler_ip", - "name": "Docler IP", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.doclerholding.com/en/about/companies/38/" - }, - "doublepimp": { - "description": null, - "ghostery_id": "57", - "iab_vendor": null, - "id": "doublepimp", - "name": "DoublePimp", - "privacy_url": null, - "truste_type": null, - "website_url": "http://doublepimp.com/" - }, - "doubleverify": { - "description": null, - "ghostery_id": "58", - "iab_vendor": 126, - "id": "doubleverify", - "name": "DoubleVerify Inc.\u200b", - "privacy_url": "https://www.doubleverify.com/privacy/", - "truste_type": null, - "website_url": "http://www.doubleverify.com/" - }, - "drawbridge": { - "description": null, - "ghostery_id": "1175", - "iab_vendor": null, - "id": "drawbridge", - "name": "Drawbridge", - "privacy_url": "http://drawbridge.com/privacy", - "truste_type": null, - "website_url": " https://drawbridge.com/" - }, - "dstillery": { - "description": "Dstillery is the leader in applied data science, helping companies unlock growth by finding & targeting highest value prospective customers", - "ghostery_id": null, - "iab_vendor": null, - "id": "dstillery", - "name": "Dstillery", - "privacy_url": "https://dstillery.com/privacy-policy/", - "truste_type": null, - "website_url": "https://dstillery.com/" - }, - "ebay": { - "description": "eBay is an online marketplace that connects a global network of buyers and sellers.", - "ghostery_id": null, - "iab_vendor": null, - "id": "ebay", - "name": "eBay", - "privacy_url": "https://www.ebay.com/help/policies/member-behaviour-policies/user-privacy-notice-privacy-policy?id=4260", - "truste_type": null, - "website_url": "https://www.ebay.com/" - }, - "ebay_partner_network": { - "description": "eBay Partner Network (EPN) is eBay\u2019s affiliate marketing program. Affiliate marketing with eBay Partner Network is a way for partners to earn commissions by promoting products on eBay through a promotable and shareable link. ", - "ghostery_id": "220", - "iab_vendor": null, - "id": "ebay_partner_network", - "name": "eBay", - "privacy_url": "https://partnernetwork.ebay.com/en/legal#privacy-policy", - "truste_type": "Ad Network", - "website_url": "https://partnernetwork.ebay.com/" - }, - "econda": { - "description": "Econda is a web-analytics platform offers tailored web-analytics solutions for business model.", - "ghostery_id": "603", - "iab_vendor": null, - "id": "econda", - "name": "Econda", - "privacy_url": " http://www.econda.de/econda/unternehmen/datenschutz/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.econda.de/" - }, - "effective_measure": { - "description": null, - "ghostery_id": "607", - "iab_vendor": null, - "id": "effective_measure", - "name": "Effective Measure", - "privacy_url": "http://www.effectivemeasure.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.effectivemeasure.com/" - }, - "effiliation": { - "description": null, - "ghostery_id": "2943", - "iab_vendor": 402, - "id": "effiliation", - "name": "Effiliation", - "privacy_url": "https://inter.effiliation.com/politique-confidentialite.html", - "truste_type": null, - "website_url": "http://www.effiliation.com/en/" - }, - "ekomi": { - "description": null, - "ghostery_id": "2702", - "iab_vendor": null, - "id": "ekomi", - "name": "eKomi", - "privacy_url": "http://www.ekomi.co.uk/uk/privacy", - "truste_type": null, - "website_url": "http://www.ekomi.co.uk" - }, - "elastic": { - "description": "Elastic builds software to make data usable in real time and at scale for search, logging, security, and analytics use cases.", - "ghostery_id": null, - "iab_vendor": null, - "id": "elastic", - "name": "Elastic", - "privacy_url": "https://www.elastic.co/de/legal/privacy-statement", - "truste_type": null, - "website_url": "https://www.elastic.co/" - }, - "elastic_ad": { - "description": null, - "ghostery_id": "3803", - "iab_vendor": null, - "id": "elastic_ad", - "name": "Elastic Ad", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.elasticad.com" - }, - "emarsys": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "emarsys", - "name": "Emarsys", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.emarsys.com/" - }, - "emetriq": { - "description": null, - "ghostery_id": "3970", - "iab_vendor": 213, - "id": "emetriq", - "name": "emetriq GmbH", - "privacy_url": "https://www.emetriq.com/datenschutz/", - "truste_type": null, - "website_url": "http://www.emetriq.com" - }, - "engage:bdr__blink_new_media_": { - "description": null, - "ghostery_id": "845", - "iab_vendor": null, - "id": "engage:bdr__blink_new_media_", - "name": "engage:BDR (Blink New Media)", - "privacy_url": "http://engagebdr.com/privacy-policy/", - "truste_type": null, - "website_url": "http://engagebdr.com/" - }, - "engagio": { - "description": "Engagio\u2019s Account Based Marketing and Sales platform enables teams to measure account engagement and orchestrate human connections at scale.", - "ghostery_id": null, - "iab_vendor": null, - "id": "engagio", - "name": "Engagio", - "privacy_url": "https://www.engagio.com/privacy/", - "truste_type": null, - "website_url": "https://www.engagio.com/" - }, - "engine_group": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "engine_group", - "name": "Engine", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.enginegroup.com/" - }, - "ensighten": { - "description": "Ensighten provides enterprise tag management solutions that enable businesses manage their websites more effectively.", - "ghostery_id": "728", - "iab_vendor": null, - "id": "ensighten", - "name": "Ensighten", - "privacy_url": "http://www.ensighten.com/privacy-policy/", - "truste_type": "Tag Management", - "website_url": "http://www.ensighten.com" - }, - "epoq": { - "description": null, - "ghostery_id": "2898", - "iab_vendor": null, - "id": "epoq", - "name": "epoq", - "privacy_url": "https://www.epoq.de/en/how-to/data-protection/?", - "truste_type": null, - "website_url": "http://www.epoq.de/" - }, - "eqs_group": { - "description": "The EQS Group is a Munich-headquartered leading international provider of digital corporate communications.", - "ghostery_id": null, - "iab_vendor": null, - "id": "eqs_group", - "name": "EQS Group", - "privacy_url": "https://www.eqs.com/home/footer/legals/data-protection/", - "truste_type": null, - "website_url": "https://www.eqs.com/" - }, - "ero_advertising": { - "description": null, - "ghostery_id": "747", - "iab_vendor": null, - "id": "ero_advertising", - "name": "Ero Advertising", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ero-advertising.com/" - }, - "errorception": { - "description": null, - "ghostery_id": "1549", - "iab_vendor": null, - "id": "errorception", - "name": "Errorception", - "privacy_url": "http://errorception.com/privacy", - "truste_type": null, - "website_url": "http://errorception.com/" - }, - "esw_capital": { - "description": "ESW Capital specifically focuses on buying, transforming, and running mature business software companies.", - "ghostery_id": null, - "iab_vendor": null, - "id": "esw_capital", - "name": "ESW Capital", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.eswcapital.com/" - }, - "etracker_gmbh": { - "description": null, - "ghostery_id": "62", - "iab_vendor": null, - "id": "etracker_gmbh", - "name": "etracker GmbH", - "privacy_url": "https://www.etracker.com/datenschutz/", - "truste_type": null, - "website_url": "https://www.etracker.com/en/" - }, - "etsy": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "etsy", - "name": "Etsy, Inc.", - "privacy_url": "https://www.etsy.com/legal/privacy/?ref=ftr", - "truste_type": null, - "website_url": "https://www.etsy.com/" - }, - "eulerian": { - "description": "Eulerian Technologies develops solutions for real-time analysis, automation and optimization of e-marketing operations. ", - "ghostery_id": null, - "iab_vendor": 413, - "id": "eulerian", - "name": "Eulerian Technologies", - "privacy_url": "https://www.eulerian.com/en/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.eulerian.com/" - }, - "exactag": { - "description": null, - "ghostery_id": "2723", - "iab_vendor": 312, - "id": "exactag", - "name": "Exactag GmbH", - "privacy_url": "https://www.exactag.com/en/data-privacy/", - "truste_type": null, - "website_url": "http://www.exactag.com" - }, - "exoclick": { - "description": "ExoClick, the innovative ad network, is ranked the 4th largest ad network in the world by W3Techs, serving 155+ billion geo-targeted ads a month to a global network of 65,000 web/mobile publisher platforms.", - "ghostery_id": "1068", - "iab_vendor": null, - "id": "exoclick", - "name": "ExoClick", - "privacy_url": "http://www.exoclick.com/privacy.php", - "truste_type": null, - "website_url": "http://exoclick.com/" - }, - "experian_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "experian_inc", - "name": "Experian Information Solutions, Inc.", - "privacy_url": "https://www.experian.com/privacy/index.html", - "truste_type": null, - "website_url": "https://www.experian.com/" - }, - "expert_system_spa": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "expert_system_spa", - "name": "Expert System, SpA", - "privacy_url": "http://www.expertsystem.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.expertsystem.com/" - }, - "exponential_interactive": { - "description": null, - "ghostery_id": "64", - "iab_vendor": 1, - "id": "exponential_interactive", - "name": "Exponential Interactive, Inc", - "privacy_url": "http://exponential.com/privacy", - "truste_type": null, - "website_url": "http://www.exponential.com/" - }, - "extreme_digital": { - "description": null, - "ghostery_id": "65", - "iab_vendor": null, - "id": "extreme_digital", - "name": "Extreme Digital", - "privacy_url": "http://extremetracking.com/?policy", - "truste_type": null, - "website_url": "http://www.extremetracking.com/" - }, - "eyeota": { - "description": null, - "ghostery_id": "1727", - "iab_vendor": 120, - "id": "eyeota", - "name": "Eyeota Ptd Ltd", - "privacy_url": "https://www.eyeota.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.eyeota.com/" - }, - "eyeview": { - "description": null, - "ghostery_id": "1288", - "iab_vendor": null, - "id": "eyeview", - "name": "Eyeview", - "privacy_url": "http://www.eyeviewdigital.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.eyeviewdigital.com/" - }, - "facebook": { - "description": "Facebook is an American online social media and social networking service company based in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg, along with fellow Harvard College students and roommates. Facebook makes most of its revenue from advertisements that appear onscreen.", - "ghostery_id": "249", - "iab_vendor": null, - "id": "facebook", - "name": "Facebook", - "privacy_url": "https://www.facebook.com/full_data_use_policy", - "truste_type": null, - "website_url": "https://www.facebook.com/" - }, - "faktor.io": { - "description": "The Enterprise Platform for Privacy and Consent Management", - "ghostery_id": null, - "iab_vendor": null, - "id": "faktor.io", - "name": "Faktor B.V.", - "privacy_url": "https://faktor.io/privacy-notice/", - "truste_type": null, - "website_url": "https://faktor.io/" - }, - "fastly": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "fastly", - "name": "Fastly", - "privacy_url": "https://www.fastly.com/privacy", - "truste_type": null, - "website_url": "https://www.fastly.com/" - }, - "fastpic": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "fastpic", - "name": "FastPic", - "privacy_url": null, - "truste_type": null, - "website_url": "http://fastpic.ru/" - }, - "feedbackify": { - "description": null, - "ghostery_id": "1867", - "iab_vendor": null, - "id": "feedbackify", - "name": "Feedbackify", - "privacy_url": "http://www.feedbackify.com/privacy.php", - "truste_type": null, - "website_url": "http://www.feedbackify.com/" - }, - "fidelity_media": { - "description": "Fidelity Media is a managed brand safe advertising network. We strive to help businesses steadily grow by running profitable ad campaigns and monetizing high-quality websites.", - "ghostery_id": "3115", - "iab_vendor": null, - "id": "fidelity_media", - "name": "Fidelity Media", - "privacy_url": "http://fidelity-media.com/about/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://fidelity-media.com/" - }, - "fifth_story": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "fifth_story", - "name": "Fifth Story", - "privacy_url": null, - "truste_type": null, - "website_url": "https://fifthstory.com/" - }, - "fileserve": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "fileserve", - "name": "FileServe", - "privacy_url": null, - "truste_type": null, - "website_url": "http://fileserve.com/" - }, - "fimalac_group": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "fimalac_group", - "name": "Fimalac Group", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.fimalac.com/" - }, - "first_impression": { - "description": null, - "ghostery_id": "3802", - "iab_vendor": null, - "id": "first_impression", - "name": "First Impression", - "privacy_url": "https://admin.firstimpression.io/privacy-policy.php", - "truste_type": null, - "website_url": "http://www.firstimpression.io" - }, - "fit_analytics": { - "description": null, - "ghostery_id": "3351", - "iab_vendor": null, - "id": "fit_analytics", - "name": "Fit Analytics", - "privacy_url": "http://www.fitanalytics.com/files/Privacy_Policy_DE-EN_FitA.pdf", - "truste_type": null, - "website_url": "http://www.fitanalytics.com/" - }, - "fivetran": { - "description": "Fivetran technology helps analysts replicate data into a cloud warehouse.", - "ghostery_id": null, - "iab_vendor": null, - "id": "fivetran", - "name": "Fivetran", - "privacy_url": "https://fivetran.com/privacy", - "truste_type": null, - "website_url": "https://fivetran.com/" - }, - "flag_counter": { - "description": null, - "ghostery_id": "1680", - "iab_vendor": null, - "id": "flag_counter", - "name": "Flag Counter", - "privacy_url": "http://flagcounter.com/privacy.html", - "truste_type": null, - "website_url": "http://flagcounter.com/" - }, - "flashtalking": { - "description": null, - "ghostery_id": "442", - "iab_vendor": 78, - "id": "flashtalking", - "name": "Flashtalking, Inc.", - "privacy_url": "http://www.flashtalking.com/privacypolicy/", - "truste_type": null, - "website_url": "http://www.flashtalking.com/" - }, - "flattr": { - "description": null, - "ghostery_id": "1367", - "iab_vendor": null, - "id": "flattr", - "name": "Flattr", - "privacy_url": "http://flattr.com/privacy", - "truste_type": null, - "website_url": "http://flattr.com/" - }, - "flipboard": { - "description": "Flipboard is a social magazine that is available for the Web, iOS, Android, Windows 10, and Windows Phone.", - "ghostery_id": null, - "iab_vendor": null, - "id": "flipboard", - "name": "Flipboard", - "privacy_url": "https://about.flipboard.com/privacy/?noredirect=en_US", - "truste_type": null, - "website_url": "https://flipboard.com/" - }, - "flowplayer": { - "description": null, - "ghostery_id": "4848", - "iab_vendor": null, - "id": "flowplayer", - "name": "FlowPlayer", - "privacy_url": "https://flowplayer.org/about/privacy-policy.html", - "truste_type": null, - "website_url": "https://flowplayer.org/" - }, - "flxone": { - "description": null, - "ghostery_id": "2710", - "iab_vendor": null, - "id": "flxone", - "name": "FlxOne", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.flxone.com/" - }, - "fox_news": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "fox_news", - "name": "Fox News Network, LLC", - "privacy_url": "http://www.foxnews.com/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.foxnews.com/" - }, - "freedom_mortgage": { - "description": "Freedom Mortgage is a full-service mortgage lender with strong customer service and a unique streamlined process.", - "ghostery_id": null, - "iab_vendor": null, - "id": "freedom_mortgage", - "name": "Freedom Mortgage", - "privacy_url": "https://www.freedommortgage.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.freedommortgage.com/" - }, - "freshdesk": { - "description": null, - "ghostery_id": "1866", - "iab_vendor": null, - "id": "freshdesk", - "name": "Freshdesk", - "privacy_url": "https://freshdesk.com/privacy", - "truste_type": null, - "website_url": "https://freshdesk.com/" - }, - "friendfinder_networks": { - "description": null, - "ghostery_id": "904", - "iab_vendor": null, - "id": "friendfinder_networks", - "name": "FriendFinder Networks", - "privacy_url": "http://www.ffn.com/privacypolicy", - "truste_type": null, - "website_url": "http://www.ffn.com/" - }, - "fullstory": { - "description": null, - "ghostery_id": "4100", - "iab_vendor": null, - "id": "fullstory", - "name": "fullstory", - "privacy_url": "https://www.fullstory.com/legal/privacy/", - "truste_type": null, - "website_url": "http://fullstory.com" - }, - "fyber": { - "description": null, - "ghostery_id": "2349", - "iab_vendor": 262, - "id": "fyber", - "name": "Fyber ", - "privacy_url": "https://www.fyber.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "https://www.fyber.com/" - }, - "gemius_sa": { - "description": "Gemius is an international research agency, the leader and forerunner in the field of research of the internet and on the internet in Europe. ", - "ghostery_id": "381", - "iab_vendor": 328, - "id": "gemius_sa", - "name": "Gemius SA", - "privacy_url": "https://www.gemius.com/cookie-policy.html", - "truste_type": "Ad Platform", - "website_url": " https://www.gemius.com/homepage.html" - }, - "geotrust": { - "description": null, - "ghostery_id": "3381", - "iab_vendor": null, - "id": "geotrust", - "name": "GeoTrust", - "privacy_url": "https://www.geotrust.com/about/privacy-policy.html", - "truste_type": null, - "website_url": "https://www.geotrust.com/" - }, - "getintent": { - "description": null, - "ghostery_id": "3163", - "iab_vendor": null, - "id": "getintent", - "name": "GetIntent", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.getintent.com/" - }, - "getsitecontrol": { - "description": null, - "ghostery_id": "4817", - "iab_vendor": null, - "id": "getsitecontrol", - "name": "GetSiteControl", - "privacy_url": "https://getsitecontrol.com/privacy/", - "truste_type": null, - "website_url": "https://getsitecontrol.com/" - }, - "gfk_nurago": { - "description": null, - "ghostery_id": "1097", - "iab_vendor": null, - "id": "gfk_nurago", - "name": "GfK Group", - "privacy_url": "http://www.gfk.com/Pages/Privacy.aspx", - "truste_type": null, - "website_url": "http://nurago.com/" - }, - "gg_software": { - "description": "Crafting advanced video game tools for today's gamer.", - "ghostery_id": null, - "iab_vendor": null, - "id": "gg_software", - "name": "GG Software LLC", - "privacy_url": null, - "truste_type": null, - "website_url": "https://ggsoftware.io/" - }, - "giftconnect": { - "description": "Gift Connect gives advertisers and publishers across any media platform the ability to distribute branded gifts to consumers.", - "ghostery_id": null, - "iab_vendor": null, - "id": "giftconnect", - "name": "GiftConnect", - "privacy_url": "http://consumable.com/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.giftconnect.co/" - }, - "gigya": { - "description": "Gigya is Software as a Service (SaaS) technology that makes websites social, integrating online businesses with the top social networks and identity providers including Facebook, Twitter and LinkedIn. ", - "ghostery_id": "517", - "iab_vendor": null, - "id": "gigya", - "name": "Gigya", - "privacy_url": "http://www.gigya.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.gigya.com/" - }, - "github": { - "description": null, - "ghostery_id": "1618", - "iab_vendor": null, - "id": "github", - "name": "GitHub, Inc.", - "privacy_url": "https://help.github.com/articles/github-privacy-statement/", - "truste_type": null, - "website_url": "https://github.com/" - }, - "gizmodo": { - "description": null, - "ghostery_id": "5191", - "iab_vendor": null, - "id": "gizmodo", - "name": "Gizmodo Media Group", - "privacy_url": "https://legal-supplemental.kinja.com/privacy-policy-90190742", - "truste_type": null, - "website_url": "https://gizmodo.com/" - }, - "global_web_index": { - "description": "GlobalWebIndex is a market research company that provides audience profiling data to the global marketing industry.", - "ghostery_id": null, - "iab_vendor": null, - "id": "global_web_index", - "name": "GlobalWebIndex", - "privacy_url": "https://www.globalwebindex.com/privacy", - "truste_type": null, - "website_url": "https://www.globalwebindex.com/" - }, - "google": { - "description": "Google LLC is an American multinational technology company that specializes in Internet-related services and products, which include online advertising technologies, search engine, cloud computing, software, and hardware.", - "ghostery_id": "82", - "iab_vendor": null, - "id": "google", - "name": "Google", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "http://www.google.com" - }, - "gores_group": { - "description": "The Gores Group is a global private equity firm specialized in acquiring and partnering with growing businesses.", - "ghostery_id": null, - "iab_vendor": null, - "id": "gores_group", - "name": "The Gores Group", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.gores.com/" - }, - "grand_slam_media": { - "description": null, - "ghostery_id": "2552", - "iab_vendor": null, - "id": "grand_slam_media", - "name": "Grand Slam Media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.grandslammedia.com/" - }, - "gravity": { - "description": null, - "ghostery_id": "1135", - "iab_vendor": null, - "id": "gravity", - "name": "Gravity", - "privacy_url": "http://privacy.aol.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.gravity.com/" - }, - "groovinads": { - "description": "GroovinAds provides intelligent dynamic ads that show the right offer and or message to each user, in every impression, boosting clicks.", - "ghostery_id": null, - "iab_vendor": null, - "id": "groovinads", - "name": "GroovinAds", - "privacy_url": "http://www.groovinads.com/en#contact", - "truste_type": null, - "website_url": "http://www.groovinads.com/en" - }, - "groundtruth": { - "description": "GroundTruth, the leading location technology company that drives results with real-world data.", - "ghostery_id": null, - "iab_vendor": null, - "id": "groundtruth", - "name": "GroundTruth", - "privacy_url": "https://www.groundtruth.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.groundtruth.com/" - }, - "groupm": { - "description": "GroupM is a global media investment management operation serving as the parent company to WPP media agencies including Mindshare, MEC, MediaCom and Maxus, each global operations in their own right with leading market positions.", - "ghostery_id": "274", - "iab_vendor": 98, - "id": "groupm", - "name": "GroupM", - "privacy_url": "https://www.groupm.com/privacy-policy", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.groupm.com/" - }, - "gruner_jahr_ag": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "gruner_jahr_ag", - "name": "Gruner + Jahr AG", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.guj.de/" - }, - "gumgum": { - "description": null, - "ghostery_id": "84", - "iab_vendor": 61, - "id": "gumgum", - "name": "GumGum, Inc.", - "privacy_url": "https://gumgum.com/privacy-policy", - "truste_type": null, - "website_url": "http://gumgum.com" - }, - "harris_ia": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "harris_ia", - "name": "Harris Insights & Analytics", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.theharrispoll.com/" - }, - "hatena_jp": { - "description": null, - "ghostery_id": "2573", - "iab_vendor": null, - "id": "hatena_jp", - "name": "Hatena Co., Ltd.", - "privacy_url": "http://www.hatena.ne.jp/rule/privacypolicy", - "truste_type": null, - "website_url": "http://www.hatena.ne.jp/" - }, - "heap": { - "description": null, - "ghostery_id": "2695", - "iab_vendor": null, - "id": "heap", - "name": "Heap", - "privacy_url": "https://heapanalytics.com/privacy", - "truste_type": null, - "website_url": "https://heapanalytics.com/" - }, - "heatmap": { - "description": "Real-time Analytics. Discover how users interact with your pages right now.", - "ghostery_id": "3511", - "iab_vendor": null, - "id": "heatmap", - "name": "Heatmap", - "privacy_url": "https://heatmap.me/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://heatmap.me/" - }, - "hi-media_performance": { - "description": null, - "ghostery_id": "1079", - "iab_vendor": null, - "id": "hi-media_performance", - "name": "Hi-media Performance", - "privacy_url": "http://www.hi-mediaperformance.co.uk/en_GB/index/informations-legales/optout", - "truste_type": null, - "website_url": "http://www.hi-mediaperformance.co.uk/en_GB" - }, - "highco": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "highco", - "name": "HighCo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.highco.com/" - }, - "highwinds": { - "description": null, - "ghostery_id": "4481", - "iab_vendor": null, - "id": "highwinds", - "name": "Highwinds", - "privacy_url": "https://www.highwinds.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.highwinds.com/" - }, - "histats": { - "description": "Website analytics company. ", - "ghostery_id": "238", - "iab_vendor": null, - "id": "histats", - "name": "Histats", - "privacy_url": "http://www.histats.com/?act=5", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.histats.com" - }, - "hola_cdn": { - "description": null, - "ghostery_id": "4896", - "iab_vendor": null, - "id": "hola_cdn", - "name": "Hola CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://holacdn.com/" - }, - "hotjar": { - "description": "Hotjar is a privately owned and funded company that develops intuitive and disruptive research and optimization tools for web businesses. It helps its customers realize how visitors are really using their websites. The service helps them collect feedback and turn more visitors into customers.", - "ghostery_id": "3632", - "iab_vendor": null, - "id": "hotjar", - "name": "Hotjar", - "privacy_url": "http://www.hotjar.com/privacy", - "truste_type": null, - "website_url": "http://www.hotjar.com/" - }, - "hubert_burda_media": { - "description": null, - "ghostery_id": "2810", - "iab_vendor": null, - "id": "hubert_burda_media", - "name": "Hubert Burda Media", - "privacy_url": "http://www.hubert-burda-media.com/privacy/", - "truste_type": null, - "website_url": "http://www.hubert-burda-media.com/" - }, - "hubspot": { - "description": null, - "ghostery_id": "86", - "iab_vendor": null, - "id": "hubspot", - "name": "HubSpot", - "privacy_url": "https://legal.hubspot.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.hubspot.com/" - }, - "hurra_communications": { - "description": null, - "ghostery_id": "843", - "iab_vendor": null, - "id": "hurra_communications", - "name": "Hurra Communications", - "privacy_url": "http://www.hurra.com/EN/privacy-policy", - "truste_type": null, - "website_url": "http://www.hurra.com/en/" - }, - "hybrid_adtech": { - "description": null, - "ghostery_id": null, - "iab_vendor": 206, - "id": "hybrid_adtech", - "name": "Hybrid Adtech GmbH", - "privacy_url": "https://hybrid.ai/data_protection_policy", - "truste_type": null, - "website_url": "https://hybrid.ai/" - }, - "i-mobile": { - "description": "The largest advertising network in Japan the covers all devices and various ad formats.", - "ghostery_id": "1769", - "iab_vendor": null, - "id": "i-mobile", - "name": "i-mobile", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www2.i-mobile.co.jp/en/index.aspx" - }, - "i.r.v.": { - "description": null, - "ghostery_id": "4493", - "iab_vendor": null, - "id": "i.r.v.", - "name": "I.R.V.", - "privacy_url": "http://www.contentexchange.me/terms-of-service/", - "truste_type": null, - "website_url": "https://www.contentexchange.me/" - }, - "iab": { - "description": "The Interactive Advertising Bureau (IAB) empowers the media and marketing industries to thrive in the digital economy.\n\nIt is comprised of more than 650 leading media and technology companies that are responsible for selling, delivering, and optimizing digital advertising or marketing campaigns.", - "ghostery_id": null, - "iab_vendor": null, - "id": "iab", - "name": "IAB", - "privacy_url": "https://www.iab.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.iab.com/" - }, - "iac_apps": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "iac_apps", - "name": "IAC (InterActiveCorp)", - "privacy_url": null, - "truste_type": null, - "website_url": "http://iac.com/" - }, - "iadvize": { - "description": null, - "ghostery_id": "2128", - "iab_vendor": null, - "id": "iadvize", - "name": "iAdvize", - "privacy_url": "http://www.iadvize.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.iadvize.com/" - }, - "ibm": { - "description": null, - "ghostery_id": "48", - "iab_vendor": null, - "id": "ibm", - "name": "IBM", - "privacy_url": "https://www.ibm.com/privacy/details/us/en/", - "truste_type": null, - "website_url": "https://www.ibm.com/us-en/marketplace/analytics-for-your-digital-properties" - }, - "igodigital": { - "description": null, - "ghostery_id": "689", - "iab_vendor": null, - "id": "igodigital", - "name": "iGoDigital", - "privacy_url": "http://www.igodigital.com/privacy", - "truste_type": null, - "website_url": "http://www.igodigital.com/" - }, - "ihs": { - "description": "IHS Inc. provides critical information and insight products and services through Internet-based applications and portals. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "ihs", - "name": "IHS", - "privacy_url": "https://ihsmarkit.com/Legal/privacy.html", - "truste_type": null, - "website_url": "www.ihs.com" - }, - "imgur": { - "description": "is an online image sharing community and image host.", - "ghostery_id": null, - "iab_vendor": null, - "id": "imgur", - "name": "Imgur", - "privacy_url": "https://imgur.com/privacy", - "truste_type": null, - "website_url": "https://imgur.com/" - }, - "imonomy": { - "description": null, - "ghostery_id": "3908", - "iab_vendor": null, - "id": "imonomy", - "name": "imonomy", - "privacy_url": "http://imonomy.com/privacy-policy/", - "truste_type": null, - "website_url": "http://imonomy.com" - }, - "impact": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "impact", - "name": "Impact", - "privacy_url": "https://impact.com/privacy-policy/", - "truste_type": null, - "website_url": "https://impact.com/" - }, - "impact_radius": { - "description": "Impact Radius enables digital brands and agencies to maximize the return of ad spend across digital, mobile and offline channels.", - "ghostery_id": "2230", - "iab_vendor": null, - "id": "impact_radius", - "name": "Impact Radius", - "privacy_url": "http://www.impactradius.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.impactradius.com/" - }, - "improve_digital": { - "description": null, - "ghostery_id": "523", - "iab_vendor": 253, - "id": "improve_digital", - "name": "Improve Digital International BV", - "privacy_url": "https://www.improvedigital.com/platform-privacy-policy", - "truste_type": null, - "website_url": "http://www.improvedigital.com/" - }, - "inbenta": { - "description": "Inbenta is a cloud-based, AI-powered Natural Language Search for customer support and e-commerce.", - "ghostery_id": null, - "iab_vendor": null, - "id": "inbenta", - "name": "Inbenta", - "privacy_url": "https://www.inbenta.com/en/about-us/privacy-policy/", - "truste_type": null, - "website_url": "https://www.inbenta.com/en/" - }, - "indeed": { - "description": null, - "ghostery_id": "2271", - "iab_vendor": null, - "id": "indeed", - "name": "Indeed", - "privacy_url": "https://www.indeed.com/legal#privacy", - "truste_type": null, - "website_url": "https://www.indeed.com/" - }, - "index_exchange": { - "description": "We\u2019re a global advertising marketplace where premium digital media companies sell their ad impressions transparently and in real time. Built on the pillars of neutrality, openness, and the most reliable technology, we\u2019re the ad exchange that media companies trust.", - "ghostery_id": "3794", - "iab_vendor": 10, - "id": "index_exchange", - "name": "Index Exchange, Inc. ", - "privacy_url": "http://www.indexexchange.com/privacy/", - "truste_type": null, - "website_url": "http://www.indexexchange.com" - }, - "infectious_media": { - "description": "Infectious Media is an international programmatic agency that partners with global brands to deliver effective and efficient media campaigns. ", - "ghostery_id": "650", - "iab_vendor": null, - "id": "infectious_media", - "name": "Infectious Media", - "privacy_url": "http://infectiousmedia.com/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://www.infectiousmedia.com/" - }, - "infolinks": { - "description": null, - "ghostery_id": "88", - "iab_vendor": null, - "id": "infolinks", - "name": "Infolinks", - "privacy_url": "http://www.infolinks.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.infolinks.com/" - }, - "infonline": { - "description": "We are a successful digital audience measurement provider founded in Bonn in 2002 measure use of over 1200 websites and around 800 mobile services (apps and mobile-enabled websites) work with our own independently developed next-generation innovative scalable central measurement procedure (SZMnG) measure over 50bn page impressions, around 5bn visits and 800m clients per month using SZMnG process data from our measurement system in our fail-safe data centres monitor all relevant servers and services 24/7, 365 days a year operate five service centers and assist our customers with technical and administrative queries boast a skilled team of over 40 full and part time employees train staff in various careers and are always happy to employ interns in our company\n", - "ghostery_id": "89", - "iab_vendor": null, - "id": "infonline", - "name": "INFOnline", - "privacy_url": "https://www.infonline.de/datenschutz/", - "truste_type": null, - "website_url": "https://www.infonline.de/" - }, - "innovid": { - "description": "Innovid is the world\u2019s leading video marketing platform for advertisers to create, deliver and measure video experiences on any device.", - "ghostery_id": null, - "iab_vendor": null, - "id": "innovid", - "name": "Innovid", - "privacy_url": "https://www.innovid.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.innovid.com/" - }, - "insider": { - "description": null, - "ghostery_id": "4816", - "iab_vendor": null, - "id": "insider", - "name": "Insider", - "privacy_url": null, - "truste_type": null, - "website_url": "http://useinsider.com/" - }, - "inspectlet": { - "description": "Inspectlet helps you gain a deeper understanding of what your visitors are thinking by observing their actions naturally. ", - "ghostery_id": "1254", - "iab_vendor": null, - "id": "inspectlet", - "name": "Inspectlet", - "privacy_url": "https://www.inspectlet.com/legal#privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.inspectlet.com/" - }, - "instart_logic_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "instart_logic_inc", - "name": "Instart Logic Inc.", - "privacy_url": "https://www.instartlogic.com/company/legal", - "truste_type": null, - "website_url": "https://www.instartlogic.com/" - }, - "intango": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "intango", - "name": "Intango", - "privacy_url": "https://intango.com/privacy-policy/", - "truste_type": null, - "website_url": "https://intango.com/" - }, - "integral_ad_science": { - "description": "IAS is a global technology and data company that empowers the advertising industry to effectively influence consumers everywhere.", - "ghostery_id": "474", - "iab_vendor": 278, - "id": "integral_ad_science", - "name": "Integral Ad Science, Inc.", - "privacy_url": "https://integralads.com/privacy-policy/", - "truste_type": null, - "website_url": "http://integralads.com/" - }, - "intelliad": { - "description": "The intelliAd Bidding tool automatically adjusts your CPC bids in search engine advertising based on your personal goals. The innovative Bietalgorithmus into account a variety of factors to find the optimal bid every day and improve your campaign performance.", - "ghostery_id": "2192", - "iab_vendor": null, - "id": "intelliad", - "name": "intelliAd", - "privacy_url": " http://www.intelliad.de/datenschutz/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.intelliad.de/" - }, - "intelligent_reach": { - "description": null, - "ghostery_id": "2589", - "iab_vendor": null, - "id": "intelligent_reach", - "name": "Intelligent Reach", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.intelligentreach.com/" - }, - "intent_iq": { - "description": "Intent IQ is a New York-based advertising technology company that provides services to consumers, website and mobile application publishers, and other companies.", - "ghostery_id": null, - "iab_vendor": null, - "id": "intent_iq", - "name": "Intent IQ", - "privacy_url": "https://www.intentiq.com/technology-privacy-policy/", - "truste_type": null, - "website_url": "https://www.intentiq.com/" - }, - "intent_media": { - "description": null, - "ghostery_id": "735", - "iab_vendor": 19, - "id": "intent_media", - "name": "Intent Media, Inc.", - "privacy_url": "https://intentmedia.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.intentmedia.com/" - }, - "intercom": { - "description": null, - "ghostery_id": "1161", - "iab_vendor": null, - "id": "intercom", - "name": "Intercom", - "privacy_url": "https://docs.intercom.com/pricing-privacy-and-terms/intercom-inc-privacy-policy", - "truste_type": null, - "website_url": "https://www.intercom.com/" - }, - "internet_billboard": { - "description": null, - "ghostery_id": "2835", - "iab_vendor": 428, - "id": "internet_billboard", - "name": "Internet BillBoard a.s.", - "privacy_url": "http://www.ibillboard.com/en/privacy-information/", - "truste_type": null, - "website_url": "http://www.ibillboard.com/en/" - }, - "intimate_merger": { - "description": null, - "ghostery_id": "4067", - "iab_vendor": null, - "id": "intimate_merger", - "name": "Intimate Merger", - "privacy_url": "https://corp.intimatemerger.com/privacypolicy-en/", - "truste_type": null, - "website_url": "https://corp.intimatemerger.com/" - }, - "investingchannel": { - "description": "Our mission is to be most innovative and scalable marketing platform in financial services. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "investingchannel", - "name": "InvestingChannel, Inc.", - "privacy_url": "http://www.investingchannel.com/policy", - "truste_type": null, - "website_url": "http://www.investingchannel.com/" - }, - "iotec": { - "description": null, - "ghostery_id": null, - "iab_vendor": 113, - "id": "iotec", - "name": "iotec global Ltd.", - "privacy_url": "https://www.iotecglobal.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.iotecglobal.com/" - }, - "iovation": { - "description": null, - "ghostery_id": "388", - "iab_vendor": null, - "id": "iovation", - "name": "iovation", - "privacy_url": "https://www.iovation.com/legal/privacy/", - "truste_type": null, - "website_url": "http://www.iovation.com/" - }, - "ip_de": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "ip_de", - "name": "IP Deutschland", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ip.de/" - }, - "iperceptions": { - "description": "A trusted market research firm and global leader in Voice of Customer analytics, iPerceptions captures customer perceptions in the moment of truth using advanced intercept technologies and proven research frameworks to deliver action in real-time.", - "ghostery_id": "92", - "iab_vendor": null, - "id": "iperceptions", - "name": "iPerceptions", - "privacy_url": "https://www.iperceptions.com/en/privacy-policy", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.iperceptions.com/" - }, - "ipg_mediabrands": { - "description": null, - "ghostery_id": "4181", - "iab_vendor": null, - "id": "ipg_mediabrands", - "name": "IPG Mediabrands", - "privacy_url": "https://www.ipgmediabrands.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.ipgmediabrands.com/" - }, - "ipromote": { - "description": "iPromote offers an automated self-serve platform that helps SMBs access the benefits of local display advertising.", - "ghostery_id": null, - "iab_vendor": null, - "id": "ipromote", - "name": "iPromote", - "privacy_url": "https://www.ipromote.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.ipromote.com/" - }, - "ironsource": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "ironsource", - "name": "ironSource", - "privacy_url": null, - "truste_type": null, - "website_url": "www.ironsrc.com" - }, - "ixi_services": { - "description": null, - "ghostery_id": "827", - "iab_vendor": null, - "id": "ixi_services", - "name": "IXI Services", - "privacy_url": "https://datadrivenmarketing.equifax.com/website-privacy-policy/", - "truste_type": null, - "website_url": "http://www.ixicorp.com/" - }, - "jetlore": { - "description": null, - "ghostery_id": "4815", - "iab_vendor": null, - "id": "jetlore", - "name": "Jetlore", - "privacy_url": "http://www.jetlore.com/privacy", - "truste_type": null, - "website_url": "http://www.jetlore.com/" - }, - "jivox": { - "description": null, - "ghostery_id": "1872", - "iab_vendor": 294, - "id": "jivox", - "name": "Jivox Corp", - "privacy_url": "http://www.jivox.com/privacy", - "truste_type": null, - "website_url": "http://www.jivox.com/" - }, - "js_foundation": { - "description": "JS Foundation supports some of the most important projects in the JavaScript ecosystem.", - "ghostery_id": null, - "iab_vendor": null, - "id": "js_foundation", - "name": "JS Foundation", - "privacy_url": "https://js.foundation/about/governance/privacy-policy", - "truste_type": null, - "website_url": "https://js.foundation/" - }, - "juggcash": { - "description": null, - "ghostery_id": "2021", - "iab_vendor": null, - "id": "juggcash", - "name": "JuggCash", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.juggcash.com" - }, - "juicyads": { - "description": null, - "ghostery_id": "806", - "iab_vendor": null, - "id": "juicyads", - "name": "JuicyAds", - "privacy_url": "http://www.juicyads.com/tos.php", - "truste_type": null, - "website_url": "http://www.juicyads.com/" - }, - "just_premium": { - "description": null, - "ghostery_id": "2882", - "iab_vendor": 62, - "id": "just_premium", - "name": "Justpremium BV", - "privacy_url": null, - "truste_type": null, - "website_url": "http://justpremium.com/" - }, - "jw_player": { - "description": "JW Player offers an advanced and flexible media player for publishing videos, running video ads, and streaming web content", - "ghostery_id": "4338", - "iab_vendor": null, - "id": "jw_player", - "name": "JW Player", - "privacy_url": "https://www.jwplayer.com/privacy/", - "truste_type": "Service Provider", - "website_url": "https://www.jwplayer.com/" - }, - "kaltura": { - "description": null, - "ghostery_id": "1480", - "iab_vendor": null, - "id": "kaltura", - "name": "Kaltura", - "privacy_url": "http://corp.kaltura.com/privacy-policy", - "truste_type": null, - "website_url": "http://corp.kaltura.com/" - }, - "kameleoon": { - "description": null, - "ghostery_id": "3044", - "iab_vendor": null, - "id": "kameleoon", - "name": "Kameleoon", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.kameleoon.com/" - }, - "kbm_group": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "kbm_group", - "name": "KBM Group", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.kbmg.com/" - }, - "keen_io": { - "description": null, - "ghostery_id": "2915", - "iab_vendor": null, - "id": "keen_io", - "name": "Keen IO", - "privacy_url": "https://keen.io/privacy-policy?source=footer", - "truste_type": null, - "website_url": "https://keen.io" - }, - "kenshoo": { - "description": null, - "ghostery_id": "1299", - "iab_vendor": null, - "id": "kenshoo", - "name": "Kenshoo", - "privacy_url": "http://kenshoo.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.kenshoo.com/" - }, - "king.com": { - "description": null, - "ghostery_id": "1750", - "iab_vendor": null, - "id": "king.com", - "name": "King.com", - "privacy_url": "http://about.king.com/consumer-terms/terms/en#privacy", - "truste_type": null, - "website_url": "http://www.king.com/" - }, - "kiosked": { - "description": "Kiosked is the world\u2019s leading in-content advertising platform that drives viewability and relevancy of ads. Kiosked does this by turning publishers content into unique targeted ad placements based on contextual and behavioral data. Kiosked has been selected as one of the world\u2019s best technology companies. ", - "ghostery_id": "3136", - "iab_vendor": null, - "id": "kiosked", - "name": "Kiosked", - "privacy_url": "http://www.kiosked.com/privacy-policy.html", - "truste_type": "Ad Platform", - "website_url": "http://www.kiosked.com/" - }, - "komoona": { - "description": "Komoona is a dynamic yield optimization platform working across all major RTB exchanges and demand sources, to ensure maximum revenue for our publishers.", - "ghostery_id": "1865", - "iab_vendor": null, - "id": "komoona", - "name": "Komoona", - "privacy_url": "https://www.komoona.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "http://www.komoona.com/#home" - }, - "kontext": { - "description": null, - "ghostery_id": "4743", - "iab_vendor": null, - "id": "kontext", - "name": "Kontext", - "privacy_url": "http://www.kontextr.com/datenschutzerklaerung/", - "truste_type": null, - "website_url": "https://www.kontextr.com/" - }, - "kwanko": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "kwanko", - "name": "Kwanko", - "privacy_url": "https://www.kwanko.com/en/privacy-policy/", - "truste_type": null, - "website_url": "https://www.kwanko.com/" - }, - "latimes": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "latimes", - "name": "Los Angeles Times", - "privacy_url": "http://www.tronc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.latimes.com/" - }, - "le_monde.fr": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "le_monde.fr", - "name": "Le Monde.fr", - "privacy_url": "http://www.lemonde.fr/service/donnees_personnelles.html", - "truste_type": null, - "website_url": "http://www.lemonde.fr/" - }, - "leadplace": { - "description": null, - "ghostery_id": "3989", - "iab_vendor": 244, - "id": "leadplace", - "name": "Leadplace - Temelio", - "privacy_url": "https://temelio.com/vie-privee", - "truste_type": null, - "website_url": "http://leadplace.co.uk/" - }, - "lengow": { - "description": null, - "ghostery_id": "2127", - "iab_vendor": null, - "id": "lengow", - "name": "Lengow", - "privacy_url": "https://www.lengow.com/legal-notice/", - "truste_type": null, - "website_url": "http://www.lengow.com/" - }, - "level3_communications": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "level3_communications", - "name": "Level 3 Communications, Inc.", - "privacy_url": "http://www.level3.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.level3.com/en/" - }, - "lifestreet_media": { - "description": null, - "ghostery_id": "1310", - "iab_vendor": 67, - "id": "lifestreet_media", - "name": "LifeStreet Corporation", - "privacy_url": "http://www.lifestreet.com/privacy/", - "truste_type": null, - "website_url": "http://lifestreetmedia.com/" - }, - "lightInthebox": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "lightInthebox", - "name": "LightInTheBox.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.lightinthebox.com/" - }, - "limelight_networks": { - "description": "Limelight Networks provides content delivery network services to deliver digital content over the internet.", - "ghostery_id": null, - "iab_vendor": null, - "id": "limelight_networks", - "name": "Limelight Networks", - "privacy_url": "https://media.limelight.com/documents/Limelight+Networks+Privacy+Policy+06-2018.pdf", - "truste_type": null, - "website_url": "https://www.limelight.com/" - }, - "line": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "line", - "name": "LINE Corporation", - "privacy_url": "https://terms.line.me/line_rules/?lang=en-US", - "truste_type": null, - "website_url": "https://line.me/" - }, - "linkpulse": { - "description": null, - "ghostery_id": "2368", - "iab_vendor": null, - "id": "linkpulse", - "name": "Linkpulse", - "privacy_url": "http://www.linkpulse.com/privacy", - "truste_type": null, - "website_url": "http://www.linkpulse.com/" - }, - "links_lab": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "links_lab", - "name": "Links Lab", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.links-lab.fr/" - }, - "liquidm": { - "description": null, - "ghostery_id": null, - "iab_vendor": 254, - "id": "liquidm", - "name": "LiquidM Technology GmbH", - "privacy_url": "https://liquidm.com/privacy-policy/", - "truste_type": null, - "website_url": "https://liquidm.com/" - }, - "livechat": { - "description": null, - "ghostery_id": "2653", - "iab_vendor": null, - "id": "livechat", - "name": "LiveChat", - "privacy_url": "http://www.livechatinc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.livechatinc.com" - }, - "livefyre": { - "description": null, - "ghostery_id": "2414", - "iab_vendor": null, - "id": "livefyre", - "name": "Livefyre", - "privacy_url": "http://www.livefyre.com/privacy/", - "truste_type": null, - "website_url": "http://www.livefyre.com/" - }, - "liveintent": { - "description": null, - "ghostery_id": "674", - "iab_vendor": 148, - "id": "liveintent", - "name": "Liveintent Inc.", - "privacy_url": "https://liveintent.com/services-privacy-policy/", - "truste_type": null, - "website_url": "http://www.liveintent.com/" - }, - "liveinternet": { - "description": "LiveInternet is a Russian web portal and social networking site.", - "ghostery_id": "224", - "iab_vendor": null, - "id": "liveinternet", - "name": "LiveInternet", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.liveinternet.ru/" - }, - "liveperson": { - "description": null, - "ghostery_id": "100", - "iab_vendor": null, - "id": "liveperson", - "name": "LivePerson", - "privacy_url": "http://www.liveperson.com/policies/privacy", - "truste_type": null, - "website_url": "http://www.liveperson.com/" - }, - "loggly": { - "description": null, - "ghostery_id": "2283", - "iab_vendor": null, - "id": "loggly", - "name": "Loggly", - "privacy_url": "https://www.loggly.com/about/privacy-policy/", - "truste_type": null, - "website_url": "https://www.loggly.com/" - }, - "lotame": { - "description": null, - "ghostery_id": "103", - "iab_vendor": 95, - "id": "lotame", - "name": "Lotame Solutions, Inc.", - "privacy_url": "https://www.lotame.com/about-lotame/privacy/", - "truste_type": null, - "website_url": "http://www.lotame.com" - }, - "m-pathy": { - "description": null, - "ghostery_id": "3363", - "iab_vendor": null, - "id": "m-pathy", - "name": "m-pathy", - "privacy_url": "http://www.m-pathy.com/cms/datenschutz", - "truste_type": null, - "website_url": "http://www.m-pathy.com/" - }, - "macropod_software": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "macropod_software", - "name": "Macropod Software Pty Ltd", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.macropodsoftware.com/index.html" - }, - "magnetic": { - "description": "Magnetic is a marketing platform that helps provide information about the users around the world. ", - "ghostery_id": "532", - "iab_vendor": null, - "id": "magnetic", - "name": "Magnetic", - "privacy_url": "http://www.magnetic.com/about/privacy/", - "truste_type": "Ad Network", - "website_url": "http://www.magnetic.com/" - }, - "mailerlite": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "mailerlite", - "name": "MailerLite", - "privacy_url": "https://www.mailerlite.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.mailerlite.com/" - }, - "marin_software": { - "description": "The Leading Cross-Channel Performance Advertising Platform. Run your channels independently, or run them in concert.", - "ghostery_id": "226", - "iab_vendor": null, - "id": "marin_software", - "name": "Marin Software", - "privacy_url": " http://www.marinsoftware.com/privacy/privacy-central", - "truste_type": "Ad Platform", - "website_url": "http://www.marinsoftware.com/" - }, - "marketgid_usa": { - "description": null, - "ghostery_id": "577", - "iab_vendor": 358, - "id": "marketgid_usa", - "name": "MGID Inc.", - "privacy_url": "https://www.mgid.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.mgid.com/" - }, - "marketo": { - "description": "Marketo provides a complete marketing automation software solution for fast-growing small companies and global enterprises alike. ", - "ghostery_id": "108", - "iab_vendor": null, - "id": "marketo", - "name": "Marketo", - "privacy_url": " http://legal.marketo.com/privacy/", - "truste_type": "Service Provider", - "website_url": "http://www.marketo.com/" - }, - "markmonitor": { - "description": null, - "ghostery_id": "2149", - "iab_vendor": null, - "id": "markmonitor", - "name": "MarkMonitor", - "privacy_url": "https://www.markmonitor.com/legal/privacy.php", - "truste_type": null, - "website_url": "https://www.markmonitor.com/" - }, - "maruedr": { - "description": null, - "ghostery_id": "4605", - "iab_vendor": null, - "id": "maruedr", - "name": "MaruEdr", - "privacy_url": "http://public.edigitalresearch.com/privacy", - "truste_type": null, - "website_url": "https://www.maruedr.com" - }, - "maxmind": { - "description": null, - "ghostery_id": "1460", - "iab_vendor": null, - "id": "maxmind", - "name": "MaxMind", - "privacy_url": " https://www.maxmind.com/en/privacy_policy", - "truste_type": null, - "website_url": "http://www.maxmind.com/ " - }, - "maxpoint_interactive": { - "description": null, - "ghostery_id": "613", - "iab_vendor": null, - "id": "maxpoint_interactive", - "name": "MaxPoint Interactive", - "privacy_url": "http://www.maxpointinteractive.com/privacy-policy/", - "truste_type": null, - "website_url": "http://maxpoint.com/us" - }, - "mcafee": { - "description": null, - "ghostery_id": "1141", - "iab_vendor": null, - "id": "mcafee", - "name": "McAfee", - "privacy_url": "http://www.mcafee.com/common/privacy/english/docs/mcafee-privacypolicy.pdf", - "truste_type": null, - "website_url": "http://www.mcafee.com/us/" - }, - "medallia": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "medallia", - "name": "Medallia Inc. ", - "privacy_url": "https://www.medallia.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.medallia.com/" - }, - "media.net": { - "description": null, - "ghostery_id": "1879", - "iab_vendor": 142, - "id": "media.net", - "name": "Media.net Advertising FZ-LLC", - "privacy_url": "https://www.media.net/en/privacy-policy", - "truste_type": null, - "website_url": "http://www.media.net/" - }, - "media_impact": { - "description": null, - "ghostery_id": "4847", - "iab_vendor": null, - "id": "media_impact", - "name": "Media Impact", - "privacy_url": "https://mediaimpact.de/artikel/-Hinweise-zum-Datenschutz_768445.html", - "truste_type": null, - "website_url": "https://mediaimpact.de/index.html" - }, - "media_innovation_group": { - "description": null, - "ghostery_id": "259", - "iab_vendor": null, - "id": "media_innovation_group", - "name": "Media Innovation Group", - "privacy_url": "http://www.themig.com/en-us/privacy.html", - "truste_type": null, - "website_url": "http://www.themig.com/en-us/" - }, - "mediamath": { - "description": "MediaMath develops and delivers digital advertising media and data management technology solutions to advertisers worldwide.", - "ghostery_id": "290", - "iab_vendor": 79, - "id": "mediamath", - "name": "MediaMath, Inc.", - "privacy_url": "http://www.mediamath.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.mediamath.com/" - }, - "mediametrie": { - "description": null, - "ghostery_id": "379", - "iab_vendor": null, - "id": "mediametrie", - "name": "Mediametrie", - "privacy_url": "http://www.mediametrie.com/pages/privacy-policy.php?page=86", - "truste_type": null, - "website_url": "http://www.mediametrie.com/" - }, - "mediarithmics": { - "description": null, - "ghostery_id": null, - "iab_vendor": 184, - "id": "mediarithmics", - "name": "mediarithmics SAS", - "privacy_url": "http://www.mediarithmics.com/en/data-privacy.html", - "truste_type": null, - "website_url": "https://www.mediarithmics.com/" - }, - "mediascope": { - "description": "Our company has existed for over 20 years and occupies a leading position in the Russian research market. In the beginning of 2017, after the rebranding, the name of the company changed from CJSC TNS Gallup Media (TNS Russia) to Mediascope.(further Mediascope). Our main specialization is the study of media audiences and the monitoring of advertising and media. In our work we are guided by international standards of research, developed by the international association ESOMAR and Russian OIROM. For specialists of various companies, including media holdings and advertising agencies, Mediascope information bases serve as the basis for making strategic decisions. Our clients are the majority of participants in the media and advertising market: advertising agencies and groups, publishing houses, television channels, radio stations, Internet sites, professional associations.", - "ghostery_id": null, - "iab_vendor": null, - "id": "mediascope", - "name": "Mediascope", - "privacy_url": "https://tns-counter.ru/policy.html", - "truste_type": null, - "website_url": "http://mediascope.net/" - }, - "medium": { - "description": "Medium is a platform for people to share their ideas and stories with the right audiences.", - "ghostery_id": null, - "iab_vendor": null, - "id": "medium", - "name": "Medium", - "privacy_url": "https://medium.com/policy/medium-privacy-policy-f03bf92035c9", - "truste_type": "Social / Sharing Tools", - "website_url": "https://medium.com/" - }, - "meetrics": { - "description": null, - "ghostery_id": "1073", - "iab_vendor": 152, - "id": "meetrics", - "name": "Meetrics GmbH", - "privacy_url": "https://www.meetrics.com/en/data-privacy/", - "truste_type": null, - "website_url": "https://www.meetrics.com/en/" - }, - "megafon": { - "description": "Megafon is a Russian integrated telecommunications operator that holds positions in the telecommunications market of Russia and the world. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "megafon", - "name": "Megafon", - "privacy_url": "http://moscow.megafon.ru/download/~federal/politika_konfiden.pdf", - "truste_type": null, - "website_url": "https://corp.megafon.com/" - }, - "metapeople": { - "description": null, - "ghostery_id": "2783", - "iab_vendor": null, - "id": "metapeople", - "name": "Metapeople", - "privacy_url": "http://www.metapeople.com/datenschutz/", - "truste_type": null, - "website_url": "http://www.metapeople.com/" - }, - "metrigo": { - "description": null, - "ghostery_id": "2100", - "iab_vendor": null, - "id": "metrigo", - "name": "Metrigo", - "privacy_url": "http://metrigo.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://metrigo.com/" - }, - "microsoft": { - "description": "Microsoft is an American multinational corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.", - "ghostery_id": null, - "iab_vendor": null, - "id": "microsoft", - "name": "Microsoft", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.microsoft.com/" - }, - "millenial_media__jumptap_": { - "description": null, - "ghostery_id": "528", - "iab_vendor": null, - "id": "millenial_media__jumptap_", - "name": "Millenial Media (Jumptap)", - "privacy_url": "http://www.millennialmedia.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.millennialmedia.com" - }, - "millward_brown": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "millward_brown", - "name": "Millward Brown", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.millwardbrowndigital.com/" - }, - "mixpanel": { - "description": "Mixpanel is an analytics platform for the mobile and web, supporting businesses to study consumer behavior.", - "ghostery_id": "227", - "iab_vendor": null, - "id": "mixpanel", - "name": "Mixpanel", - "privacy_url": "https://mixpanel.com/legal/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://mixpanel.com/" - }, - "monetate": { - "description": null, - "ghostery_id": "601", - "iab_vendor": null, - "id": "monetate", - "name": "Monetate", - "privacy_url": "http://www.monetate.com/platform-privacy-policy/?p=platform-policy/", - "truste_type": null, - "website_url": "http://monetate.com" - }, - "monster_worldwide": { - "description": "Monster Worldwide is an employment website based in the United States and is primarily used to help those seeking work to find job openings, for lower to mid-level employment, that match their skills and location.", - "ghostery_id": "723", - "iab_vendor": null, - "id": "monster_worldwide", - "name": "Monster Worldwide", - "privacy_url": "http://inside.monster.com/ad-policy/inside2.aspx", - "truste_type": "Ad Network", - "website_url": "http://www.monster.com/" - }, - "mopinion": { - "description": "Mopinion is a Rotterdam (NL) based technology company founded in 2013. It offers customer feedback analytics software for websites and apps.", - "ghostery_id": null, - "iab_vendor": null, - "id": "mopinion", - "name": "Mopinion", - "privacy_url": "https://mopinion.com/privacy/", - "truste_type": null, - "website_url": "https://mopinion.com/" - }, - "mouseflow": { - "description": "Mouseflow is a SaaS-based tool for performing web analytics and real-time user studies on websites.", - "ghostery_id": "418", - "iab_vendor": null, - "id": "mouseflow", - "name": "Mouseflow", - "privacy_url": "http://mouseflow.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "http://mouseflow.com/" - }, - "mux_inc": { - "description": null, - "ghostery_id": "4482", - "iab_vendor": null, - "id": "mux_inc", - "name": "Mux, Inc.", - "privacy_url": "https://mux.com/privacy", - "truste_type": null, - "website_url": "https://mux.com/" - }, - "mycom_bv": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "mycom_bv", - "name": "My.com B.V.", - "privacy_url": null, - "truste_type": null, - "website_url": "https://mediator.media/" - }, - "myfonts": { - "description": null, - "ghostery_id": "2683", - "iab_vendor": null, - "id": "myfonts", - "name": "MyFonts", - "privacy_url": "https://www.myfonts.com/info/legal/#Privacy", - "truste_type": null, - "website_url": "http://www.myfonts.com/" - }, - "mythings_": { - "description": null, - "ghostery_id": "617", - "iab_vendor": null, - "id": "mythings_", - "name": "MyThings ", - "privacy_url": "http://www.mythings.com/?page_id=8338", - "truste_type": null, - "website_url": "http://www.mythings.com/" - }, - "nanigans": { - "description": "Nanigans advertising automation software powers the world\u2019s leading in-house performance marketing teams. Offered as Software-as-a-Service, Nanigans software features programmatic media buying, predictive revenue optimization, and real-time business intelligence across today\u2019s most valuable channels. ", - "ghostery_id": "1751", - "iab_vendor": null, - "id": "nanigans", - "name": "Nanigans", - "privacy_url": "http://www.nanigans.com/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "http://www.nanigans.com/" - }, - "nano_interactive": { - "description": null, - "ghostery_id": null, - "iab_vendor": 72, - "id": "nano_interactive", - "name": "Nano Interactive GmbH", - "privacy_url": "http://www.nanointeractive.com/privacy", - "truste_type": null, - "website_url": "http://www.nanointeractive.com/home" - }, - "nativo": { - "description": null, - "ghostery_id": "2568", - "iab_vendor": 263, - "id": "nativo", - "name": "Nativo, Inc.", - "privacy_url": "https://www.nativo.com/interest-based-ads", - "truste_type": null, - "website_url": "http://www.nativo.net/" - }, - "navegg": { - "description": "Navegg is a technology company that operates in partnership with major publishers and agencies to approach brands and people in the digital environment. ", - "ghostery_id": null, - "iab_vendor": null, - "id": "navegg", - "name": "Navegg", - "privacy_url": "https://www.navegg.com/en/privacy-policy/", - "truste_type": "Data Management Platform (DMP)", - "website_url": "https://www.navegg.com/en/" - }, - "naver": { - "description": null, - "ghostery_id": "4249", - "iab_vendor": null, - "id": "naver", - "name": "NAVER Corp", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.naver.com/" - }, - "nbcuniversal": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "nbcuniversal", - "name": "NBCUniversal, LLC", - "privacy_url": "https://www.nbcuniversal.com/privacy", - "truste_type": null, - "website_url": "https://www.nbcuniversal.com/" - }, - "nekudo": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "nekudo", - "name": "Nekudo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://nekudo.com/" - }, - "neory": { - "description": null, - "ghostery_id": "2612", - "iab_vendor": 34, - "id": "neory", - "name": "NEORY GmbH", - "privacy_url": "https://www.neory.com/privacy.html", - "truste_type": null, - "website_url": "https://www.neory.com/" - }, - "net-metrix": { - "description": null, - "ghostery_id": "2625", - "iab_vendor": null, - "id": "net-metrix", - "name": "NET-Metrix", - "privacy_url": "http://www.net-metrix.ch/ueber-uns/datenschutz", - "truste_type": null, - "website_url": "http://www.net-metrix.ch/" - }, - "netbiscuits": { - "description": "Netbiscuits is a cloud platform for the development and delivery of web apps across mobile and connected devices. ", - "ghostery_id": "3606", - "iab_vendor": null, - "id": "netbiscuits", - "name": "Netbiscuits", - "privacy_url": "http://www.netbiscuits.com/full-privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.netbiscuits.net/" - }, - "netmining": { - "description": "Netmining provides intelligent audience targeting, powered by data and shaped by the best analytical minds in the business. ", - "ghostery_id": "298", - "iab_vendor": null, - "id": "netmining", - "name": "Netmining", - "privacy_url": "http://www.ignitionone.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.netmining.com/" - }, - "netseer": { - "description": null, - "ghostery_id": "938", - "iab_vendor": null, - "id": "netseer", - "name": "NetSeer", - "privacy_url": "http://www.netseer.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.netseer.com/" - }, - "netsprint": { - "description": null, - "ghostery_id": null, - "iab_vendor": 160, - "id": "netsprint", - "name": "Netsprint SA", - "privacy_url": "http://spoldzielnia.nsaudience.pl/opt-out/", - "truste_type": null, - "website_url": "http://netsprint.eu/" - }, - "netzeffekt": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "netzeffekt", - "name": "netzeffekt", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.netzeffekt.de/" - }, - "neustar": { - "description": null, - "ghostery_id": "307", - "iab_vendor": null, - "id": "neustar", - "name": "Neustar ", - "privacy_url": "https://www.neustar.biz/privacy/privacy_policy", - "truste_type": null, - "website_url": "http://www.neustar.biz/marketing-solutions#.U-kEJZSwJTM" - }, - "new_relic": { - "description": "New Relic is a digital intelligence company, delivering full-stack visibility and analytics with more than 14,000 paid business accounts. ", - "ghostery_id": "942", - "iab_vendor": null, - "id": "new_relic", - "name": "New Relic", - "privacy_url": "https://newrelic.com/privacy", - "truste_type": null, - "website_url": "https://newrelic.com/" - }, - "news_corp": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "news_corp", - "name": "News Corp", - "privacy_url": null, - "truste_type": null, - "website_url": "https://newscorp.com/" - }, - "nexstar": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "nexstar", - "name": "Nexstar Digital, LLC.", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.nexstar.tv/digital/" - }, - "nextperf": { - "description": null, - "ghostery_id": "656", - "iab_vendor": null, - "id": "nextperf", - "name": "Nextperf", - "privacy_url": "http://www.nextperf.com/privacy/", - "truste_type": null, - "website_url": "http://www.nextperf.com/" - }, - "nielsen": { - "description": "Nielsen is a global information and measurement company with leading market positions in marketing and consumer information, television and other media measurement, online intelligence and mobile measurement.", - "ghostery_id": "167", - "iab_vendor": null, - "id": "nielsen", - "name": "Nielsen", - "privacy_url": "https://www.nielsen.com/us/en/about-us/privacy.html", - "truste_type": null, - "website_url": "https://www.nielsen.com/us/en.html" - }, - "nightdev": { - "description": "NightDev is a software development company building tools for live broadcasters.", - "ghostery_id": null, - "iab_vendor": null, - "id": "nightdev", - "name": "NightDev, LLC", - "privacy_url": null, - "truste_type": null, - "website_url": "https://nightdev.com/" - }, - "noosphere": { - "description": "Association Noosphere is a non-governmental, non-commercial organization established for scientific research and information provisioning.", - "ghostery_id": null, - "iab_vendor": null, - "id": "noosphere", - "name": "Noosphere", - "privacy_url": "https://noosphereglobal.com/legal-information/", - "truste_type": null, - "website_url": "https://noosphereglobal.com/" - }, - "nugg.ad": { - "description": "nugg.ad offers a cutting edge multichannel audience targeting and smart data management platform solution.", - "ghostery_id": "450", - "iab_vendor": null, - "id": "nugg.ad", - "name": "Nugg.ad", - "privacy_url": "https://www.nugg.ad/en/privacy/general-information.html", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.nugg.ad/en/index" - }, - "o2.pl": { - "description": "O2.pl is an Internet platform that allows access to sites, services and content groups Virtual Poland, other entities, and users.", - "ghostery_id": null, - "iab_vendor": null, - "id": "o2.pl", - "name": "o2.pl", - "privacy_url": "http://sgcdn.o2.pl.sds.o2.pl/cookies_WPM_v.11.10.2017.pdf", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.o2.pl/" - }, - "olark": { - "description": null, - "ghostery_id": "1008", - "iab_vendor": null, - "id": "olark", - "name": "Olark", - "privacy_url": "https://www.olark.com/tos", - "truste_type": null, - "website_url": "https://www.olark.com/" - }, - "omniconvert": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "omniconvert", - "name": "Omniconvert", - "privacy_url": "https://www.omniconvert.com/privacy", - "truste_type": null, - "website_url": "https://www.omniconvert.com/" - }, - "onesignal": { - "description": "OneSignal provides a simple interface to push notifications and email, letting content creators focus on quality user engagement instead of complex implementation. ", - "ghostery_id": "4304", - "iab_vendor": null, - "id": "onesignal", - "name": "OneSignal", - "privacy_url": "https://onesignal.com/privacy_policy", - "truste_type": "Ad Platform", - "website_url": "https://onesignal.com/" - }, - "onesoon": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "onesoon", - "name": "OneSoon Ltd", - "privacy_url": "https://www.adalyser.com/privacy", - "truste_type": null, - "website_url": "http://www.adalyser.com" - }, - "onet.pl": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "onet.pl", - "name": "Onet.pl SA", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.onet.pl/" - }, - "onetrust": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "onetrust", - "name": "OneTrust", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.onetrust.com/" - }, - "onfocus": { - "description": null, - "ghostery_id": "5021", - "iab_vendor": null, - "id": "onfocus", - "name": "OnFocus", - "privacy_url": null, - "truste_type": null, - "website_url": "http://onfocus.io/" - }, - "onthe.io": { - "description": null, - "ghostery_id": "4494", - "iab_vendor": null, - "id": "onthe.io", - "name": "onthe.io", - "privacy_url": "https://onthe.io/pp", - "truste_type": null, - "website_url": "https://t.onthe.io/media" - }, - "openx": { - "description": "OpenX provides digital and advertising technologies that optimize a company's advertising revenue. OpenX powers highly relevant advertising at global scale, delivering quality and value to brands, publishers and consumers across every type of connected screen and ad format.", - "ghostery_id": "131", - "iab_vendor": 69, - "id": "openx", - "name": "OpenX Software Ltd.", - "privacy_url": "https://www.openx.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "http://www.openx.com/" - }, - "optimatic": { - "description": null, - "ghostery_id": "2319", - "iab_vendor": null, - "id": "optimatic", - "name": "Optimatic", - "privacy_url": "http://www.optimatic.com/wp-content/uploads/2016/11/Privacy_Policy11-16.pdf", - "truste_type": null, - "website_url": "http://www.optimatic.com/" - }, - "optimise_it": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "optimise_it", - "name": "Optimise-it", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.optimise-it.de/" - }, - "optimizely": { - "description": "Optimizely is the world's leader in customer experience optimization, allowing businesses to dramatically drive up the value of their digital products, commerce and campaigns through its best in class experimentation software platform.", - "ghostery_id": null, - "iab_vendor": null, - "id": "optimizely", - "name": "Optimizely", - "privacy_url": "https://www.optimizely.com/privacy/", - "truste_type": null, - "website_url": "https://www.optimizely.com/" - }, - "optimonk": { - "description": null, - "ghostery_id": "4201", - "iab_vendor": null, - "id": "optimonk", - "name": "OptiMonk", - "privacy_url": "https://www.optimonk.com/privacy_policy", - "truste_type": null, - "website_url": "https://www.optimonk.com/" - }, - "optincollect": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "optincollect", - "name": "OptinCollect", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.optincollect.com/en" - }, - "optinmonster": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "optinmonster", - "name": "OptinMonster", - "privacy_url": "https://optinmonster.com/privacy/", - "truste_type": null, - "website_url": "https://optinmonster.com/" - }, - "ora.tv": { - "description": null, - "ghostery_id": "4789", - "iab_vendor": null, - "id": "ora.tv", - "name": "Ora.TV", - "privacy_url": "http://www.ora.tv/privacy", - "truste_type": null, - "website_url": "http://www.ora.tv/" - }, - "oracle": { - "description": "Oracle is an integrated cloud applications and platform services firm that offers complete SaaS application suites for ERP, HCM and CX.", - "ghostery_id": null, - "iab_vendor": 385, - "id": "oracle", - "name": "Oracle", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": "Service Provider", - "website_url": "http://www.oracle.com/" - }, - "orange_france": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "orange_france", - "name": "Orange France", - "privacy_url": "http://c.orange.fr/donnees-personnelles.html", - "truste_type": null, - "website_url": "https://www.orange.fr/" - }, - "orange_mobile": { - "description": null, - "ghostery_id": "1203", - "iab_vendor": null, - "id": "orange_mobile", - "name": "Orange Mobile", - "privacy_url": "http://web.orange.co.uk/documents/ice/privacy/orange_privacy_and_cookie_policy_for_mobile_20101206.pdf", - "truste_type": null, - "website_url": "http://www.orange.co.uk/ http://ee.co.uk/our-company/about-us" - }, - "outbrain": { - "description": "Outbrain is a content discovery platform providing publishers a service for recommended links to increase traffic and generate revenue.", - "ghostery_id": "1043", - "iab_vendor": 164, - "id": "outbrain", - "name": "Outbrain", - "privacy_url": "https://www.outbrain.com/legal/", - "truste_type": null, - "website_url": "http://www.outbrain.com/" - }, - "owneriq": { - "description": "OwnerIQ provides online advertising solutions and marketing channels for brands, retailers, and manufacturers.", - "ghostery_id": "321", - "iab_vendor": null, - "id": "owneriq", - "name": "OwnerIQ", - "privacy_url": "http://www.owneriq.com/privacy-policy", - "truste_type": "Data Management Platform (DMP)", - "website_url": "http://www.owneriq.com/" - }, - "owox_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "owox_inc", - "name": "OWOX Inc.", - "privacy_url": "https://www.owox.com/policies/privacy/", - "truste_type": null, - "website_url": "https://www.owox.com/" - }, - "pagefair": { - "description": null, - "ghostery_id": "2675", - "iab_vendor": null, - "id": "pagefair", - "name": "PageFair", - "privacy_url": "https://pagefair.com/privacy/", - "truste_type": null, - "website_url": "http://pagefair.com/" - }, - "pardot": { - "description": null, - "ghostery_id": "228", - "iab_vendor": null, - "id": "pardot", - "name": "Pardot", - "privacy_url": "http://www.pardot.com/company/legal/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.pardot.com/" - }, - "parse.ly": { - "description": null, - "ghostery_id": "1009", - "iab_vendor": null, - "id": "parse.ly", - "name": "Parse.ly", - "privacy_url": "http://www.parsely.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.parsely.com/" - }, - "parship": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "parship", - "name": "Parship", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.parship.de/" - }, - "peer5": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "peer5", - "name": "Peer5", - "privacy_url": "https://www.peer5.com/privacy.html", - "truste_type": null, - "website_url": "https://www.peer5.com/" - }, - "peerius": { - "description": null, - "ghostery_id": "1024", - "iab_vendor": null, - "id": "peerius", - "name": "Peerius", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.peerius.com/" - }, - "penske_media_corp": { - "description": "PMC is a Leading Digital Media and Publishing Company", - "ghostery_id": null, - "iab_vendor": null, - "id": "penske_media_corp", - "name": "Penske Media Corporation ", - "privacy_url": "https://pmc.com/privacy-policy/", - "truste_type": null, - "website_url": "https://pmc.com/" - }, - "perfect_audience": { - "description": "The easiest way to retarget across the web, Facebook, and Twitter.", - "ghostery_id": "2394", - "iab_vendor": null, - "id": "perfect_audience", - "name": "Perfect Audience", - "privacy_url": "https://www.perfectaudience.com/privacy/", - "truste_type": "Retargeting / Optimization", - "website_url": "https://www.perfectaudience.com/" - }, - "perfect_market": { - "description": null, - "ghostery_id": "2736", - "iab_vendor": null, - "id": "perfect_market", - "name": "Perfect Market", - "privacy_url": "http://perfectmarket.com/privacy-policy/", - "truste_type": null, - "website_url": "http://perfectmarket.com/" - }, - "perform_group": { - "description": null, - "ghostery_id": "2167", - "iab_vendor": 323, - "id": "perform_group", - "name": "Perform Media Services Ltd", - "privacy_url": "http://www.performgroup.com/media-privacy-notice", - "truste_type": null, - "website_url": "http://www.performgroup.com/" - }, - "perion": { - "description": "Perion is a global technology company that delivers high-quality advertising solutions to brands and publishers.", - "ghostery_id": null, - "iab_vendor": null, - "id": "perion", - "name": "Perion", - "privacy_url": "https://www.perion.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.perion.com/" - }, - "periscope": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "periscope", - "name": "Periscope", - "privacy_url": "https://www.pscp.tv/privacy", - "truste_type": null, - "website_url": "https://www.pscp.tv/" - }, - "permutive": { - "description": null, - "ghostery_id": null, - "iab_vendor": 360, - "id": "permutive", - "name": "Permutive, Inc.", - "privacy_url": "https://permutive.com/privacy", - "truste_type": null, - "website_url": "https://permutive.com/" - }, - "piano__previously_tinypass_": { - "description": null, - "ghostery_id": "2935", - "iab_vendor": null, - "id": "piano__previously_tinypass_", - "name": "Piano (Previously Tinypass)", - "privacy_url": "http://www.tinypass.com/privacy/", - "truste_type": null, - "website_url": "http://piano.io/" - }, - "pingdom": { - "description": null, - "ghostery_id": "2566", - "iab_vendor": null, - "id": "pingdom", - "name": "Pingdom", - "privacy_url": "https://www.pingdom.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "https://www.pingdom.com/" - }, - "pinterest": { - "description": "Pinterest is a visual bookmarking tool for saving and discovering creative ideas.", - "ghostery_id": "1306", - "iab_vendor": null, - "id": "pinterest", - "name": "Pinterest", - "privacy_url": "http://pinterest.com/about/privacy/", - "truste_type": null, - "website_url": "http://pinterest.com/" - }, - "pixalate": { - "description": null, - "ghostery_id": "4097", - "iab_vendor": 384, - "id": "pixalate", - "name": "Pixalate, Inc.", - "privacy_url": "http://pixalate.com/privacypolicy/", - "truste_type": null, - "website_url": "http://www.pixalate.com/" - }, - "pladform": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "pladform", - "name": "Pladform", - "privacy_url": null, - "truste_type": null, - "website_url": "https://distribution.pladform.ru/" - }, - "platform161": { - "description": null, - "ghostery_id": "2253", - "iab_vendor": 140, - "id": "platform161", - "name": "Platform161", - "privacy_url": "https://platform161.com/cookie-and-privacy-policy/", - "truste_type": null, - "website_url": "https://platform161.com/" - }, - "playbuzz": { - "description": null, - "ghostery_id": "4284", - "iab_vendor": 444, - "id": "playbuzz", - "name": "Playbuzz Ltd. ", - "privacy_url": "https://www.playbuzz.com/PrivacyPolicy", - "truste_type": null, - "website_url": "https://www.playbuzz.com/" - }, - "plista": { - "description": null, - "ghostery_id": "1074", - "iab_vendor": 177, - "id": "plista", - "name": "plista GmbH", - "privacy_url": "https://www.plista.com/about/privacy/", - "truste_type": null, - "website_url": "http://www.plista.com/" - }, - "polar_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": 297, - "id": "polar_inc", - "name": "Polar Mobile Group Inc.", - "privacy_url": null, - "truste_type": null, - "website_url": "https://polar.me/" - }, - "polldaddy": { - "description": null, - "ghostery_id": "935", - "iab_vendor": null, - "id": "polldaddy", - "name": "Polldaddy", - "privacy_url": "http://polldaddy.com/privacy/", - "truste_type": null, - "website_url": "http://polldaddy.com/" - }, - "popads": { - "description": "PopAds is a paying advertising network specialized in popunders on the Internet.", - "ghostery_id": "1221", - "iab_vendor": null, - "id": "popads", - "name": "PopAds", - "privacy_url": "https://www.popads.net/privacy-policy.html", - "truste_type": "Ad Network", - "website_url": "https://www.popads.net/" - }, - "popcash_network": { - "description": null, - "ghostery_id": "3047", - "iab_vendor": null, - "id": "popcash_network", - "name": "PopCash Network", - "privacy_url": "http://popcash.net/privacy-policy", - "truste_type": null, - "website_url": "http://popcash.net/" - }, - "pornhub": { - "description": "Pornhub team is always updating and adding more porn videos every day.", - "ghostery_id": null, - "iab_vendor": null, - "id": "pornhub", - "name": "Pornhub", - "privacy_url": "https://www.pornhub.com/information#privacy", - "truste_type": null, - "website_url": "https://www.pornhub.com/" - }, - "powerlinks": { - "description": null, - "ghostery_id": "2197", - "iab_vendor": null, - "id": "powerlinks", - "name": "PowerLinks", - "privacy_url": "http://www.powerlinks.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.powerlinks.com/" - }, - "powr": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "powr", - "name": "POWr", - "privacy_url": "https://www.powr.io/privacy", - "truste_type": null, - "website_url": "https://www.powr.io/" - }, - "prisma_media_digital": { - "description": null, - "ghostery_id": "2136", - "iab_vendor": null, - "id": "prisma_media_digital", - "name": "Prisma Media Digital", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.pmdrecrute.com/" - }, - "privy": { - "description": "Privy's email list growth platform enables retail marketers to rapidly grow their lists and track online or offline sales. ", - "ghostery_id": "", - "iab_vendor": null, - "id": "privy", - "name": "Privy", - "privacy_url": "https://privy.com/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "https://privy.com/" - }, - "propeller_ads": { - "description": null, - "ghostery_id": "2744", - "iab_vendor": null, - "id": "propeller_ads", - "name": "Propeller Ads", - "privacy_url": "http://www.propellerads.com/privacy", - "truste_type": null, - "website_url": "http://www.propellerads.com/" - }, - "propermedia": { - "description": "Proper Media is digital media company, which provides advertising services for large-scale publishers", - "ghostery_id": null, - "iab_vendor": null, - "id": "propermedia", - "name": "Proper Media", - "privacy_url": "https://proper.io/privacypolicy", - "truste_type": null, - "website_url": "https://proper.io/" - }, - "prosieben_sat1": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "prosieben_sat1", - "name": "ProSiebenSat.1 Media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.prosiebensat1.com/" - }, - "psyma": { - "description": null, - "ghostery_id": "2950", - "iab_vendor": null, - "id": "psyma", - "name": "Psyma", - "privacy_url": "http://www.psyma.com/data-protection/", - "truste_type": null, - "website_url": "http://www.psyma.com/" - }, - "pubmatic": { - "description": "PubMatic is an automation solutions company for an open digital media industry.", - "ghostery_id": "348", - "iab_vendor": 76, - "id": "pubmatic", - "name": "PubMatic, Inc.", - "privacy_url": "https://pubmatic.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "http://www.pubmatic.com/" - }, - "pulsepoint_ad_exchange": { - "description": null, - "ghostery_id": "293", - "iab_vendor": 81, - "id": "pulsepoint_ad_exchange", - "name": "PulsePoint, Inc.", - "privacy_url": "https://www.pulsepoint.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.pulsepoint.com/" - }, - "purch": { - "description": null, - "ghostery_id": "2052", - "iab_vendor": 35, - "id": "purch", - "name": "Purch Group, Inc.", - "privacy_url": "http://www.purch.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.purch.com/" - }, - "push.world": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "push.world", - "name": "Push.world", - "privacy_url": "https://push.world/en/privacy", - "truste_type": null, - "website_url": "https://push.world/en" - }, - "pushcrew": { - "description": null, - "ghostery_id": "4418", - "iab_vendor": null, - "id": "pushcrew", - "name": "Pushcrew", - "privacy_url": "https://pushcrew.com/privacy-policy/", - "truste_type": null, - "website_url": "https://pushcrew.com/" - }, - "pushwoosh": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "pushwoosh", - "name": "Pushwoosh", - "privacy_url": "https://www.pushwoosh.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.pushwoosh.com/" - }, - "qq.com": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "qq.com", - "name": "QQ.com", - "privacy_url": "http://www.qq.com/privacy.htm", - "truste_type": null, - "website_url": "http://www.qq.com/" - }, - "qualityunit": { - "description": null, - "ghostery_id": "2404", - "iab_vendor": null, - "id": "qualityunit", - "name": "QualityUnit", - "privacy_url": "https://www.qualityunit.com/privacy-policy-quality-unit/", - "truste_type": null, - "website_url": "http://www.qualityunit.com/" - }, - "qualtrics": { - "description": "Qualtrics is the world's leading insight technology provider. That's the classy way of saying we help you get the data and insight you need to make better decisions.", - "ghostery_id": "2572", - "iab_vendor": null, - "id": "qualtrics", - "name": "Qualtrics", - "privacy_url": "http://www.qualtrics.com/privacy-statement/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.qualtrics.com/" - }, - "quantcast": { - "description": "Quantcast is on a mission to help brands grow in the AI era. We are creating the System of Intelligence for the marketing ecosystem so clients can make every customer engagement smarter, faster and more relevant.", - "ghostery_id": "139", - "iab_vendor": 11, - "id": "quantcast", - "name": "Quantcast International Limited", - "privacy_url": "https://www.quantcast.com/privacy/", - "truste_type": null, - "website_url": "http://www.quantcast.com" - }, - "quantum_metric": { - "description": null, - "ghostery_id": "4748", - "iab_vendor": null, - "id": "quantum_metric", - "name": "Quantum Metric, Inc.", - "privacy_url": "https://www.quantummetric.com/legal/privacy/", - "truste_type": null, - "website_url": "https://www.quantummetric.com/" - }, - "quarticon": { - "description": null, - "ghostery_id": "3442", - "iab_vendor": null, - "id": "quarticon", - "name": "QuarticOn S.A.", - "privacy_url": "https://www.quarticon.com/privacy-statement/", - "truste_type": null, - "website_url": "https://www.quarticon.com/" - }, - "quisma": { - "description": null, - "ghostery_id": "626", - "iab_vendor": null, - "id": "quisma", - "name": "Quisma", - "privacy_url": "http://privacy.quisma.com/uk/privacy-policy/quisma-technologies/", - "truste_type": null, - "website_url": "http://www.quisma.com/en_GB" - }, - "rakuten": { - "description": null, - "ghostery_id": null, - "iab_vendor": 60, - "id": "rakuten", - "name": "Rakuten Marketing LLC", - "privacy_url": null, - "truste_type": null, - "website_url": "http://global.rakuten.com/corp/" - }, - "ratos": { - "description": "Ratos AB is a Swedish private equity company.", - "ghostery_id": null, - "iab_vendor": null, - "id": "ratos", - "name": "Ratos", - "privacy_url": "https://www.ratos.se/en/Diverse-sidor/website-policy/", - "truste_type": null, - "website_url": "https://www.ratos.se/en/" - }, - "raygun": { - "description": null, - "ghostery_id": "4101", - "iab_vendor": null, - "id": "raygun", - "name": "Raygun", - "privacy_url": "https://raygun.com/privacy", - "truste_type": null, - "website_url": "https://raygun.com/" - }, - "rcs": { - "description": null, - "ghostery_id": "2575", - "iab_vendor": null, - "id": "rcs", - "name": "RCS MediaGroup S.p.A. \u0003", - "privacy_url": "http://www.rcsmediagroup.it/pagine/informativa-privacy-e-cookie-policy/", - "truste_type": null, - "website_url": "http://www.rcsmediagroup.it/" - }, - "realytics": { - "description": null, - "ghostery_id": "4516", - "iab_vendor": null, - "id": "realytics", - "name": "Realytics", - "privacy_url": "https://www.realytics.io/platform-privacy-policy/", - "truste_type": null, - "website_url": "https://www.realytics.io/" - }, - "recettes.net": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "recettes.net", - "name": "Recettes.net", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.recettes.net/" - }, - "recreativ": { - "description": null, - "ghostery_id": "2212", - "iab_vendor": null, - "id": "recreativ", - "name": "Recreativ", - "privacy_url": "https://recreativ.ru/site/policy", - "truste_type": null, - "website_url": "https://recreativ.ru/site/index" - }, - "reddit": { - "description": "Reddit is an online platform, enabling its users to submit links, create content, and have discussions about the topics of their interest.", - "ghostery_id": "1734", - "iab_vendor": null, - "id": "reddit", - "name": "reddit", - "privacy_url": "http://www.reddit.com/help/privacypolicy", - "truste_type": "Social / Sharing Tools", - "website_url": "http://reddit.com" - }, - "reembed": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "reembed", - "name": "reEmbed", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.reembed.com/" - }, - "reevoo": { - "description": null, - "ghostery_id": "1594", - "iab_vendor": null, - "id": "reevoo", - "name": "Reevoo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.reevoo.com/en/" - }, - "refined_labs": { - "description": null, - "ghostery_id": "2062", - "iab_vendor": null, - "id": "refined_labs", - "name": "Refined Labs", - "privacy_url": " https://www.refinedlabs.com/datenschutz-website", - "truste_type": null, - "website_url": " https://www.refinedlabs.com/" - }, - "republer": { - "description": null, - "ghostery_id": "4023", - "iab_vendor": null, - "id": "republer", - "name": "Republer", - "privacy_url": "http://republer.com/privacy.html", - "truste_type": null, - "website_url": "http://republer.com/" - }, - "research_now": { - "description": null, - "ghostery_id": "2770", - "iab_vendor": 125, - "id": "research_now", - "name": "Research Now Group, Inc", - "privacy_url": "https://www.valuedopinions.co.uk/privacy", - "truste_type": null, - "website_url": "http://www.researchnow.com/" - }, - "revcontent": { - "description": null, - "ghostery_id": "3626", - "iab_vendor": 203, - "id": "revcontent", - "name": "Revcontent, LLC", - "privacy_url": "https://faq.revcontent.com/customer/en/portal/articles/2703838-revcontent-s-privacy-and-cookie-policy", - "truste_type": null, - "website_url": "https://www.revcontent.com/" - }, - "richrelevance": { - "description": "RichRelevance is the global leader in omnichannel personalization and is used by more than 200 multinational companies to deliver the most relevant and innovative customer experiences across web, mobile and in store. ", - "ghostery_id": "140", - "iab_vendor": null, - "id": "richrelevance", - "name": "RichRelevance", - "privacy_url": "http://www.richrelevance.com/privacy", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.richrelevance.com" - }, - "ringier": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "ringier", - "name": "Ringier AG", - "privacy_url": "http://ringier.ch/en/data-privacy", - "truste_type": null, - "website_url": "http://ringier.ch/en" - }, - "riskfield": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "riskfield", - "name": "Riskfield", - "privacy_url": "https://www.riskified.com/privacy/", - "truste_type": null, - "website_url": "https://www.riskified.com/" - }, - "rockabox": { - "description": null, - "ghostery_id": null, - "iab_vendor": 308, - "id": "rockabox", - "name": "Rockabox Media Ltd", - "privacy_url": "http://scoota.com/privacy-policy", - "truste_type": null, - "website_url": "http://scoota.com/" - }, - "rockerbox": { - "description": "Rockerbox analyzes and requests in real-time and determines when clients switch from casual browsing to purchase intent-based browsing.", - "ghostery_id": null, - "iab_vendor": null, - "id": "rockerbox", - "name": "Rockerbox", - "privacy_url": "https://www.rockerbox.com/privacy", - "truste_type": null, - "website_url": "https://www.rockerbox.com/" - }, - "rocket_science_group": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "rocket_science_group", - "name": "The Rocket Science Group", - "privacy_url": "https://mailchimp.com/legal/privacy/", - "truste_type": null, - "website_url": "http://rocketsciencegroup.com/" - }, - "rollbar": { - "description": null, - "ghostery_id": "2925", - "iab_vendor": null, - "id": "rollbar", - "name": "Rollbar", - "privacy_url": "http://www.rollbar.com/privacy", - "truste_type": null, - "website_url": "http://www.rollbar.com/" - }, - "roq.ad": { - "description": null, - "ghostery_id": null, - "iab_vendor": 4, - "id": "roq.ad", - "name": "Roq.ad GmbH", - "privacy_url": "https://www.roq.ad/privacy-policy", - "truste_type": null, - "website_url": "https://www.roq.ad/" - }, - "rtb_house": { - "description": null, - "ghostery_id": "3371", - "iab_vendor": 16, - "id": "rtb_house", - "name": "RTB House S.A.", - "privacy_url": "https://www.rtbhouse.com/privacy/", - "truste_type": null, - "website_url": "http://www.rtbhouse.com/" - }, - "rtl_group": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "rtl_group", - "name": "RTL Group", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "rubicon_project": { - "description": "Rubicon Project (NYSE: RUBI) has engineered the Advertising Automation Cloud, one of the largest real-time cloud and Big Data computing systems.\n\nThe Company's mission is to automate the buying and selling of advertising by offering innovative products to connect buyers and sellers globally.", - "ghostery_id": "168", - "iab_vendor": 52, - "id": "rubicon_project", - "name": "The Rubicon Project, Limited", - "privacy_url": "http://rubiconproject.com/rubicon-project-yield-optimization-privacy-policy/", - "truste_type": null, - "website_url": "http://rubiconproject.com" - }, - "run": { - "description": null, - "ghostery_id": "1806", - "iab_vendor": null, - "id": "run", - "name": "RUN", - "privacy_url": "http://www.runads.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.runads.com/" - }, - "rythmone": { - "description": "RhythmOne (formerly Burst Media) is a leading provider of advertising representation, services and technology to web publishers and online media companies. RhythmOne enables advertisers to reach finely segmented audiences across mobile and desktop devices. RhythmOne also offers RhythmXchange, a programmatically enabled platform that connects advertisers with web publishers by automating the buying and selling of online ads. RhythmOne firmly believes the privacy of web users must be protected. For more information, please visit RhythmOne's privacy policy.", - "ghostery_id": "3994", - "iab_vendor": 36, - "id": "rythmone", - "name": "RhythmOne, LLC", - "privacy_url": "https://www.rhythmone.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "https://www.rhythmone.com/" - }, - "sailthru": { - "description": null, - "ghostery_id": "1550", - "iab_vendor": null, - "id": "sailthru", - "name": "Sailthru", - "privacy_url": "http://www.sailthru.com/legal/#privacy-statement", - "truste_type": null, - "website_url": "https://www.sailthru.com" - }, - "salecycle": { - "description": null, - "ghostery_id": "1963", - "iab_vendor": null, - "id": "salecycle", - "name": "SaleCycle", - "privacy_url": "http://www.salecycle.com/cookie-policy/", - "truste_type": null, - "website_url": "http://www.salecycle.com/" - }, - "sales_manago": { - "description": null, - "ghostery_id": "4190", - "iab_vendor": null, - "id": "sales_manago", - "name": "SALESmanago", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.salesmanago.com/" - }, - "salesforce": { - "description": " Salesforce is the world\u2019s #1 Customer Relationship Management (CRM) platform. Our cloud-based applications for sales, service, marketing, and more don\u2019t require IT experts to set up or manage \u2014 simply log in and start connecting to customers in a whole new way.", - "ghostery_id": "143", - "iab_vendor": null, - "id": "salesforce", - "name": "Salesforce", - "privacy_url": "https://www.salesforce.com/eu/company/privacy/", - "truste_type": null, - "website_url": "https://www.salesforce.com/" - }, - "samba_tv": { - "description": null, - "ghostery_id": "3578", - "iab_vendor": 350, - "id": "samba_tv", - "name": "Free Stream Media Corp. dba Samba TV", - "privacy_url": "https://samba.tv/legal/privacy-policy-2-28-2018/", - "truste_type": null, - "website_url": "https://samba.tv/" - }, - "samsung": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "samsung", - "name": "Samsung", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.samsung.com/" - }, - "samurai_factory": { - "description": null, - "ghostery_id": "1076", - "iab_vendor": null, - "id": "samurai_factory", - "name": "Samurai Factory", - "privacy_url": "https://isplaw.samurai-factory.jp/privacy/cookie/", - "truste_type": null, - "website_url": "http://www.samurai-factory.jp/" - }, - "sape": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "sape", - "name": "Sape Sapient Solution", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.sape.ru/en" - }, - "sas": { - "description": null, - "ghostery_id": "479", - "iab_vendor": null, - "id": "sas", - "name": "SAS", - "privacy_url": "http://www.sas.com/en_us/legal/privacy.html", - "truste_type": null, - "website_url": " http://www.sas.com/en_us/home.html" - }, - "scaleflex_sas": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "scaleflex_sas", - "name": "Scaleflex SAS", - "privacy_url": "https://privacy.scaleflex.it/go/privacy/en/privacy-by-design/", - "truste_type": null, - "website_url": "https://www.scaleflex.it/" - }, - "schibsted_asa": { - "description": null, - "ghostery_id": null, - "iab_vendor": 310, - "id": "schibsted_asa", - "name": "Schibsted ASA", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.schibsted.com/" - }, - "scientiamobile": { - "description": "ScientiaMobile provides the industry\u2019s most accurate and flexible device detection solution.", - "ghostery_id": null, - "iab_vendor": null, - "id": "scientiamobile", - "name": "ScientiaMobile", - "privacy_url": "https://www.scientiamobile.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.scientiamobile.com/" - }, - "scout24": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "scout24", - "name": "Scout 24", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.scout24.com/" - }, - "scroll": { - "description": "Scroll is creating a sustainable experience that puts amazing content in front of engaged users without all the noise.", - "ghostery_id": null, - "iab_vendor": null, - "id": "scroll", - "name": "Scroll", - "privacy_url": null, - "truste_type": null, - "website_url": "https://scroll.com/" - }, - "seedtag": { - "description": null, - "ghostery_id": null, - "iab_vendor": 157, - "id": "seedtag", - "name": "Seedtag Advertising S.L", - "privacy_url": "https://www.seedtag.com/en/privacy-policy/", - "truste_type": null, - "website_url": "https://www.seedtag.com/en/" - }, - "segment": { - "description": "Segment is one place to collect customer data and send it to your tools for analytics, marketing automation, and raw data access with SQL. Implement all of your event tracking with Segment\u2019s single API instead of wrangling a new API for every new tool or database. Segment's integrations let you send your data to hundreds of tools and databases.", - "ghostery_id": "1440", - "iab_vendor": null, - "id": "segment", - "name": "Segment", - "privacy_url": "https://segment.com/docs/legal/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://segment.com/" - }, - "sekindo": { - "description": null, - "ghostery_id": "2061", - "iab_vendor": null, - "id": "sekindo", - "name": "SekiNdo", - "privacy_url": "http://www.sekindo.com/help/privacy.php", - "truste_type": null, - "website_url": "http://www.sekindo.com/" - }, - "semasio": { - "description": null, - "ghostery_id": "2088", - "iab_vendor": 84, - "id": "semasio", - "name": "Semasio GmbH", - "privacy_url": "http://www.semasio.com/privacy-policy/", - "truste_type": null, - "website_url": "http://semasio.com/" - }, - "sentifi": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "sentifi", - "name": "Sentifi AG", - "privacy_url": "https://sentifi.com/page/privacy/", - "truste_type": null, - "website_url": "https://sentifi.com/" - }, - "sessioncam": { - "description": null, - "ghostery_id": "2365", - "iab_vendor": null, - "id": "sessioncam", - "name": "SessionCam", - "privacy_url": "http://www.sessioncam.com/privacy-policy-cookies/", - "truste_type": null, - "website_url": "http://www.sessioncam.com/" - }, - "sexadnetwork": { - "description": null, - "ghostery_id": "1820", - "iab_vendor": null, - "id": "sexadnetwork", - "name": "SexAdNetwork", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.sexadnetwork.com/" - }, - "seznam": { - "description": null, - "ghostery_id": "4620", - "iab_vendor": null, - "id": "seznam", - "name": "Seznam", - "privacy_url": null, - "truste_type": null, - "website_url": "https://onas.seznam.cz/cz/" - }, - "shareaholic": { - "description": "Shareaholic is a content discovery, amplification and engagement platform that helps marketers and publishers promote their content.", - "ghostery_id": "2278", - "iab_vendor": null, - "id": "shareaholic", - "name": "Shareaholic", - "privacy_url": "https://www.shareaholic.com/privacy/", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.shareaholic.com/" - }, - "sharethis": { - "description": null, - "ghostery_id": "149", - "iab_vendor": 33, - "id": "sharethis", - "name": "ShareThis, Inc.", - "privacy_url": "http://www.sharethis.com/privacy/", - "truste_type": null, - "website_url": "http://sharethis.com/" - }, - "sharethrough": { - "description": null, - "ghostery_id": "718", - "iab_vendor": 80, - "id": "sharethrough", - "name": "Sharethrough, Inc", - "privacy_url": "https://platform-cdn.sharethrough.com/privacy-policy", - "truste_type": null, - "website_url": "http://sharethrough.com" - }, - "shopify": { - "description": null, - "ghostery_id": "2179", - "iab_vendor": null, - "id": "shopify", - "name": "Shopify", - "privacy_url": "http://www.shopify.com/legal/privacy", - "truste_type": null, - "website_url": "http://www.shopify.com/" - }, - "shutterstock_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "shutterstock_inc", - "name": "Shutterstock, Inc.", - "privacy_url": "https://www.shutterstock.com/privacy", - "truste_type": null, - "website_url": "https://www.shutterstock.com/" - }, - "sien": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "sien", - "name": "SIEN", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.sien.com/" - }, - "sift_science": { - "description": null, - "ghostery_id": "2686", - "iab_vendor": null, - "id": "sift_science", - "name": "Sift Science", - "privacy_url": "https://siftscience.com/service-privacy", - "truste_type": null, - "website_url": "https://siftscience.com/" - }, - "signal_digital": { - "description": null, - "ghostery_id": null, - "iab_vendor": 261, - "id": "signal_digital", - "name": "Signal Digital Inc.", - "privacy_url": "https://www.signal.co/privacy-policy/", - "truste_type": null, - "website_url": "https://www.signal.co/" - }, - "simpli.fi": { - "description": null, - "ghostery_id": "550", - "iab_vendor": 73, - "id": "simpli.fi", - "name": "Simplifi Holdings Inc.", - "privacy_url": "https://www.simpli.fi/site-privacy-policy2/", - "truste_type": null, - "website_url": "http://www.simpli.fi/" - }, - "singtel": { - "description": "The Singtel Group is Asia's leading communications group.\nWe provide a diverse range of services including fixed, mobile, data, internet, TV, infocomms technology (ICT) and digital solutions.", - "ghostery_id": null, - "iab_vendor": null, - "id": "singtel", - "name": "Singtel", - "privacy_url": "https://www.singtel.com/data-protection", - "truste_type": null, - "website_url": "https://www.singtel.com/" - }, - "sirdata": { - "description": "Sirdata is a self-service, third party data-collecting platform that specializes in the collection of behavioural data, predictive targeting and selling of audience segments. ", - "ghostery_id": "4526", - "iab_vendor": 53, - "id": "sirdata", - "name": "Sirdata", - "privacy_url": "https://www.sirdata.com/privacy/", - "truste_type": "Ad Exchange", - "website_url": "http://www.sirdata.com/home/" - }, - "siteimprove": { - "description": null, - "ghostery_id": "1447", - "iab_vendor": null, - "id": "siteimprove", - "name": "Siteimprove", - "privacy_url": "http://siteimprove.com/privacy-policy/", - "truste_type": null, - "website_url": "http://siteimprove.com" - }, - "sitescout": { - "description": null, - "ghostery_id": "1256", - "iab_vendor": null, - "id": "sitescout", - "name": "SiteScout", - "privacy_url": "http://www.sitescout.com/privacy/", - "truste_type": null, - "website_url": "http://www.sitescout.com" - }, - "sizmek": { - "description": null, - "ghostery_id": "384", - "iab_vendor": 68, - "id": "sizmek", - "name": "Sizmek Technologies, Inc. ", - "privacy_url": "https://www.sizmek.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.sizmek.com" - }, - "skimlinks": { - "description": null, - "ghostery_id": "587", - "iab_vendor": null, - "id": "skimlinks", - "name": "SkimLinks", - "privacy_url": "http://skimlinks.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.skimlinks.com/" - }, - "sli_system": { - "description": null, - "ghostery_id": "2590", - "iab_vendor": null, - "id": "sli_system", - "name": "SLI Systems", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.sli-systems.com/" - }, - "smart_adserver": { - "description": "Smart AdServer technology enables publishers to maximize yield in both premium and programmatic without spending on third party vendors. ", - "ghostery_id": "631", - "iab_vendor": 45, - "id": "smart_adserver", - "name": "Smart Adserver", - "privacy_url": "http://smartadserver.com/company/privacy-policy/", - "truste_type": "Ad Server", - "website_url": "http://smartadserver.com/" - }, - "smartclip": { - "description": null, - "ghostery_id": "1371", - "iab_vendor": 115, - "id": "smartclip", - "name": "smartclip Holding AG", - "privacy_url": "http://privacy-portal.smartclip.net/", - "truste_type": null, - "website_url": "http://www.smartclip.com/" - }, - "smartlook": { - "description": null, - "ghostery_id": "4505", - "iab_vendor": null, - "id": "smartlook", - "name": "SmartLook", - "privacy_url": "https://www.smartlook.com/privacy", - "truste_type": null, - "website_url": "https://www.smartlook.com/" - }, - "smartstream": { - "description": null, - "ghostery_id": null, - "iab_vendor": 134, - "id": "smartstream", - "name": "SMARTSTREAM.TV GmbH", - "privacy_url": "https://www.smartstream.tv/en/privacy", - "truste_type": null, - "website_url": "https://www.smartstream.tv/en" - }, - "smartsuppp": { - "description": null, - "ghostery_id": "4250", - "iab_vendor": null, - "id": "smartsuppp", - "name": "Smartsuppp", - "privacy_url": "https://www.smartsupp.com/privacy", - "truste_type": null, - "website_url": "https://www.smartsupp.com/" - }, - "smyte": { - "description": "Smyte stops bad actors on marketplaces and social networks.", - "ghostery_id": null, - "iab_vendor": null, - "id": "smyte", - "name": "Smyte", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.smyte.com/" - }, - "snap_engage": { - "description": null, - "ghostery_id": "3941", - "iab_vendor": null, - "id": "snap_engage", - "name": "Snap Engage", - "privacy_url": "https://snapengage.com/privacy-policy", - "truste_type": null, - "website_url": "https://snapengage.com" - }, - "snigelweb_inc": { - "description": null, - "ghostery_id": "5128", - "iab_vendor": null, - "id": "snigelweb_inc", - "name": "SnigelWeb, Inc.", - "privacy_url": "http://www.snigelweb.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.snigelweb.com/" - }, - "snowplow": { - "description": null, - "ghostery_id": "4577", - "iab_vendor": null, - "id": "snowplow", - "name": "Snowplow", - "privacy_url": "https://snowplowanalytics.com/privacy-policy/", - "truste_type": null, - "website_url": "http://snowplowanalytics.com/" - }, - "sociomantic_labs_gmbh": { - "description": null, - "ghostery_id": "721", - "iab_vendor": null, - "id": "sociomantic_labs_gmbh", - "name": "Sociomantic Labs GmbH", - "privacy_url": "https://www.sociomantic.com/privacy/en/", - "truste_type": null, - "website_url": "https://www.sociomantic.com" - }, - "sojern": { - "description": null, - "ghostery_id": "782", - "iab_vendor": 295, - "id": "sojern", - "name": "Sojern, Inc.", - "privacy_url": "https://www.sojern.com/privacy/product-privacy-policy/", - "truste_type": null, - "website_url": "http://www.sojern.com/" - }, - "somoaudience": { - "description": "Touchscreen advertising solutions.", - "ghostery_id": null, - "iab_vendor": null, - "id": "somoaudience", - "name": "SoMo Audience", - "privacy_url": "https://somoaudience.com/legal/", - "truste_type": null, - "website_url": "https://somoaudience.com/" - }, - "sonobi": { - "description": null, - "ghostery_id": "1412", - "iab_vendor": 104, - "id": "sonobi", - "name": "Sonobi, Inc", - "privacy_url": "http://sonobi.com/privacy-policy/", - "truste_type": null, - "website_url": "http://sonobi.com/" - }, - "sophus3": { - "description": null, - "ghostery_id": "1078", - "iab_vendor": null, - "id": "sophus3", - "name": "Sophus3", - "privacy_url": "http://www.sophus3.com/services-privacy-policy/", - "truste_type": null, - "website_url": "http://www.sophus3.com/" - }, - "soundcloud": { - "description": "SoundCloud is the world's leading social sound platform where anyone can create sounds and share them everywhere.", - "ghostery_id": "1817", - "iab_vendor": null, - "id": "soundcloud", - "name": "SoundCloud", - "privacy_url": "http://soundcloud.com/pages/privacy", - "truste_type": "Social / Sharing Tools", - "website_url": "http://soundcloud.com/" - }, - "sovrn": { - "description": null, - "ghostery_id": null, - "iab_vendor": 13, - "id": "sovrn", - "name": "Sovrn Holdings Inc", - "privacy_url": "https://www.sovrn.com/sovrn-privacy/", - "truste_type": null, - "website_url": "https://www.sovrn.com/" - }, - "spearhead": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "spearhead", - "name": "Spearhead Integrated Marketing Communication", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.spearhead.com.cn/" - }, - "spongecell": { - "description": "Spongecell technology empowers brands and agencies to quickly create amazing dynamic ad experiences that are interactive, dynamically personalized and able to run anywhere across the web.", - "ghostery_id": "552", - "iab_vendor": null, - "id": "spongecell", - "name": "Spongecell", - "privacy_url": "http://www.spongecell.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "http://www.spongecell.com/" - }, - "spot.im": { - "description": null, - "ghostery_id": "3625", - "iab_vendor": 280, - "id": "spot.im", - "name": "Spot.IM Ltd.", - "privacy_url": "http://spot.im/privacy", - "truste_type": null, - "website_url": "https://www.spot.im/" - }, - "spoteffect": { - "description": null, - "ghostery_id": "4718", - "iab_vendor": null, - "id": "spoteffect", - "name": "Spoteffect", - "privacy_url": "http://www.spoteffects.com/footer/imprint/#c920", - "truste_type": null, - "website_url": "http://www.spoteffects.com/home/" - }, - "springserve": { - "description": null, - "ghostery_id": "2581", - "iab_vendor": 293, - "id": "springserve", - "name": "SpringServe, LLC", - "privacy_url": "https://springserve.com/privacy-policy/", - "truste_type": null, - "website_url": "http://springserve.com/" - }, - "stackadapt": { - "description": "StackAdapt is an omnichannel advertising platform that helps brands accelerate customer acquisition by reaching relevant audiences through native, display, and video advertising.", - "ghostery_id": "3952", - "iab_vendor": 238, - "id": "stackadapt", - "name": "StackAdapt", - "privacy_url": "http://www.stackadapt.com/privacy", - "truste_type": "Ad Platform", - "website_url": "http://www.stackadapt.com/" - }, - "startpage": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "startpage", - "name": "StartPage", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.startpage.com/" - }, - "statcounter": { - "description": null, - "ghostery_id": "162", - "iab_vendor": null, - "id": "statcounter", - "name": "StatCounter", - "privacy_url": "http://statcounter.com/about/legal/#privacy", - "truste_type": null, - "website_url": "http://statcounter.com/" - }, - "steelhouse": { - "description": "SteelHouse (www.SteelHouse.com) provides digital marketing services to our clients as the pioneer in the emerging field of Behavioral Commerce. We enable retailers to provide the right offer to their shoppers at the right time when they are online. We never know personal information or store anything confidential. At the end of the day, we're consumers just like you and respect your privacy.", - "ghostery_id": "751", - "iab_vendor": 230, - "id": "steelhouse", - "name": "Steel House, Inc.", - "privacy_url": "https://steelhouse.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": "https://steelhouse.com/" - }, - "stride_software": { - "description": "Customer Data Platform", - "ghostery_id": null, - "iab_vendor": null, - "id": "stride_software", - "name": "Stride Software, Inc.", - "privacy_url": "https://www.getstride.com/security", - "truste_type": null, - "website_url": "https://www.getstride.com/" - }, - "stroer": { - "description": null, - "ghostery_id": "342", - "iab_vendor": 136, - "id": "stroer", - "name": "Str\u00f6er SSP GmbH", - "privacy_url": "https://www.stroeer.de/fileadmin/user_upload/Datenschutz.pdf", - "truste_type": null, - "website_url": " http://www.stroeer.de/" - }, - "strossle": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "strossle", - "name": "Strossle", - "privacy_url": "https://strossle.com/privacy-policy/", - "truste_type": null, - "website_url": "https://strossle.com/" - }, - "stumbleupon": { - "description": "We help you easily discover new and interesting stuff on the Web. Tell us what you like, and we?ll introduce you to amazing web pages, videos, photos and more that you wouldn?t have found on your own.", - "ghostery_id": "1067", - "iab_vendor": null, - "id": "stumbleupon", - "name": "StumbleUpon", - "privacy_url": "http://www.stumbleupon.com/privacy/", - "truste_type": "Social / Sharing Tools", - "website_url": "http://www.stumbleupon.com/" - }, - "sublime_skinz": { - "description": null, - "ghostery_id": "4925", - "iab_vendor": 114, - "id": "sublime_skinz", - "name": "Sublime Skinz", - "privacy_url": "http://ayads.co/privacy.php", - "truste_type": null, - "website_url": "https://sublimeskinz.com/home" - }, - "sumome": { - "description": null, - "ghostery_id": "3560", - "iab_vendor": null, - "id": "sumome", - "name": "SumoMe", - "privacy_url": "https://help.sumo.com/hc/en-us/articles/218958727-Privacy-Policy", - "truste_type": null, - "website_url": "http://sumo.com/" - }, - "sundaysky": { - "description": "SundaySky is a proprietary SmartVideo technology platform that combines the power of video with personalized storytelling at scale to foster long-term customer relationships.", - "ghostery_id": "1896", - "iab_vendor": null, - "id": "sundaysky", - "name": "SundaySky", - "privacy_url": " https://sundaysky.com/privacy-policy/", - "truste_type": "Publisher Related", - "website_url": "http://www.sundaysky.com/" - }, - "switch_concepts": { - "description": null, - "ghostery_id": "846", - "iab_vendor": 197, - "id": "switch_concepts", - "name": "Switch Concepts Limited", - "privacy_url": "https://www.switchconcepts.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.switchconcepts.com" - }, - "symantec__norton_secured_seal_": { - "description": null, - "ghostery_id": "2447", - "iab_vendor": null, - "id": "symantec__norton_secured_seal_", - "name": "Symantec", - "privacy_url": "https://www.symantec.com/privacy/", - "truste_type": null, - "website_url": "https://www.symantec.com/page.jsp?id=ssl-resources&tabID=3#" - }, - "symphony_technology_group": { - "description": "Symphony Technology Group (STG) is a strategic private equity firm that invests in and builds software and services companies.", - "ghostery_id": null, - "iab_vendor": null, - "id": "symphony_technology_group", - "name": "Symphony Technology Group", - "privacy_url": "http://www.stgpartners.com/terms-of-use/", - "truste_type": null, - "website_url": "http://www.stgpartners.com/" - }, - "synatix": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "synatix", - "name": "Synatix", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.synatix.com/" - }, - "system1": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "system1", - "name": "System1", - "privacy_url": null, - "truste_type": null, - "website_url": "http://system1.com/" - }, - "taboola": { - "description": "Taboola is a content discovery platform that connects people with content they may like but never knew existed.", - "ghostery_id": "1463", - "iab_vendor": 42, - "id": "taboola", - "name": "Taboola", - "privacy_url": "https://www.taboola.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.taboola.com/" - }, - "tag_commander": { - "description": null, - "ghostery_id": "1789", - "iab_vendor": null, - "id": "tag_commander", - "name": "Tag Commander", - "privacy_url": "https://www.commandersact.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.tagcommander.com/en/" - }, - "tagman": { - "description": null, - "ghostery_id": "556", - "iab_vendor": null, - "id": "tagman", - "name": "TagMan", - "privacy_url": "http://www.ensighten.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.tagman.com/" - }, - "tail.digital": { - "description": null, - "ghostery_id": "3269", - "iab_vendor": null, - "id": "tail.digital", - "name": "Tail", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.tail.digital/" - }, - "tawk": { - "description": null, - "ghostery_id": "4210", - "iab_vendor": null, - "id": "tawk", - "name": "Tawk", - "privacy_url": "https://www.tawk.to/privacy-policy/", - "truste_type": null, - "website_url": "https://www.tawk.to/" - }, - "teads": { - "description": "Platform for video advertising innovations", - "ghostery_id": "2521", - "iab_vendor": 132, - "id": "teads", - "name": "Teads ", - "privacy_url": "https://teads.tv/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://teads.tv/" - }, - "tealium": { - "description": "Tealium is a US American company founded in 2008 in San Diego, California that sells enterprise tag management system and marketing software. Tealium has been named to the Inc. 500, which recognizes the fastest-growing private companies in the U.S.", - "ghostery_id": "662", - "iab_vendor": null, - "id": "tealium", - "name": "Tealium", - "privacy_url": "http://tealium.com/privacy/", - "truste_type": null, - "website_url": "http://tealium.com/" - }, - "telenor": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "telenor", - "name": "Telenor Group", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.telenor.com/" - }, - "telstra": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "telstra", - "name": "Telstra", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.telstraglobal.com/" - }, - "tensquare": { - "description": null, - "ghostery_id": "1004", - "iab_vendor": null, - "id": "tensquare", - "name": "TenSquare", - "privacy_url": "http://www.tensquare.de/cnt/p3p/policy.html?_ga=1.23987706.1560024373.1466454521", - "truste_type": null, - "website_url": "http://www.tensquare.com/" - }, - "the_austrian_web_analysis__owa_": { - "description": null, - "ghostery_id": "404", - "iab_vendor": null, - "id": "the_austrian_web_analysis__owa_", - "name": "The Austrian Web Analysis (OWA)", - "privacy_url": "http://www.oewa.at/impressum", - "truste_type": null, - "website_url": "http://oewa.at/" - }, - "the_guardian": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "the_guardian", - "name": "The Guardian", - "privacy_url": "https://www.theguardian.com/info/privacy", - "truste_type": null, - "website_url": "https://www.theguardian.com/" - }, - "the_new_york_times": { - "description": null, - "ghostery_id": "1962", - "iab_vendor": null, - "id": "the_new_york_times", - "name": "The New York Times Company", - "privacy_url": "https://help.nytimes.com/hc/en-us/articles/115014892108-Privacy-policy", - "truste_type": null, - "website_url": "https://www.nytimes.com/" - }, - "the_reach_group": { - "description": null, - "ghostery_id": null, - "iab_vendor": 382, - "id": "the_reach_group", - "name": "The Reach Group GmbH", - "privacy_url": "https://www.reachgroup.com/en/privacy-statement/", - "truste_type": null, - "website_url": "https://www.reachgroup.com/" - }, - "the_sun": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "the_sun", - "name": "The Sun", - "privacy_url": "https://newsprivacy.co.uk/single/", - "truste_type": null, - "website_url": "https://www.thesun.co.uk/" - }, - "the_trade_desk": { - "description": "The Trade Desk is an online demand-side platform that provides buying tools for digital media buyers.", - "ghostery_id": "560", - "iab_vendor": null, - "id": "the_trade_desk", - "name": "The Trade Desk", - "privacy_url": "https://www.thetradedesk.com/general/privacy", - "truste_type": null, - "website_url": "https://www.thetradedesk.com/" - }, - "themoviedb": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "themoviedb", - "name": "The Movie DB", - "privacy_url": "https://www.themoviedb.org/privacy-policy", - "truste_type": null, - "website_url": "https://www.themoviedb.org/" - }, - "thoma_bravo": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "thoma_bravo", - "name": "Thoma Bravo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://thomabravo.com/" - }, - "threatmetrix": { - "description": null, - "ghostery_id": "1812", - "iab_vendor": null, - "id": "threatmetrix", - "name": "ThreatMetrix", - "privacy_url": "http://www.threatmetrix.com/privacy-policy/", - "truste_type": null, - "website_url": "http://threatmetrix.com/" - }, - "toro_advertising": { - "description": null, - "ghostery_id": "3135", - "iab_vendor": null, - "id": "toro_advertising", - "name": "TORO Advertising", - "privacy_url": "http://toroadvertising.com/privacy.php", - "truste_type": null, - "website_url": "http://toroadvertising.com/" - }, - "torstar_corp": { - "description": "Torstar Corporation is a broadly based, progressive media company.", - "ghostery_id": null, - "iab_vendor": null, - "id": "torstar_corp", - "name": "Torstar Corporation ", - "privacy_url": "http://notices.torstar.com/privacy-policy/index.html", - "truste_type": null, - "website_url": "https://www.torstar.com/index.cfm" - }, - "trackjs": { - "description": "TrackJS was conceived as a tool for JavaScript Error Management in consulting projects. ", - "ghostery_id": "3549", - "iab_vendor": null, - "id": "trackjs", - "name": "TrackJS", - "privacy_url": "https://trackjs.com/privacy/", - "truste_type": "Website Tools", - "website_url": "http://www.trackjs.com/" - }, - "tradedoubler": { - "description": null, - "ghostery_id": "668", - "iab_vendor": 443, - "id": "tradedoubler", - "name": "Tradedoubler AB", - "privacy_url": "https://www.tradedoubler.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://www.tradedoubler.com/" - }, - "tradelab": { - "description": null, - "ghostery_id": "2690", - "iab_vendor": 49, - "id": "tradelab", - "name": "Tradelab, SAS", - "privacy_url": "http://tradelab.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.tradelab.fr/" - }, - "tradetracker": { - "description": null, - "ghostery_id": "815", - "iab_vendor": 426, - "id": "tradetracker", - "name": "TradeTracker", - "privacy_url": "https://tradetracker.com/privacy-policy/", - "truste_type": null, - "website_url": "https://tradetracker.com/" - }, - "traffic_stars": { - "description": null, - "ghostery_id": "4753", - "iab_vendor": null, - "id": "traffic_stars", - "name": "Traffic Stars", - "privacy_url": null, - "truste_type": null, - "website_url": "https://trafficstars.com/#index_page" - }, - "trafficforce": { - "description": null, - "ghostery_id": "3330", - "iab_vendor": null, - "id": "trafficforce", - "name": "TrafficForce", - "privacy_url": "http://www.trafficforce.com/terms.html", - "truste_type": null, - "website_url": "http://www.trafficforce.com/" - }, - "traffichaus": { - "description": null, - "ghostery_id": "1852", - "iab_vendor": null, - "id": "traffichaus", - "name": "TrafficHaus", - "privacy_url": "https://www.traffichaus.com/privacy-policy.php", - "truste_type": null, - "website_url": "https://www.traffichaus.com" - }, - "trafficjunky": { - "description": "TrafficJunky is an online advertising network.", - "ghostery_id": "1819", - "iab_vendor": null, - "id": "trafficjunky", - "name": "TrafficJunky", - "privacy_url": "http://www.trafficjunky.com/privacy-policy", - "truste_type": null, - "website_url": " http://www.trafficjunky.com/" - }, - "trbo": { - "description": null, - "ghostery_id": "3379", - "iab_vendor": null, - "id": "trbo", - "name": "trbo", - "privacy_url": "http://www.trbo.com/privacy/?lang=en", - "truste_type": null, - "website_url": "http://www.trbo.com/" - }, - "triplelift": { - "description": null, - "ghostery_id": "2609", - "iab_vendor": 28, - "id": "triplelift", - "name": "TripleLift, Inc.", - "privacy_url": "https://triplelift.com/privacy/", - "truste_type": null, - "website_url": "http://www.triplelift.com/" - }, - "trueanthem": { - "description": "The easiest way to publish your best content at the right time to your social audience. ", - "ghostery_id": "3030", - "iab_vendor": null, - "id": "trueanthem", - "name": "trueAnthem", - "privacy_url": "https://www.trueanthem.com/privacy/", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.trueanthem.com/" - }, - "trueffect": { - "description": "People-Based Digital Marketing Platform", - "ghostery_id": null, - "iab_vendor": null, - "id": "trueffect", - "name": "Trueffect", - "privacy_url": null, - "truste_type": null, - "website_url": "www.trueffect.com" - }, - "trustarc": { - "description": null, - "ghostery_id": "775", - "iab_vendor": null, - "id": "trustarc", - "name": "TrustArc", - "privacy_url": "https://www.trustarc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.trustarc.com/" - }, - "trusted_shops": { - "description": null, - "ghostery_id": "4752", - "iab_vendor": null, - "id": "trusted_shops", - "name": "Trusted Shops", - "privacy_url": "http://business.trustedshops.co.uk/imprint/", - "truste_type": null, - "website_url": "http://business.trustedshops.co.uk/" - }, - "trustpilot": { - "description": null, - "ghostery_id": "3861", - "iab_vendor": null, - "id": "trustpilot", - "name": "Trustpilot", - "privacy_url": "http://legal.trustpilot.com/end-user-privacy-terms", - "truste_type": null, - "website_url": "http://www.trustpilot.com" - }, - "ttnet": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "ttnet", - "name": "T\u00fcrk Telekom", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ttnet.com.tr/" - }, - "tubemogul": { - "description": null, - "ghostery_id": "953", - "iab_vendor": null, - "id": "tubemogul", - "name": "TubeMogul", - "privacy_url": "https://www.tubemogul.com/compliance/privacy-policy/", - "truste_type": null, - "website_url": "https://www.tubemogul.com/" - }, - "turner": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "turner", - "name": "Turner", - "privacy_url": "https://www.turner.com/legal#PrivacyPolicy", - "truste_type": null, - "website_url": "https://www.turner.com/" - }, - "twiago": { - "description": null, - "ghostery_id": "4943", - "iab_vendor": 242, - "id": "twiago", - "name": "twiago GmbH", - "privacy_url": "https://www.twiago.com/datenschutz/", - "truste_type": null, - "website_url": "https://www.twiago.com/" - }, - "twitter": { - "description": "Twitter is an American online news and social networking service on which users post and interact with messages known as \"tweets\". Tweets were originally restricted to 140 characters, but on November 7, 2017, this limit was doubled for all languages except Japanese, Korean, and Chinese. Registered users can post tweets, but those who are unregistered can only read them. Users access Twitter through its website interface, through Short Message Service (SMS) or mobile-device application software (\"app\"). Twitter, Inc. is based in San Francisco, California, and has more than 25 offices around the world.", - "ghostery_id": "174", - "iab_vendor": null, - "id": "twitter", - "name": "Twitter", - "privacy_url": "https://twitter.com/privacy?lang=en", - "truste_type": "Social / Sharing Tools", - "website_url": "https://twitter.com/" - }, - "twyn": { - "description": null, - "ghostery_id": "1354", - "iab_vendor": null, - "id": "twyn", - "name": "Twyn", - "privacy_url": "http://www.twyn.com/datenschutz.html", - "truste_type": null, - "website_url": "http://www.twyn.com" - }, - "tyroo": { - "description": "APAC\u2019s Largest Multi-Screen Performance Network", - "ghostery_id": null, - "iab_vendor": null, - "id": "tyroo", - "name": "Tyroo", - "privacy_url": "http://www.tyroo.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.tyroo.com/" - }, - "umeng": { - "description": null, - "ghostery_id": "1069", - "iab_vendor": null, - "id": "umeng", - "name": "Umeng", - "privacy_url": "https://www.umeng.com/policy.html?spm=a211g2.181323.0.0.5c633604LabXL1", - "truste_type": null, - "website_url": "http://www.umeng.com/" - }, - "underdog_media": { - "description": null, - "ghostery_id": "748", - "iab_vendor": 159, - "id": "underdog_media", - "name": "Underdog Media LLC ", - "privacy_url": "https://underdogmedia.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.underdogmedia.com" - }, - "unister": { - "description": null, - "ghostery_id": "1540", - "iab_vendor": null, - "id": "unister", - "name": "Unister", - "privacy_url": " http://www.unister.de/#datenschutz", - "truste_type": null, - "website_url": "http://www.unister.de/" - }, - "united_digital_group__fka_nonstopconsulting_": { - "description": null, - "ghostery_id": "2403", - "iab_vendor": null, - "id": "united_digital_group__fka_nonstopconsulting_", - "name": "United Digital Group (FKA nonstopConsulting)", - "privacy_url": "https://www.udg.de/en/privacy-policy/", - "truste_type": null, - "website_url": "https://www.udg.de/en" - }, - "united_inc": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "united_inc", - "name": "United Inc.", - "privacy_url": null, - "truste_type": null, - "website_url": "http://united.jp/en/" - }, - "united_internet": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "united_internet", - "name": "United Internet AG", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.united-internet.de/" - }, - "unruly": { - "description": null, - "ghostery_id": "1904", - "iab_vendor": 162, - "id": "unruly", - "name": "Unruly Group Ltd", - "privacy_url": "https://unruly.co/privacy/", - "truste_type": null, - "website_url": "http://unruly.co/" - }, - "urban_airship": { - "description": "Urban Airship delivers billions of personalized notifications across apps, websites, mobile wallets, email, and SMS.", - "ghostery_id": "3072", - "iab_vendor": null, - "id": "urban_airship", - "name": "Urban Airship, Inc.", - "privacy_url": "https://www.urbanairship.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://urbanairship.com/" - }, - "us_government": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "us_government", - "name": "USA Government", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "usabilla": { - "description": null, - "ghostery_id": "2858", - "iab_vendor": null, - "id": "usabilla", - "name": "Usabilla", - "privacy_url": "https://usabilla.com/privacy", - "truste_type": null, - "website_url": "https://usabilla.com/" - }, - "usemax": { - "description": null, - "ghostery_id": "2408", - "iab_vendor": 212, - "id": "usemax", - "name": "usemax advertisement (Emego GmbH)", - "privacy_url": "http://www.usemax.de/?l=privacy", - "truste_type": null, - "website_url": "http://www.usemax.de" - }, - "userinsight": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "userinsight", - "name": "UserInsight", - "privacy_url": "http://ui.userlocal.jp/document/attention/", - "truste_type": null, - "website_url": "http://ui.userlocal.jp/" - }, - "userreport": { - "description": "Helps you improve your website. Gives you knowledge about gender, age, income and much more about people that visit your website. We measure usability and shows where different kind of visitors click on your website. Lets users voice their ideas on how to improve your website through a feedback forum. ", - "ghostery_id": "1462", - "iab_vendor": null, - "id": "userreport", - "name": "UserReport", - "privacy_url": "http://www.userreport.com/general-invitation-privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.userreport.com/" - }, - "uservoice": { - "description": null, - "ghostery_id": "177", - "iab_vendor": null, - "id": "uservoice", - "name": "UserVoice", - "privacy_url": "https://www.uservoice.com/privacy/", - "truste_type": null, - "website_url": "https://www.uservoice.com" - }, - "ve": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "ve", - "name": "Ve Global", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ve.com/" - }, - "ve_interactive": { - "description": "Ve Interactive is a market conversion-enhancing technology and digital advertising in one integrated platform.", - "ghostery_id": "2587", - "iab_vendor": null, - "id": "ve_interactive", - "name": "Ve Interactive", - "privacy_url": "http://www.veinteractive.com/us/about-us/legal-policies/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.veinteractive.com" - }, - "ve_interactive__formely_gdm_digital_": { - "description": null, - "ghostery_id": "1810", - "iab_vendor": null, - "id": "ve_interactive__formely_gdm_digital_", - "name": "VE Interactive (Formely GDM Digital)", - "privacy_url": " https://www.veinteractive.com/us/about-us/contact-us/", - "truste_type": null, - "website_url": "http://www.veinteractive.com/" - }, - "venatus": { - "description": null, - "ghostery_id": "2663", - "iab_vendor": 26, - "id": "venatus", - "name": "Venatus Media Limited", - "privacy_url": "https://www.venatusmedia.com/privacy/", - "truste_type": null, - "website_url": "https://www.venatusmedia.com/" - }, - "verizon": { - "description": "Verizon (short for Verizon Communications Inc.), is an American multinational telecommunications conglomerate and a corporate component of the Dow Jones Industrial Average. In 2015, Verizon expanded its business into content ownership by acquiring AOL,[9][10] and two years later it acquired Yahoo!. AOL and Yahoo were amalgamated into a new division named Oath Inc.", - "ghostery_id": null, - "iab_vendor": null, - "id": "verizon", - "name": "Verizon", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "https://www.verizon.com/" - }, - "vg_wort": { - "description": null, - "ghostery_id": "1075", - "iab_vendor": null, - "id": "vg_wort", - "name": "VG Wort", - "privacy_url": "http://www.vgwort.de/datenschutz.html", - "truste_type": null, - "website_url": "http://www.vgwort.de/startseite.html" - }, - "vi": { - "description": null, - "ghostery_id": "3165", - "iab_vendor": null, - "id": "vi", - "name": "Vi", - "privacy_url": "http://www.vi.ru/confedent.aspx", - "truste_type": null, - "website_url": "http://www.vi.ru/" - }, - "vibrant_media": { - "description": null, - "ghostery_id": "179", - "iab_vendor": 7, - "id": "vibrant_media", - "name": "Vibrant Media Limited", - "privacy_url": "https://www.vibrantmedia.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://www.vibrantmedia.com" - }, - "videology": { - "description": null, - "ghostery_id": null, - "iab_vendor": 309, - "id": "videology", - "name": "Videology Ltd.", - "privacy_url": "https://videologygroup.com/en/privacy-policy", - "truste_type": null, - "website_url": "https://videologygroup.com/" - }, - "videoplaza": { - "description": null, - "ghostery_id": "2801", - "iab_vendor": null, - "id": "videoplaza", - "name": "Videoplaza", - "privacy_url": "http://www.ooyala.com/websiteprivacy", - "truste_type": null, - "website_url": "http://www.videoplaza.com/" - }, - "viglink": { - "description": "VigLink is a platform for monetizing content-driven commerce for publishers, bloggers, forums, social networks and apps. ", - "ghostery_id": "421", - "iab_vendor": null, - "id": "viglink", - "name": "VigLink", - "privacy_url": "http://www.viglink.com/legal/privacy", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "http://www.viglink.com/" - }, - "vigo": { - "description": "Vigo is here to improve video streaming delivery quality by dealing with mobile network operators.", - "ghostery_id": null, - "iab_vendor": null, - "id": "vigo", - "name": "Vigo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://vigo.one/" - }, - "vindico_group": { - "description": null, - "ghostery_id": "739", - "iab_vendor": null, - "id": "vindico_group", - "name": "Vindico Group", - "privacy_url": "https://www.sizmek.com/privacy-policy/optedin/", - "truste_type": null, - "website_url": "https://vindico.com/" - }, - "visible_measures": { - "description": "Visible Measures is a provider of independent third party measurement solutions for Internet video publishers and advertisers. Their services help users measure video content consumption and viral distribution. ", - "ghostery_id": "569", - "iab_vendor": null, - "id": "visible_measures", - "name": "Visible Measures", - "privacy_url": "http://www.visiblemeasures.com/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.visiblemeasures.com/" - }, - "visualiq": { - "description": null, - "ghostery_id": "1095", - "iab_vendor": null, - "id": "visualiq", - "name": "VisualIQ", - "privacy_url": "http://visualiq.com/privacy", - "truste_type": null, - "website_url": "http://visualiq.com/" - }, - "vivalu": { - "description": null, - "ghostery_id": "3935", - "iab_vendor": null, - "id": "vivalu", - "name": "Vivalu", - "privacy_url": "http://www.vivalu.com/privatsphaere-und-datenschutz", - "truste_type": null, - "website_url": "http://www.vivalu.com/" - }, - "vivendi": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "vivendi", - "name": "Vivendi", - "privacy_url": null, - "truste_type": null, - "website_url": "https://vivendi.com/" - }, - "vizury": { - "description": "Vizury is a digital marketing company enabling e-commerce and online travel companies to maximize the value of their digital data. ", - "ghostery_id": "1380", - "iab_vendor": null, - "id": "vizury", - "name": "Vizury", - "privacy_url": "http://web.vizury.com/website/in/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": " https://www1.vizury.com/" - }, - "vox": { - "description": "Vox Media is redefining the modern media company by empowering the smartest digital voices with the technology to create and distribute premium content, and connect with an audience of 170 million affluent and educated young adults worldwide.", - "ghostery_id": "3999", - "iab_vendor": null, - "id": "vox", - "name": "Vox Media", - "privacy_url": "https://www.voxmedia.com/pages/privacy-policy", - "truste_type": null, - "website_url": "https://www.voxmedia.com/" - }, - "weborama": { - "description": "Weborama is an online marketing technology company that offers ad analytics and behavioral targeting services.", - "ghostery_id": "633", - "iab_vendor": 284, - "id": "weborama", - "name": "WEBORAMA", - "privacy_url": "https://weborama.com/privacy_en/", - "truste_type": "Attribution / Analytics", - "website_url": "https://weborama.com/" - }, - "webtrekk": { - "description": "Webtrekk is a customer intelligence platform that allows companies to connect, analyze and activate user and marketing data across all devices. ", - "ghostery_id": "335", - "iab_vendor": null, - "id": "webtrekk", - "name": "Webtrekk", - "privacy_url": "https://www.webtrekk.com/en/legal/opt-out-webtrekk/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.webtrekk.com/en/home/" - }, - "webtrends": { - "description": "For more than 20 years, Webtrends has helped companies make sense of their customer data to drive digital marketing success. By combining innovative technology with our team of trusted and creative advisors, our solutions are designed to provide actionable insights, increase customer engagement and boost revenue.", - "ghostery_id": "181", - "iab_vendor": null, - "id": "webtrends", - "name": "Webtrends", - "privacy_url": "https://www.webtrends.com/terms-policies/privacy-notice/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.webtrends.com/" - }, - "whatsbroadcast": { - "description": null, - "ghostery_id": "4750", - "iab_vendor": null, - "id": "whatsbroadcast", - "name": "WhatsBroadcast", - "privacy_url": "https://www.whatsbroadcast.com/privacy/", - "truste_type": null, - "website_url": "https://www.whatsbroadcast.com/" - }, - "whos.amung.us": { - "description": null, - "ghostery_id": "239", - "iab_vendor": null, - "id": "whos.amung.us", - "name": "whos.amung.us", - "privacy_url": "http://whos.amung.us/legal/privacy/", - "truste_type": null, - "website_url": "http://whos.amung.us/" - }, - "widespace": { - "description": null, - "ghostery_id": null, - "iab_vendor": 18, - "id": "widespace", - "name": "Widespace AB", - "privacy_url": "https://www.widespace.com/legal/privacy-policy-notice/", - "truste_type": null, - "website_url": "https://www.widespace.com/l" - }, - "wikia": { - "description": null, - "ghostery_id": "2095", - "iab_vendor": null, - "id": "wikia", - "name": "Wikia", - "privacy_url": "http://www.wikia.com/Privacy_Policy", - "truste_type": null, - "website_url": " http://www.wikia.com/fandom" - }, - "wikimedia_foundation": { - "description": "Wikimedia Foundation encourages the development and distribution of free educational content with projects such as Wikipedia.", - "ghostery_id": null, - "iab_vendor": null, - "id": "wikimedia_foundation", - "name": "Wikimedia Foundation", - "privacy_url": "https://wikimediafoundation.org/privacy-policy/", - "truste_type": null, - "website_url": "https://wikimediafoundation.org/" - }, - "wingify": { - "description": null, - "ghostery_id": "276", - "iab_vendor": null, - "id": "wingify", - "name": "Wingify", - "privacy_url": "https://vwo.com/privacy-policy/", - "truste_type": null, - "website_url": "https://vwo.com/" - }, - "wiredminds": { - "description": null, - "ghostery_id": "779", - "iab_vendor": null, - "id": "wiredminds", - "name": "WiredMinds", - "privacy_url": "https://wiredminds.de/datenschutz/", - "truste_type": null, - "website_url": "https://www.wiredminds.de/home/" - }, - "wistia": { - "description": "Wistia is an internet video hosting and analytics company that enables marketers to track and analyze web video viewers.", - "ghostery_id": "1307", - "iab_vendor": null, - "id": "wistia", - "name": "Wistia", - "privacy_url": "http://wistia.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "http://wistia.com/" - }, - "wix": { - "description": "Wix empowers businesses, organizations, professionals, and individuals to take their businesses, brands, and workflow online.", - "ghostery_id": null, - "iab_vendor": null, - "id": "wix", - "name": "Wix", - "privacy_url": "https://www.wix.com/about/privacy", - "truste_type": null, - "website_url": "https://www.wix.com/" - }, - "wonderpush": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "wonderpush", - "name": "WonderPush", - "privacy_url": "https://www.wonderpush.com/policies/privacy", - "truste_type": null, - "website_url": "https://www.wonderpush.com/" - }, - "wp_engine": { - "description": "WP Engine is a WordPress digital experience platform.", - "ghostery_id": null, - "iab_vendor": null, - "id": "wp_engine", - "name": "WP Engine", - "privacy_url": "https://wpengine.com/de/legal/privacy/", - "truste_type": null, - "website_url": "https://wpengine.com/" - }, - "wpp": { - "description": "A global powerhouse of creative talent, we help clients understand and reach audiences, build brands, sell products and services, grow their businesses and prepare for the future.", - "ghostery_id": "", - "iab_vendor": null, - "id": "wpp", - "name": "WPP", - "privacy_url": "https://www.wpp.com/Privacy-policy", - "truste_type": null, - "website_url": "https://www.wpp.com/" - }, - "wwwpromoter": { - "description": null, - "ghostery_id": "4392", - "iab_vendor": null, - "id": "wwwpromoter", - "name": "wwwPromoter", - "privacy_url": "http://wwwpromoter.com/privacy.html", - "truste_type": null, - "website_url": "http://wwwpromoter.com/" - }, - "wysistat": { - "description": null, - "ghostery_id": "1362", - "iab_vendor": null, - "id": "wysistat", - "name": "Wysistat", - "privacy_url": "http://wysistat.net/politique-du-respect-de-la-vie-privee/", - "truste_type": null, - "website_url": "http://wysistat.net/" - }, - "xcaliber": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "xcaliber", - "name": "XCaliber", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.xcaliber.com/" - }, - "xing": { - "description": null, - "ghostery_id": "2787", - "iab_vendor": null, - "id": "xing", - "name": "XING", - "privacy_url": "http://www.xing.com/privacy", - "truste_type": null, - "website_url": "http://www.xing.com/" - }, - "xplosion_interactive": { - "description": null, - "ghostery_id": "1356", - "iab_vendor": null, - "id": "xplosion_interactive", - "name": "xplosion interactive", - "privacy_url": " https://www.xplosion.de/datenschutz.php", - "truste_type": null, - "website_url": "http://www.xplosion.de/en/home.html?no_cache=1" - }, - "xxxlutz": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "xxxlutz", - "name": "XXXLutz KG", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.xxxlutz.de/" - }, - "yandex": { - "description": "Yandex is a Russian multinational corporation specializing in Internet-related products and services, including search and information services, eCommerce, transportation, navigation, mobile applications, and online advertising.", - "ghostery_id": "185", - "iab_vendor": null, - "id": "yandex", - "name": "Yandex", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": "https://www.yandex.com/" - }, - "yieldbot": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "yieldbot", - "name": "Yieldbot", - "privacy_url": "https://www.yieldbot.com/platform-privacy-policy/", - "truste_type": null, - "website_url": "https://www.yieldbot.com/" - }, - "yieldify": { - "description": "Yieldify is an eCommerce solution that converts visitors into customers. We harness our multi-channel abandonment analytics platform to mould personalised buyer journeys for the modern, always-on consumer. Our expert teams build, manage and measure tailored on-site and email campaigns, across every channel. Our technology creates incremental value for top global brands by optimising their online conversion rates and driving lead generation.", - "ghostery_id": "2874", - "iab_vendor": null, - "id": "yieldify", - "name": "Yieldify", - "privacy_url": "http://www.yieldify.com/privacy-policy", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.yieldify.com/" - }, - "yieldlove": { - "description": null, - "ghostery_id": null, - "iab_vendor": 251, - "id": "yieldlove", - "name": "Yieldlove GmbH", - "privacy_url": "http://www.yieldlove.com/cookie-policy", - "truste_type": null, - "website_url": "http://www.yieldlove.com/" - }, - "yieldmo": { - "description": null, - "ghostery_id": "2918", - "iab_vendor": 173, - "id": "yieldmo", - "name": "Yieldmo, Inc.", - "privacy_url": "https://www.yieldmo.com/privacy/", - "truste_type": null, - "website_url": "https://www.yieldmo.com/" - }, - "yottaa": { - "description": "Yottaa is an eCommerce Acceleration platform", - "ghostery_id": null, - "iab_vendor": null, - "id": "yottaa", - "name": "Yottaa", - "privacy_url": "https://www.yottaa.com/privacy-legal/", - "truste_type": null, - "website_url": "https://www.yottaa.com/" - }, - "zalando": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "zalando", - "name": "Zalando", - "privacy_url": "https://en.zalando.de/zalando-privacy-policy/", - "truste_type": null, - "website_url": "https://zalando.de/" - }, - "zebestof": { - "description": "Zebestof is an independant RTB programmatic platform. ", - "ghostery_id": null, - "iab_vendor": 234, - "id": "zebestof", - "name": "Zebestof", - "privacy_url": "http://www.zebestof.com/en/about-us-2/privacy-en/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "http://www.zebestof.com/en/home/" - }, - "zedo": { - "description": "ZEDO, Inc. is a digital ad solutions company that offers products and services for a publisher's premium, self service, and remnant inventory. Products include ad network optimization, innovative rich media formats for publishers' direct sales teams, full featured ad serving, behavioral targeting data built into the ad server, an exchange-like platform for publishers to sell behavioral and DMA targeted inventory at high CPMs (see: www.zedoadnetwork.com), a self service platform to allow advertisers to buy directly from a publisher, outsourced ad ops and more. These products are integrated into one technology platform for publishers to choose from, or use seamlessly together. ZEDO has been in the internet advertising industry for over 10 years, and is the most successful independent ad server in the US. The company provides innovative solutions that boost revenues for Internet publishers.", - "ghostery_id": "188", - "iab_vendor": null, - "id": "zedo", - "name": "Zedo", - "privacy_url": "http://www.zedo.com/about-zedo/privacy-policy/", - "truste_type": "Ad Server", - "website_url": "http://www.zedo.com" - }, - "zemanta": { - "description": null, - "ghostery_id": "189", - "iab_vendor": 210, - "id": "zemanta", - "name": "Zemanta, Inc.", - "privacy_url": "http://www.zemanta.com/legal/privacy", - "truste_type": null, - "website_url": "http://www.zemanta.com/" - }, - "zencoder": { - "description": null, - "ghostery_id": "4475", - "iab_vendor": null, - "id": "zencoder", - "name": "Zencoder", - "privacy_url": "https://zencoder.com/en/privacy", - "truste_type": null, - "website_url": "https://zencoder.com/en/" - }, - "zendesk": { - "description": null, - "ghostery_id": "190", - "iab_vendor": null, - "id": "zendesk", - "name": "Zendesk", - "privacy_url": "http://www.zendesk.com/company/privacy", - "truste_type": null, - "website_url": "http://www.zendesk.com/" - }, - "zergnet": { - "description": null, - "ghostery_id": "1924", - "iab_vendor": null, - "id": "zergnet", - "name": "ZergNet", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.zergnet.com/info" - }, - "ziff_davis": { - "description": null, - "ghostery_id": "660", - "iab_vendor": 321, - "id": "ziff_davis", - "name": "Ziff Davis LLC", - "privacy_url": "http://www.ziffdavis.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.ziffdavis.com/#" - }, - "zoho_corp": { - "description": null, - "ghostery_id": null, - "iab_vendor": null, - "id": "zoho_corp", - "name": "Zoho Corporation", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.zohocorp.com/index.html" - }, - "zopim": { - "description": null, - "ghostery_id": "979", - "iab_vendor": null, - "id": "zopim", - "name": "Zopim", - "privacy_url": "https://www.zendesk.com/company/privacy/", - "truste_type": null, - "website_url": "http://www.zopim.com/" - } - }, - "iab": { - "features": [ - { - "description": "Combining data from offline sources that were initially collected in other contexts.", - "id": 1, - "name": "Matching Data to Offline Sources" - }, - { - "description": "Allow processing of a user's data to connect such user across multiple devices.", - "id": 2, - "name": "Linking Devices" - }, - { - "description": "Allow processing of a user's precise geographic location data in support of a purpose for which that certain third party has consent.", - "id": 3, - "name": "Precise Geographic Location Data" - } - ], - "purposes": [ - { - "description": "The storage of information, or access to information that is already stored, on your device such as advertising identifiers, device identifiers, cookies, and similar technologies.", - "id": 1, - "name": "Information storage and access" - }, - { - "description": "The collection and processing of information about your use of this service to subsequently personalise advertising and/or content for you in other contexts, such as on other websites or apps, over time. Typically, the content of the site or app is used to make inferences about your interests, which inform future selection of advertising and/or content.", - "id": 2, - "name": "Personalisation" - }, - { - "description": "The collection of information, and combination with previously collected information, to select and deliver advertisements for you, and to measure the delivery and effectiveness of such advertisements. This includes using previously collected information about your interests to select ads, processing data about what advertisements were shown, how often they were shown, when and where they were shown, and whether you took any action related to the advertisement, including for example clicking an ad or making a purchase. This does not include personalisation, which is the collection and processing of information about your use of this service to subsequently personalise advertising and/or content for you in other contexts, such as websites or apps, over time.", - "id": 3, - "name": "Ad selection, delivery, reporting" - }, - { - "description": "The collection of information, and combination with previously collected information, to select and deliver content for you, and to measure the delivery and effectiveness of such content. This includes using previously collected information about your interests to select content, processing data about what content was shown, how often or how long it was shown, when and where it was shown, and whether the you took any action related to the content, including for example clicking on content. This does not include personalisation, which is the collection and processing of information about your use of this service to subsequently personalise content and/or advertising for you in other contexts, such as websites or apps, over time.", - "id": 4, - "name": "Content selection, delivery, reporting" - }, - { - "description": "The collection of information about your use of the content, and combination with previously collected information, used to measure, understand, and report on your usage of the service. This does not include personalisation, the collection of information about your use of this service to subsequently personalise content and/or advertising for you in other contexts, i.e. on other service, such as websites or apps, over time.", - "id": 5, - "name": "Measurement" - } - ], - "vendorListVersion": 151, - "vendors": { - "1": { - "featureIds": [], - "id": 1, - "legIntPurposeIds": [], - "name": "Exponential Interactive, Inc", - "policyUrl": "http://exponential.com/privacy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "3": { - "featureIds": [], - "id": 3, - "legIntPurposeIds": [], - "name": "affilinet", - "policyUrl": "https://www.affili.net/de/footeritem/datenschutz", - "purposeIds": [ - 2, - 3, - 4, - 5 - ] - }, - "4": { - "featureIds": [ - 2, - 3 - ], - "id": 4, - "legIntPurposeIds": [], - "name": "Roq.ad GmbH", - "policyUrl": "https://www.roq.ad/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "6": { - "featureIds": [], - "id": 6, - "legIntPurposeIds": [], - "name": "AdSpirit GmbH", - "policyUrl": "http://www.adspirit.de/privacy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "7": { - "featureIds": [], - "id": 7, - "legIntPurposeIds": [ - 1 - ], - "name": "Vibrant Media Limited", - "policyUrl": "https://www.vibrantmedia.com/en/privacy-policy/", - "purposeIds": [ - 2, - 3, - 4, - 5 - ] - }, - "10": { - "featureIds": [ - 2, - 3 - ], - "id": 10, - "legIntPurposeIds": [ - 3 - ], - "name": "Index Exchange, Inc. ", - "policyUrl": "https://www.indexexchange.com/privacy", - "purposeIds": [ - 1 - ] - }, - "11": { - "featureIds": [ - 1, - 2 - ], - "id": 11, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Quantcast International Limited", - "policyUrl": "https://www.quantcast.com/privacy/", - "purposeIds": [ - 1 - ] - }, - "12": { - "featureIds": [ - 3 - ], - "id": 12, - "legIntPurposeIds": [], - "name": "BeeswaxIO Corporation", - "policyUrl": "https://www.beeswax.com/privacy.html", - "purposeIds": [ - 1, - 3, - 5 - ] - }, - "13": { - "featureIds": [ - 2, - 3 - ], - "id": 13, - "legIntPurposeIds": [], - "name": "Sovrn Holdings Inc", - "policyUrl": "https://www.sovrn.com/sovrn-privacy/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "16": { - "featureIds": [], - "id": 16, - "legIntPurposeIds": [], - "name": "RTB House S.A.", - "policyUrl": "https://www.rtbhouse.com/privacy/", - "purposeIds": [ - 1, - 3 - ] - }, - "18": { - "featureIds": [], - "id": 18, - "legIntPurposeIds": [], - "name": "Widespace AB", - "policyUrl": "https://www.widespace.com/legal/privacy-policy-notice/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "19": { - "featureIds": [ - 2 - ], - "id": 19, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Intent Media, Inc.", - "policyUrl": "https://intentmedia.com/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "24": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 24, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Conversant Europe Ltd.", - "policyUrl": "https://www.conversantmedia.eu/legal/privacy-policy", - "purposeIds": [ - 1 - ] - }, - "25": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 25, - "legIntPurposeIds": [ - 3, - 5 - ], - "name": "Oath (EMEA) Limited", - "policyUrl": "https://policies.oath.com/ie/en/oath/privacy/index.html", - "purposeIds": [ - 1, - 2 - ] - }, - "26": { - "featureIds": [], - "id": 26, - "legIntPurposeIds": [], - "name": "Venatus Media Limited", - "policyUrl": "https://www.venatusmedia.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "27": { - "featureIds": [], - "id": 27, - "legIntPurposeIds": [], - "name": "ADventori SAS", - "policyUrl": "https://www.adventori.com/with-us/legal-notice/", - "purposeIds": [ - 1, - 3 - ] - }, - "28": { - "featureIds": [ - 3 - ], - "id": 28, - "legIntPurposeIds": [], - "name": "TripleLift, Inc.", - "policyUrl": "https://triplelift.com/privacy/", - "purposeIds": [ - 1, - 3 - ] - }, - "30": { - "featureIds": [ - 2, - 3 - ], - "id": 30, - "legIntPurposeIds": [ - 1, - 3 - ], - "name": "BidTheatre AB", - "policyUrl": "https://www.bidtheatre.com/privacy-policy", - "purposeIds": [ - 2 - ] - }, - "32": { - "featureIds": [ - 2, - 3 - ], - "id": 32, - "legIntPurposeIds": [ - 3 - ], - "name": "AppNexus Inc.", - "policyUrl": "https://www.appnexus.com/en/company/platform-privacy-policy", - "purposeIds": [ - 1 - ] - }, - "33": { - "featureIds": [ - 2 - ], - "id": 33, - "legIntPurposeIds": [ - 5 - ], - "name": "ShareThis, Inc.", - "policyUrl": "http://www.sharethis.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4 - ] - }, - "34": { - "featureIds": [], - "id": 34, - "legIntPurposeIds": [ - 3 - ], - "name": "NEORY GmbH", - "policyUrl": "https://www.neory.com/privacy.html", - "purposeIds": [ - 1, - 2, - 4, - 5 - ] - }, - "36": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 36, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4 - ], - "name": "RhythmOne, LLC", - "policyUrl": "https://www.rhythmone.com/privacy-policy", - "purposeIds": [ - 5 - ] - }, - "39": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 39, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "ADITION technologies AG", - "policyUrl": "https://www.adition.com/datenschutz", - "purposeIds": [ - 1 - ] - }, - "40": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 40, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Active Agent AG", - "policyUrl": "http://www.active-agent.com/de/unternehmen/datenschutzerklaerung/", - "purposeIds": [] - }, - "42": { - "featureIds": [ - 1, - 2 - ], - "id": 42, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Taboola Europe Limited", - "policyUrl": "https://www.taboola.com/privacy-policy", - "purposeIds": [ - 1 - ] - }, - "44": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 44, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "The ADEX GmbH", - "policyUrl": "https://www.theadex.com/privacy-opt-out/", - "purposeIds": [ - 1 - ] - }, - "45": { - "featureIds": [ - 3 - ], - "id": 45, - "legIntPurposeIds": [ - 3, - 5 - ], - "name": "Smart Adserver", - "policyUrl": "https://smartadserver.com/end-user-privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "49": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 49, - "legIntPurposeIds": [ - 5 - ], - "name": "Tradelab, SAS", - "policyUrl": "http://tradelab.com/en/privacy/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "50": { - "featureIds": [ - 1, - 2 - ], - "id": 50, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Adform A/S", - "policyUrl": "https://site.adform.com/privacy-policy-opt-out/", - "purposeIds": [ - 1 - ] - }, - "52": { - "featureIds": [ - 3 - ], - "id": 52, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "The Rubicon Project, Inc. ", - "policyUrl": "http://www.rubiconproject.com/rubicon-project-yield-optimization-privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "53": { - "featureIds": [ - 1, - 2 - ], - "id": 53, - "legIntPurposeIds": [], - "name": "Sirdata", - "policyUrl": "https://www.sirdata.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "57": { - "featureIds": [ - 1, - 2 - ], - "id": 57, - "legIntPurposeIds": [], - "name": "ADARA MEDIA UNLIMITED", - "policyUrl": "https://adara.com/privacy-promise/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "58": { - "featureIds": [ - 2 - ], - "id": 58, - "legIntPurposeIds": [], - "name": "33Across", - "policyUrl": "http://www.33across.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "60": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 60, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Rakuten Marketing LLC", - "policyUrl": "https://rakutenmarketing.com/legal-notices/services-privacy-policy", - "purposeIds": [ - 1 - ] - }, - "61": { - "featureIds": [ - 3 - ], - "id": 61, - "legIntPurposeIds": [], - "name": "GumGum, Inc.", - "policyUrl": "https://gumgum.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "62": { - "featureIds": [], - "id": 62, - "legIntPurposeIds": [], - "name": "Justpremium BV", - "policyUrl": "http://justpremium.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "63": { - "featureIds": [], - "id": 63, - "legIntPurposeIds": [ - 1, - 3 - ], - "name": "Avocet Systems Limited", - "policyUrl": "http://www.avocet.io/privacy-policy", - "purposeIds": [] - }, - "64": { - "featureIds": [], - "id": 64, - "legIntPurposeIds": [], - "name": "DigiTrust / IAB Tech Lab", - "policyUrl": "http://www.digitru.st/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "67": { - "featureIds": [], - "id": 67, - "legIntPurposeIds": [], - "name": "LifeStreet Corporation", - "policyUrl": "http://www.lifestreet.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "68": { - "featureIds": [ - 2 - ], - "id": 68, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Sizmek Technologies, Inc. ", - "policyUrl": "https://www.sizmek.com/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "69": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 69, - "legIntPurposeIds": [], - "name": "OpenX", - "policyUrl": "https://www.openx.com/legal/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "70": { - "featureIds": [ - 3 - ], - "id": 70, - "legIntPurposeIds": [ - 1, - 3 - ], - "name": "Yieldlab AG", - "policyUrl": "http://www.yieldlab.de/meta-navigation/datenschutz/", - "purposeIds": [] - }, - "71": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 71, - "legIntPurposeIds": [], - "name": "Dataxu, Inc. ", - "policyUrl": "https://www.dataxu.com/about-us/privacy/data-collection-platform/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "72": { - "featureIds": [], - "id": 72, - "legIntPurposeIds": [ - 1, - 2, - 3, - 5 - ], - "name": "Nano Interactive GmbH", - "policyUrl": "http://www.nanointeractive.com/privacy", - "purposeIds": [] - }, - "73": { - "featureIds": [ - 2, - 3 - ], - "id": 73, - "legIntPurposeIds": [ - 1 - ], - "name": "Simplifi Holdings Inc.", - "policyUrl": "https://www.simpli.fi/site-privacy-policy2/", - "purposeIds": [ - 2, - 3, - 4, - 5 - ] - }, - "76": { - "featureIds": [], - "id": 76, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "PubMatic, Inc.", - "policyUrl": "https://pubmatic.com/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "77": { - "featureIds": [ - 2 - ], - "id": 77, - "legIntPurposeIds": [], - "name": "comScore, Inc.", - "policyUrl": "https://www.comscore.com/About-comScore/Privacy-Policy", - "purposeIds": [ - 1, - 5 - ] - }, - "78": { - "featureIds": [], - "id": 78, - "legIntPurposeIds": [], - "name": "Flashtalking, Inc.", - "policyUrl": "http://www.flashtalking.com/privacypolicy/", - "purposeIds": [ - 1 - ] - }, - "79": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 79, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "MediaMath, Inc.", - "policyUrl": "http://www.mediamath.com/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "80": { - "featureIds": [], - "id": 80, - "legIntPurposeIds": [ - 1 - ], - "name": "Sharethrough, Inc", - "policyUrl": "https://platform-cdn.sharethrough.com/privacy-policy", - "purposeIds": [ - 3, - 5 - ] - }, - "81": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 81, - "legIntPurposeIds": [], - "name": "PulsePoint, Inc.", - "policyUrl": "https://www.pulsepoint.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "82": { - "featureIds": [ - 3 - ], - "id": 82, - "legIntPurposeIds": [], - "name": "Smaato, Inc.", - "policyUrl": "https://www.smaato.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "84": { - "featureIds": [], - "id": 84, - "legIntPurposeIds": [ - 1, - 2, - 4, - 5 - ], - "name": "Semasio GmbH", - "policyUrl": "http://www.semasio.com/privacy-policy/", - "purposeIds": [] - }, - "85": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 85, - "legIntPurposeIds": [], - "name": "Crimtan Holdings Limited", - "policyUrl": "https://crimtan.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "89": { - "featureIds": [ - 2 - ], - "id": 89, - "legIntPurposeIds": [ - 2, - 3, - 5 - ], - "name": "Tapad, Inc. ", - "policyUrl": "https://www.tapad.com/privacy", - "purposeIds": [ - 1 - ] - }, - "91": { - "featureIds": [ - 1, - 2 - ], - "id": 91, - "legIntPurposeIds": [], - "name": "Criteo SA", - "policyUrl": "https://www.criteo.com/privacy/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "92": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 92, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "1plusX AG", - "policyUrl": "https://www.1plusx.com/privacy-policy/", - "purposeIds": [] - }, - "93": { - "featureIds": [], - "id": 93, - "legIntPurposeIds": [ - 5 - ], - "name": "Adloox SA", - "policyUrl": "http://adloox.com/disclaimer", - "purposeIds": [] - }, - "95": { - "featureIds": [], - "id": 95, - "legIntPurposeIds": [], - "name": "Lotame Solutions, Inc.", - "policyUrl": "https://www.lotame.com/about-lotame/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "97": { - "featureIds": [ - 1, - 2 - ], - "id": 97, - "legIntPurposeIds": [], - "name": "LiveRamp, Inc.", - "policyUrl": "https://www.liveramp.com/service-privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "98": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 98, - "legIntPurposeIds": [ - 5 - ], - "name": "GroupM", - "policyUrl": "https://www.groupm.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4 - ] - }, - "104": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 104, - "legIntPurposeIds": [ - 3 - ], - "name": "Sonobi, Inc", - "policyUrl": "http://sonobi.com/privacy-policy/", - "purposeIds": [ - 1, - 2 - ] - }, - "113": { - "featureIds": [], - "id": 113, - "legIntPurposeIds": [], - "name": "iotec global Ltd.", - "policyUrl": "https://www.iotecglobal.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "114": { - "featureIds": [], - "id": 114, - "legIntPurposeIds": [ - 5 - ], - "name": "Sublime", - "policyUrl": "http://ayads.co/privacy.php", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "115": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 115, - "legIntPurposeIds": [ - 2, - 3, - 5 - ], - "name": "smartclip Holding AG", - "policyUrl": "http://privacy-portal.smartclip.net/", - "purposeIds": [ - 1 - ] - }, - "120": { - "featureIds": [ - 1 - ], - "id": 120, - "legIntPurposeIds": [], - "name": "Eyeota Ptd Ltd", - "policyUrl": "https://www.eyeota.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "125": { - "featureIds": [], - "id": 125, - "legIntPurposeIds": [], - "name": "Research Now Group, Inc", - "policyUrl": "https://www.valuedopinions.co.uk/privacy", - "purposeIds": [ - 1, - 3, - 5 - ] - }, - "126": { - "featureIds": [], - "id": 126, - "legIntPurposeIds": [], - "name": "DoubleVerify Inc.\u200b", - "policyUrl": "https://www.doubleverify.com/privacy/", - "purposeIds": [ - 5 - ] - }, - "128": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 128, - "legIntPurposeIds": [], - "name": "BIDSWITCH GmbH", - "policyUrl": "http://www.bidswitch.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "130": { - "featureIds": [ - 1, - 2 - ], - "id": 130, - "legIntPurposeIds": [ - 2, - 3 - ], - "name": "AdRoll Inc", - "policyUrl": "https://www.adrollgroup.com/privacy", - "purposeIds": [ - 1 - ] - }, - "132": { - "featureIds": [ - 1, - 2 - ], - "id": 132, - "legIntPurposeIds": [ - 3, - 4, - 5 - ], - "name": "Teads ", - "policyUrl": "https://teads.tv/privacy-policy/", - "purposeIds": [ - 1, - 2 - ] - }, - "134": { - "featureIds": [ - 1, - 2 - ], - "id": 134, - "legIntPurposeIds": [], - "name": "SMARTSTREAM.TV GmbH", - "policyUrl": "https://www.smartstream.tv/en/privacy", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "136": { - "featureIds": [ - 2, - 3 - ], - "id": 136, - "legIntPurposeIds": [ - 1, - 2, - 3, - 5 - ], - "name": "Str\u00f6er SSP GmbH", - "policyUrl": "https://www.stroeer.de/fileadmin/user_upload/Datenschutz.pdf", - "purposeIds": [] - }, - "137": { - "featureIds": [], - "id": 137, - "legIntPurposeIds": [ - 1, - 2, - 3 - ], - "name": "mbr targeting GmbH", - "policyUrl": "https://privacy.mbr-targeting.com/?optedIn=true", - "purposeIds": [] - }, - "140": { - "featureIds": [], - "id": 140, - "legIntPurposeIds": [], - "name": "Platform161", - "policyUrl": "https://platform161.com/cookie-and-privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "142": { - "featureIds": [ - 3 - ], - "id": 142, - "legIntPurposeIds": [ - 3, - 5 - ], - "name": "Media.net Advertising FZ-LLC", - "policyUrl": "https://www.media.net/en/privacy-policy", - "purposeIds": [ - 1, - 2 - ] - }, - "143": { - "featureIds": [], - "id": 143, - "legIntPurposeIds": [], - "name": "Connatix Native Exchange Inc.", - "policyUrl": "https://connatix.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "144": { - "featureIds": [], - "id": 144, - "legIntPurposeIds": [], - "name": "district m inc.", - "policyUrl": "https://districtm.net/en/page/platforms-data-and-privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "145": { - "featureIds": [], - "id": 145, - "legIntPurposeIds": [], - "name": "Snapsort Inc., operating as Sortable", - "policyUrl": "https://sortable.com/privacy", - "purposeIds": [ - 1, - 5 - ] - }, - "148": { - "featureIds": [ - 2 - ], - "id": 148, - "legIntPurposeIds": [], - "name": "Liveintent Inc.", - "policyUrl": "https://liveintent.com/services-privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "151": { - "featureIds": [ - 3 - ], - "id": 151, - "legIntPurposeIds": [ - 1, - 2, - 3 - ], - "name": "Admedo Ltd", - "policyUrl": "https://www.admedo.com/privacy-policy", - "purposeIds": [] - }, - "152": { - "featureIds": [], - "id": 152, - "legIntPurposeIds": [ - 5 - ], - "name": "Meetrics GmbH", - "policyUrl": "https://www.meetrics.com/en/data-privacy/", - "purposeIds": [] - }, - "157": { - "featureIds": [], - "id": 157, - "legIntPurposeIds": [], - "name": "Seedtag Advertising S.L", - "policyUrl": "https://www.seedtag.com/en/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "159": { - "featureIds": [], - "id": 159, - "legIntPurposeIds": [], - "name": "Underdog Media LLC ", - "policyUrl": "https://underdogmedia.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "160": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 160, - "legIntPurposeIds": [], - "name": "Netsprint SA", - "policyUrl": "http://spoldzielnia.nsaudience.pl/opt-out/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "162": { - "featureIds": [ - 1, - 2 - ], - "id": 162, - "legIntPurposeIds": [ - 1, - 2, - 3, - 5 - ], - "name": "Unruly Group Ltd", - "policyUrl": "https://unruly.co/privacy/", - "purposeIds": [] - }, - "163": { - "featureIds": [ - 1, - 2 - ], - "id": 163, - "legIntPurposeIds": [ - 3, - 4, - 5 - ], - "name": "Bombora Inc.", - "policyUrl": "https://bombora.com/privacy", - "purposeIds": [ - 1, - 2 - ] - }, - "164": { - "featureIds": [ - 1 - ], - "id": 164, - "legIntPurposeIds": [ - 4 - ], - "name": "Outbrain UK Ltd", - "policyUrl": "https://www.outbrain.com/legal/", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "165": { - "featureIds": [], - "id": 165, - "legIntPurposeIds": [], - "name": "SpotX", - "policyUrl": "https://www.spotx.tv/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "171": { - "featureIds": [], - "id": 171, - "legIntPurposeIds": [], - "name": "Webedia", - "policyUrl": "http://www.webedia-group.com/site/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "173": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 173, - "legIntPurposeIds": [], - "name": "Yieldmo, Inc.", - "policyUrl": "https://www.yieldmo.com/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "177": { - "featureIds": [], - "id": 177, - "legIntPurposeIds": [ - 5 - ], - "name": "plista GmbH", - "policyUrl": "https://www.plista.com/about/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4 - ] - }, - "178": { - "featureIds": [], - "id": 178, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Affectv Ltd", - "policyUrl": "https://affectv.com/privacy-policy", - "purposeIds": [] - }, - "184": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 184, - "legIntPurposeIds": [], - "name": "mediarithmics SAS", - "policyUrl": "https://www.mediarithmics.com/en-us/content/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "185": { - "featureIds": [ - 1, - 2 - ], - "id": 185, - "legIntPurposeIds": [], - "name": "Bidtellect, Inc", - "policyUrl": "https://www.bidtellect.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "197": { - "featureIds": [], - "id": 197, - "legIntPurposeIds": [], - "name": "Switch Concepts Limited", - "policyUrl": "https://www.switchconcepts.com/privacy-policy", - "purposeIds": [ - 1, - 3, - 5 - ] - }, - "203": { - "featureIds": [], - "id": 203, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Revcontent, LLC", - "policyUrl": "https://faq.revcontent.com/customer/en/portal/articles/2703838-revcontent-s-privacy-and-cookie-policy", - "purposeIds": [] - }, - "206": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 206, - "legIntPurposeIds": [], - "name": "Hybrid Adtech GmbH", - "policyUrl": "https://hybrid.ai/data_protection_policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "209": { - "featureIds": [ - 3 - ], - "id": 209, - "legIntPurposeIds": [ - 2, - 3, - 5 - ], - "name": "Delta Projects AB", - "policyUrl": "http://www.deltaprojects.com/data-collection-policy/", - "purposeIds": [ - 1 - ] - }, - "210": { - "featureIds": [ - 1 - ], - "id": 210, - "legIntPurposeIds": [], - "name": "Zemanta, Inc.", - "policyUrl": "http://www.zemanta.com/legal/privacy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "211": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 211, - "legIntPurposeIds": [], - "name": "AdTheorent, Inc", - "policyUrl": "http://adtheorent.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "212": { - "featureIds": [], - "id": 212, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "usemax advertisement (Emego GmbH)", - "policyUrl": "http://www.usemax.de/?l=privacy", - "purposeIds": [] - }, - "213": { - "featureIds": [ - 1, - 2 - ], - "id": 213, - "legIntPurposeIds": [ - 2, - 3, - 5 - ], - "name": "emetriq GmbH", - "policyUrl": "https://www.emetriq.com/datenschutz/", - "purposeIds": [ - 1 - ] - }, - "225": { - "featureIds": [ - 3 - ], - "id": 225, - "legIntPurposeIds": [ - 1, - 2, - 3, - 5 - ], - "name": "Ligatus GmbH", - "policyUrl": "https://www.ligatus.com/en/privacy-policy", - "purposeIds": [] - }, - "230": { - "featureIds": [], - "id": 230, - "legIntPurposeIds": [], - "name": "Steel House, Inc.", - "policyUrl": "https://steelhouse.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "231": { - "featureIds": [], - "id": 231, - "legIntPurposeIds": [], - "name": "Acuityads Inc.", - "policyUrl": "https://www.acuityads.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "234": { - "featureIds": [ - 1, - 2 - ], - "id": 234, - "legIntPurposeIds": [ - 5 - ], - "name": "ZBO Media", - "policyUrl": "https://zbo.media/mentions-legales/politique-de-confidentialite-service-publicitaire/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "237": { - "featureIds": [ - 2, - 3 - ], - "id": 237, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "LKQD, a division of Nexstar Digital, LLC.", - "policyUrl": "http://www.lkqd.com/privacy-policy/", - "purposeIds": [] - }, - "238": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 238, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "StackAdapt", - "policyUrl": "https://www.stackadapt.com/privacy", - "purposeIds": [] - }, - "242": { - "featureIds": [ - 2, - 3 - ], - "id": 242, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "twiago GmbH", - "policyUrl": "https://www.twiago.com/datenschutz/", - "purposeIds": [] - }, - "243": { - "featureIds": [ - 1, - 2 - ], - "id": 243, - "legIntPurposeIds": [], - "name": "Cloud Technologies S.A.", - "policyUrl": "http://onaudience.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "244": { - "featureIds": [ - 1, - 2 - ], - "id": 244, - "legIntPurposeIds": [], - "name": "Leadplace - Temelio", - "policyUrl": "https://temelio.com/vie-privee", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "251": { - "featureIds": [], - "id": 251, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Yieldlove GmbH", - "policyUrl": "http://www.yieldlove.com/cookie-policy", - "purposeIds": [] - }, - "253": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 253, - "legIntPurposeIds": [], - "name": "Improve Digital International BV", - "policyUrl": "https://www.improvedigital.com/platform-privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "254": { - "featureIds": [ - 3 - ], - "id": 254, - "legIntPurposeIds": [ - 1, - 2, - 3, - 5 - ], - "name": "LiquidM Technology GmbH", - "policyUrl": "https://liquidm.com/privacy-policy/", - "purposeIds": [] - }, - "256": { - "featureIds": [ - 1, - 2 - ], - "id": 256, - "legIntPurposeIds": [ - 2, - 4, - 5 - ], - "name": "Bounce Exchange, Inc", - "policyUrl": "https://www.bouncex.com/privacy/", - "purposeIds": [ - 1 - ] - }, - "259": { - "featureIds": [], - "id": 259, - "legIntPurposeIds": [ - 1, - 3, - 5 - ], - "name": "ADYOULIKE SA", - "policyUrl": "https://www.adyoulike.com/privacy_policy.php", - "purposeIds": [ - 2, - 4 - ] - }, - "261": { - "featureIds": [ - 1, - 2 - ], - "id": 261, - "legIntPurposeIds": [], - "name": "Signal Digital Inc.", - "policyUrl": "https://www.signal.co/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "262": { - "featureIds": [ - 3 - ], - "id": 262, - "legIntPurposeIds": [], - "name": "Fyber ", - "policyUrl": "https://www.fyber.com/legal/privacy-policy/", - "purposeIds": [ - 3 - ] - }, - "263": { - "featureIds": [], - "id": 263, - "legIntPurposeIds": [ - 5 - ], - "name": "Nativo, Inc.", - "policyUrl": "https://www.nativo.com/interest-based-ads", - "purposeIds": [ - 1, - 2, - 3, - 4 - ] - }, - "264": { - "featureIds": [ - 2, - 3 - ], - "id": 264, - "legIntPurposeIds": [], - "name": "Adobe Advertising Cloud", - "policyUrl": "https://www.adobe.com/nz/privacy/marketing-cloud.html", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "266": { - "featureIds": [ - 1 - ], - "id": 266, - "legIntPurposeIds": [], - "name": "Digilant Spain, SLU", - "policyUrl": "https://www.digilant.com/es/politica-privacidad/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "272": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 272, - "legIntPurposeIds": [], - "name": "A.Mob", - "policyUrl": "https://www.we-are-adot.com/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "273": { - "featureIds": [], - "id": 273, - "legIntPurposeIds": [ - 3 - ], - "name": "Bannerflow AB", - "policyUrl": "https://www.bannerflow.com/privacy ", - "purposeIds": [] - }, - "278": { - "featureIds": [], - "id": 278, - "legIntPurposeIds": [ - 5 - ], - "name": "Integral Ad Science, Inc.", - "policyUrl": "https://integralads.com/privacy-policy/", - "purposeIds": [] - }, - "280": { - "featureIds": [], - "id": 280, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Spot.IM Ltd.", - "policyUrl": "http://spot.im/privacy", - "purposeIds": [] - }, - "284": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 284, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "WEBORAMA", - "policyUrl": "https://weborama.com/privacy_en/", - "purposeIds": [ - 1 - ] - }, - "285": { - "featureIds": [], - "id": 285, - "legIntPurposeIds": [], - "name": "Comcast International France SAS", - "policyUrl": "http://freewheel.tv/privacy-policy", - "purposeIds": [ - 1 - ] - }, - "294": { - "featureIds": [ - 3 - ], - "id": 294, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Jivox Corporation", - "policyUrl": "https://www.jivox.com/privacy", - "purposeIds": [] - }, - "295": { - "featureIds": [ - 2 - ], - "id": 295, - "legIntPurposeIds": [], - "name": "Sojern, Inc.", - "policyUrl": "https://www.sojern.com/privacy/product-privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "297": { - "featureIds": [], - "id": 297, - "legIntPurposeIds": [ - 1, - 3, - 4, - 5 - ], - "name": "Polar Mobile Group Inc.", - "policyUrl": "https://privacy.polar.me", - "purposeIds": [ - 2 - ] - }, - "299": { - "featureIds": [ - 1, - 2 - ], - "id": 299, - "legIntPurposeIds": [ - 2, - 3, - 4 - ], - "name": "AdClear GmbH", - "policyUrl": "https://www.adclear.de/datenschutzerklaerung/", - "purposeIds": [ - 1, - 5 - ] - }, - "308": { - "featureIds": [], - "id": 308, - "legIntPurposeIds": [ - 2, - 3 - ], - "name": "Rockabox Media Ltd", - "policyUrl": "http://scoota.com/privacy-policy", - "purposeIds": [ - 1 - ] - }, - "310": { - "featureIds": [], - "id": 310, - "legIntPurposeIds": [ - 4 - ], - "name": "Schibsted Classified Media Spain, S.L.", - "policyUrl": "https://www.vibbo.com/privacidad.htm?ca=0_s", - "purposeIds": [] - }, - "312": { - "featureIds": [], - "id": 312, - "legIntPurposeIds": [], - "name": "Exactag GmbH", - "policyUrl": "https://www.exactag.com/en/data-privacy/", - "purposeIds": [ - 1, - 5 - ] - }, - "320": { - "featureIds": [ - 2, - 3 - ], - "id": 320, - "legIntPurposeIds": [], - "name": "Adelphic LLC", - "policyUrl": "https://adelphic.com/platform/privacy/", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "321": { - "featureIds": [ - 2 - ], - "id": 321, - "legIntPurposeIds": [], - "name": "Ziff Davis LLC", - "policyUrl": "http://www.ziffdavis.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 5 - ] - }, - "323": { - "featureIds": [ - 1, - 2 - ], - "id": 323, - "legIntPurposeIds": [ - 1, - 3, - 4, - 5 - ], - "name": "Perform Media Services Ltd", - "policyUrl": "http://www.performgroup.com/media-privacy-notice", - "purposeIds": [ - 2 - ] - }, - "328": { - "featureIds": [ - 2 - ], - "id": 328, - "legIntPurposeIds": [], - "name": "Gemius SA", - "policyUrl": "https://www.gemius.com/cookie-policy.html", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "331": { - "featureIds": [ - 2, - 3 - ], - "id": 331, - "legIntPurposeIds": [ - 3, - 5 - ], - "name": "ad6media", - "policyUrl": "https://www.ad6media.fr/privacy", - "purposeIds": [ - 1, - 2, - 4 - ] - }, - "335": { - "featureIds": [], - "id": 335, - "legIntPurposeIds": [ - 1, - 3, - 4, - 5 - ], - "name": "Beachfront Media LLC", - "policyUrl": "http://beachfront.com/privacy-policy/", - "purposeIds": [] - }, - "340": { - "featureIds": [ - 1, - 3 - ], - "id": 340, - "legIntPurposeIds": [], - "name": "Yieldr UK", - "policyUrl": "https://www.yieldr.com/privacy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "343": { - "featureIds": [ - 3 - ], - "id": 343, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "DIGITEKA Technologies", - "policyUrl": "https://www.ultimedia.com/POLICY.html", - "purposeIds": [] - }, - "349": { - "featureIds": [ - 2 - ], - "id": 349, - "legIntPurposeIds": [], - "name": "Optomaton UG", - "policyUrl": "http://optomaton.com/privacy.html", - "purposeIds": [ - 1, - 2, - 3, - 4 - ] - }, - "350": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 350, - "legIntPurposeIds": [], - "name": "Free Stream Media Corp. dba Samba TV", - "policyUrl": "https://samba.tv/legal/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "351": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 351, - "legIntPurposeIds": [], - "name": "Samba TV UK Limited", - "policyUrl": "https://samba.tv/legal/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "354": { - "featureIds": [], - "id": 354, - "legIntPurposeIds": [ - 1, - 3, - 4, - 5 - ], - "name": "Apester Ltd", - "policyUrl": "https://apester.com/privacy-policy/", - "purposeIds": [ - 2 - ] - }, - "358": { - "featureIds": [ - 1 - ], - "id": 358, - "legIntPurposeIds": [], - "name": "MGID Inc.", - "policyUrl": "https://www.mgid.com/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "360": { - "featureIds": [ - 1, - 2 - ], - "id": 360, - "legIntPurposeIds": [ - 1 - ], - "name": "Permutive Technologies, Inc.", - "policyUrl": "https://permutive.com/privacy", - "purposeIds": [] - }, - "365": { - "featureIds": [], - "id": 365, - "legIntPurposeIds": [ - 1, - 5 - ], - "name": "Forensiq LLC", - "policyUrl": "https://impact.com/privacy-policy/", - "purposeIds": [] - }, - "371": { - "featureIds": [ - 3 - ], - "id": 371, - "legIntPurposeIds": [ - 1, - 2, - 3, - 4, - 5 - ], - "name": "Seeding Alliance GmbH", - "policyUrl": "http://seeding-alliance.de/datenschutz", - "purposeIds": [] - }, - "373": { - "featureIds": [ - 1, - 2 - ], - "id": 373, - "legIntPurposeIds": [ - 5 - ], - "name": "Nielsen Marketing Cloud", - "policyUrl": "http://www.nielsen.com/us/en/privacy-statement/exelate-privacy-policy.html", - "purposeIds": [ - 1, - 2 - ] - }, - "382": { - "featureIds": [], - "id": 382, - "legIntPurposeIds": [ - 3 - ], - "name": "The Reach Group GmbH", - "policyUrl": "https://www.reachgroup.com/en/privacy-statement/", - "purposeIds": [ - 1, - 2, - 4, - 5 - ] - }, - "384": { - "featureIds": [], - "id": 384, - "legIntPurposeIds": [ - 1, - 5 - ], - "name": "Pixalate, Inc.", - "policyUrl": "http://pixalate.com/privacypolicy/", - "purposeIds": [] - }, - "385": { - "featureIds": [ - 2 - ], - "id": 385, - "legIntPurposeIds": [ - 5 - ], - "name": "Oracle", - "policyUrl": "https://www.oracle.com/legal/privacy/marketing-cloud-data-cloud-privacy-policy.html", - "purposeIds": [ - 1, - 2, - 3, - 4 - ] - }, - "388": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 388, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "numberly", - "policyUrl": "http://ads.1000mercis.com/fr.html", - "purposeIds": [ - 1 - ] - }, - "397": { - "featureIds": [ - 1, - 2, - 3 - ], - "id": 397, - "legIntPurposeIds": [ - 2, - 3, - 4, - 5 - ], - "name": "Demandbase, Inc. ", - "policyUrl": "https://www.demandbase.com/privacy-policy/", - "purposeIds": [ - 1 - ] - }, - "402": { - "featureIds": [ - 2 - ], - "id": 402, - "legIntPurposeIds": [], - "name": "Effiliation", - "policyUrl": "https://inter.effiliation.com/politique-confidentialite.html", - "purposeIds": [ - 2, - 3, - 4, - 5 - ] - }, - "412": { - "featureIds": [], - "id": 412, - "legIntPurposeIds": [], - "name": "Cxense ASA", - "policyUrl": "https://www.cxense.com/about-us/privacy-policy", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "413": { - "featureIds": [ - 1, - 2 - ], - "id": 413, - "legIntPurposeIds": [], - "name": "Eulerian Technologies", - "policyUrl": "https://www.eulerian.com/en/privacy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "418": { - "featureIds": [ - 3 - ], - "id": 418, - "legIntPurposeIds": [ - 3 - ], - "name": "PROXISTORE", - "policyUrl": "https://www.proxistore.com/common/en/cgv", - "purposeIds": [ - 1 - ] - }, - "423": { - "featureIds": [], - "id": 423, - "legIntPurposeIds": [], - "name": "travel audience GmbH", - "policyUrl": "https://travelaudience.com/product-privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "426": { - "featureIds": [ - 2 - ], - "id": 426, - "legIntPurposeIds": [ - 1, - 3, - 5 - ], - "name": "TradeTracker", - "policyUrl": "https://tradetracker.com/privacy-policy/", - "purposeIds": [] - }, - "428": { - "featureIds": [], - "id": 428, - "legIntPurposeIds": [ - 1, - 3, - 4, - 5 - ], - "name": "Internet BillBoard a.s.", - "policyUrl": "http://www.ibillboard.com/en/privacy-information/", - "purposeIds": [] - }, - "434": { - "featureIds": [ - 1, - 3 - ], - "id": 434, - "legIntPurposeIds": [ - 2, - 4 - ], - "name": "DynAdmic", - "policyUrl": "http://eu.dynadmic.com/privacy-policy/", - "purposeIds": [ - 1, - 3 - ] - }, - "438": { - "featureIds": [ - 2, - 3 - ], - "id": 438, - "legIntPurposeIds": [], - "name": "Ooyala Inc", - "policyUrl": "https://ooyala.com/privacy", - "purposeIds": [ - 1, - 2, - 3 - ] - }, - "442": { - "featureIds": [], - "id": 442, - "legIntPurposeIds": [], - "name": "R-Advertising", - "policyUrl": "http://www.tradedoubler.com/en/privacy-policy/", - "purposeIds": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - "443": { - "featureIds": [ - 2 - ], - "id": 443, - "legIntPurposeIds": [ - 1, - 5 - ], - "name": "Tradedoubler AB", - "policyUrl": "https://www.tradedoubler.com/en/privacy-policy/", - "purposeIds": [] - }, - "444": { - "featureIds": [ - 3 - ], - "id": 444, - "legIntPurposeIds": [ - 1, - 3, - 4, - 5 - ], - "name": "Playbuzz Ltd. ", - "policyUrl": "https://www.playbuzz.com/PrivacyPolicy", - "purposeIds": [ - 2 - ] - }, - "459": { - "featureIds": [], - "id": 459, - "legIntPurposeIds": [ - 1, - 3, - 5 - ], - "name": "uppr GmbH", - "policyUrl": "https://netzwerk.uppr.de/privacy-policy.do", - "purposeIds": [] - } - } - }, - "trackers": { - "1000mercis": { - "category": "site_analytics", - "company_id": "1000mercis", - "description": null, - "domains": [ - "mmtro.com" - ], - "ghostery_id": "2662", - "iab_vendor": 388, - "id": "1000mercis", - "name": "1000mercis", - "privacy_url": "http://ads.1000mercis.com/fr.html", - "truste_type": null, - "website_url": null - }, - "161media": { - "category": "site_analytics", - "company_id": "platform161", - "description": "161MEDIA is a leader in digital media by delivering messages to the right audience at the right time on the right device to achieve the best results. ", - "domains": [ - "creative-serving.com" - ], - "ghostery_id": "c_840", - "iab_vendor": 140, - "id": "161media", - "name": "Platform161", - "privacy_url": "https://platform161.com/cookie-and-privacy-policy/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "https://platform161.com/" - }, - "1822direkt.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "1822direkt.de" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "1822direkt.de", - "name": "1822direkt.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.1822direkt.de/" - }, - "1dmp.io": { - "category": "advertising", - "company_id": null, - "description": "1DMP (Data Marketing Platform) helps marketers and agencies to collect, manage, analyze, and monetize their data, make data work for business results ", - "domains": [ - "1dmp.io" - ], - "ghostery_id": "3104", - "iab_vendor": null, - "id": "1dmp.io", - "name": "1DMP", - "privacy_url": "https://1dmp.io/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "https://1dmp.io/" - }, - "1plusx": { - "category": "site_analytics", - "company_id": "1plusx", - "description": null, - "domains": [ - "opecloud.com" - ], - "ghostery_id": null, - "iab_vendor": 92, - "id": "1plusx", - "name": "1plusX", - "privacy_url": "https://www.1plusx.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.1plusx.com/" - }, - "1und1": { - "category": "misc", - "company_id": null, - "description": "1&1 Internet Inc. provides Web hosting solutions for private users, as well as high-end products for small-and medium-sized businesses.", - "domains": [ - "1and1.com", - "1und1.de", - "uicdn.com", - "website-start.de" - ], - "ghostery_id": "c_1566", - "iab_vendor": null, - "id": "1und1", - "name": "1&1 Internet", - "privacy_url": "https://www.1and1.com/terms-gtc/fileadmin/Terms/PDF_US/2018_01_US_Privacy_Policy_DWE.pdf", - "truste_type": "Publisher Related", - "website_url": null - }, - "24-ads.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "24-ads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "24-ads.com", - "name": "24-ADS GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.24-ads.com/" - }, - "24_7": { - "category": "customer_interaction", - "company_id": null, - "description": "[24]7.ai is redefining the way companies interact with consumers that used artificial intelligence and machine learning to understand consumer intent.", - "domains": [ - "247-inc.net", - "d1af033869koo7.cloudfront.net" - ], - "ghostery_id": "1670", - "iab_vendor": null, - "id": "24_7", - "name": "[24]7", - "privacy_url": "https://www.247.ai/privacy-policy", - "truste_type": "Ad Platform", - "website_url": "http://www.247-inc.com/" - }, - "24smi": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "24smi.net", - "24smi.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "24smi", - "name": "24\u0421\u041c\u0418", - "privacy_url": null, - "truste_type": null, - "website_url": "https://24smi.org/" - }, - "33across": { - "category": "advertising", - "company_id": "33across", - "description": "33Across is a publisher technology platform that powers quality publishers to earn revenue, optimize yield, and gain actionable insights. ", - "domains": [ - "33across.com" - ], - "ghostery_id": "256", - "iab_vendor": 58, - "id": "33across", - "name": "33Across", - "privacy_url": "http://www.33across.com/privacy-policy", - "truste_type": "Ad Platform", - "website_url": "http://33across.com/" - }, - "4chan": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "4cdn.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "4chan", - "name": "4Chan", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.4chan.org/" - }, - "4finance_com": { - "category": "customer_interaction", - "company_id": null, - "description": "4Finance is a global leader in digital consumer finance as an online and mobile consumer lending group. ", - "domains": [ - "4finance.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "4finance_com", - "name": "4finance.com", - "privacy_url": "https://www.4finance.com/footer/privacy-policy/", - "truste_type": "Publisher Related", - "website_url": "http://4finance.com/" - }, - "7tv.de": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "7tv.de" - ], - "ghostery_id": "7tv.de", - "iab_vendor": null, - "id": "7tv.de", - "name": "7tv.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.7tv.de/" - }, - "94j7afz2nr.xyz": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "94j7afz2nr.xyz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "94j7afz2nr.xyz", - "name": "94j7afz2nr.xyz", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "a3cloud_net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "a3cloud.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "a3cloud_net", - "name": "a3cloud.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "aaxads.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "aaxads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "aaxads.com", - "name": "Acceptable Ads Exchange", - "privacy_url": null, - "truste_type": null, - "website_url": "https://aax.media/" - }, - "ab_tasty": { - "category": "site_analytics", - "company_id": "ab_tasty", - "description": null, - "domains": [ - "abtasty.com", - "d1447tq2m68ekg.cloudfront.net" - ], - "ghostery_id": "1930", - "iab_vendor": null, - "id": "ab_tasty", - "name": "AB Tasty", - "privacy_url": "https://www.abtasty.com/uk/terms-of-use/", - "truste_type": null, - "website_url": "https://en.abtasty.com" - }, - "ablida": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "ablida.de", - "ablida.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ablida", - "name": "ablida", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ablida.de/" - }, - "accengage": { - "category": "advertising", - "company_id": "accengage", - "description": null, - "domains": [ - "accengage.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "accengage", - "name": "Accengage", - "privacy_url": "https://www.accengage.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.accengage.com/" - }, - "acestream.net": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "acestream.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "acestream.net", - "name": "ActStream", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.acestream.org/" - }, - "acint.net": { - "category": "site_analytics", - "company_id": "acint", - "description": null, - "domains": [ - "acint.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "acint.net", - "name": "Acint", - "privacy_url": "http://acint.net/", - "truste_type": null, - "website_url": "https://www.acint.net/" - }, - "acpm.fr": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "acpm.fr" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "acpm.fr", - "name": "ACPM", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.acpm.fr/" - }, - "acquia.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "acquia.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "acquia.com", - "name": "Acquia", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.acquia.com/" - }, - "acrweb": { - "category": "social_media", - "company_id": "acrweb", - "description": null, - "domains": [ - "ziyu.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "acrweb", - "name": "ACRWEB", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ziyu.net/" - }, - "active_agent": { - "category": "advertising", - "company_id": "active_agent", - "description": null, - "domains": [ - "active-agent.com" - ], - "ghostery_id": null, - "iab_vendor": 40, - "id": "active_agent", - "name": "Active Agent", - "privacy_url": "http://www.active-agent.com/de/unternehmen/datenschutzerklaerung/", - "truste_type": null, - "website_url": "http://www.active-agent.com/" - }, - "acuity_ads": { - "category": "advertising", - "company_id": "acuity_ads", - "description": "AcuityAds is a technology company that enables marketers to connect intelligently with their most meaningful audiences through digital media.", - "domains": [ - "acuityplatform.com" - ], - "ghostery_id": "1250", - "iab_vendor": 231, - "id": "acuity_ads", - "name": "Acuity Ads", - "privacy_url": "https://www.acuityads.com/privacy-policy/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "http://www.acuityads.com/" - }, - "acxiom": { - "category": "advertising", - "company_id": "acxiom", - "description": "Acxiom is an enterprise data, analytics and software as a service company. For more than 40 years, Acxiom has been a leader in harnessing the powerful potential of data to strengthen connections between people, businesses and their partners. ", - "domains": [ - "acxiom.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "acxiom", - "name": "Acxiom", - "privacy_url": "https://www.acxiom.com/about-us/privacy/", - "truste_type": "Service Provider", - "website_url": null - }, - "ad-blocker.org": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "ad-blocker.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ad-blocker.org", - "name": "ad-blocker.org", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "ad-delivery.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "ad-delivery.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ad-delivery.net", - "name": "ad-delivery.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "ad4mat": { - "category": "advertising", - "company_id": "ad4mat", - "description": "AD4mat provides a consistently high sales volume in both performance display and retargeting. ", - "domains": [ - "ad4mat.ar", - "ad4mat.at", - "ad4mat.be", - "ad4mat.bg", - "ad4mat.br", - "ad4mat.ch", - "ad4mat.co.uk", - "ad4mat.cz", - "ad4mat.de", - "ad4mat.dk", - "ad4mat.es", - "ad4mat.fi", - "ad4mat.fr", - "ad4mat.gr", - "ad4mat.hu", - "ad4mat.it", - "ad4mat.mx", - "ad4mat.net", - "ad4mat.nl", - "ad4mat.no", - "ad4mat.pl", - "ad4mat.ro", - "ad4mat.ru", - "ad4mat.se", - "ad4mat.tr" - ], - "ghostery_id": "1288", - "iab_vendor": null, - "id": "ad4mat", - "name": "ad4mat", - "privacy_url": " http://www.ad4mat.com/en/privacy/", - "truste_type": "Ad Network", - "website_url": "http://ad4mat.info" - }, - "ad6media": { - "category": "advertising", - "company_id": "ad6media", - "description": "Ad6 media is the web agency expert in valuation and monetization of audience. It combines the power of a network of premium publishers, with the real-time optimization of impacting formats, with a view to creating value. ", - "domains": [ - "ad6.fr", - "ad6media.co.uk", - "ad6media.com", - "ad6media.es", - "ad6media.fr" - ], - "ghostery_id": "954", - "iab_vendor": 331, - "id": "ad6media", - "name": "ad6media", - "privacy_url": "https://www.ad6media.fr/privacy", - "truste_type": "Ad Server", - "website_url": "https://www.ad6media.fr/" - }, - "ad_lightning": { - "category": "advertising", - "company_id": "ad_lightning", - "description": null, - "domains": [ - "adlightning.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ad_lightning", - "name": "Ad Lightning", - "privacy_url": "https://www.adlightning.com/privacy", - "truste_type": null, - "website_url": "https://www.adlightning.com/" - }, - "ad_spirit": { - "category": "advertising", - "company_id": "adspirit", - "description": null, - "domains": [ - "adspirit.de", - "adspirit.net" - ], - "ghostery_id": "871", - "iab_vendor": 6, - "id": "ad_spirit", - "name": "Ad Spirit", - "privacy_url": "http://www.adspirit.de/privacy", - "truste_type": null, - "website_url": "http://www.adspirit.de " - }, - "adac_de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "adac.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adac_de", - "name": "adac.de", - "privacy_url": null, - "truste_type": null, - "website_url": "http://adac.de/" - }, - "adality_gmbh": { - "category": "advertising", - "company_id": "arvato", - "description": "Realworld offline data for your online campaigns. ", - "domains": [ - "adrtx.net" - ], - "ghostery_id": "c_m6", - "iab_vendor": null, - "id": "adality_gmbh", - "name": "adality GmbH", - "privacy_url": "https://www.arvato.com/de/ueber-arvato/datenschutz.html", - "truste_type": "Retargeting / Optimization", - "website_url": null - }, - "adalliance.io": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adalliance.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adalliance.io", - "name": "Ad Alliance", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ad-alliance.de/" - }, - "adalyser.com": { - "category": "site_analytics", - "company_id": "onesoon", - "description": null, - "domains": [ - "adalyser.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adalyser.com", - "name": "Adalyser", - "privacy_url": "https://www.adalyser.com/privacy", - "truste_type": null, - "website_url": "https://www.adalyser.com/" - }, - "adap.tv": { - "category": "advertising", - "company_id": "verizon", - "description": "Technology platform that delivers and tracks advertisements independent of the web site where the ad is displayed ", - "domains": [ - "adap.tv" - ], - "ghostery_id": "573", - "iab_vendor": null, - "id": "adap.tv", - "name": "Adap.tv", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": "Ad Platform", - "website_url": "http://www.adap.tv/" - }, - "adara_analytics": { - "category": "advertising", - "company_id": "adara_analytics", - "description": "ADARA leverages global travel data to drive future business performance. ADARA's Magellan platform transforms loyalty, search and booking data into actionable knowledge that allows companies to better understand, reach and engage customers. The platform is fueled by first party data from more than 90 global travel brands, including United, Delta, Hyatt, Marriott and Hertz, while protecting consumer privacy. ", - "domains": [ - "yieldoptimizer.com" - ], - "ghostery_id": "469", - "iab_vendor": 57, - "id": "adara_analytics", - "name": "ADARA Analytics", - "privacy_url": "https://adara.com/privacy-promise/", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://www.adaramedia.com/" - }, - "adbetclickin.pink": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adbetclickin.pink" - ], - "ghostery_id": "adbetclickin.pink", - "iab_vendor": null, - "id": "adbetclickin.pink", - "name": "adbetnet", - "privacy_url": null, - "truste_type": null, - "website_url": "http://adbetnet.com/" - }, - "adbetnet.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adbetnet.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adbetnet.com", - "name": "adbetnet", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adbetnet.com/" - }, - "adblade.com": { - "category": "advertising", - "company_id": "adblade", - "description": "Adblade is a content-style native ad platform enabling advertisers to reach users on top branded sites with the assurance of brand safety.", - "domains": [ - "adblade.com" - ], - "ghostery_id": "385", - "iab_vendor": null, - "id": "adblade.com", - "name": "Adblade", - "privacy_url": "https://adblade.com/doc/privacy", - "truste_type": "Ad Network", - "website_url": "https://adblade.com/" - }, - "adbrain": { - "category": "advertising", - "company_id": null, - "description": "Adbrain powers marketers and their tech partners to understand and engage with their customer 1:1 across devices, channels and platforms.", - "domains": [ - "adbrn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adbrain", - "name": "AdBrain", - "privacy_url": "https://www.adbrain.com/legals/privacy-policy", - "truste_type": "Ad Platform", - "website_url": "https://www.adbrain.com/" - }, - "adc_media": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adc-serv.net", - "adc-srv.net" - ], - "ghostery_id": "1367", - "iab_vendor": null, - "id": "adc_media", - "name": "ad:C media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.adcmedia.de/en/" - }, - "adclear": { - "category": "advertising", - "company_id": "adclear", - "description": null, - "domains": [ - "adclear.net" - ], - "ghostery_id": "1273", - "iab_vendor": 299, - "id": "adclear", - "name": "AdClear", - "privacy_url": "https://www.adclear.de/datenschutzerklaerung/", - "truste_type": null, - "website_url": "http://www.adclear.de/en/home.html" - }, - "addefend": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "yagiay.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "addefend", - "name": "AdDefend", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.addefend.com/" - }, - "addthis": { - "category": "advertising", - "company_id": "oracle", - "description": "AddThis provide online marketers easy-to-use tools to deliver personalized experiences to users across the web.", - "domains": [ - "addthis.com", - "addthiscdn.com", - "addthisedge.com" - ], - "ghostery_id": "55", - "iab_vendor": null, - "id": "addthis", - "name": "AddThis", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://www.addthis.com/" - }, - "adelphic": { - "category": "site_analytics", - "company_id": "adelphic", - "description": "Adelphic is a mobile advertising solutions company that enables brands to connect with people in meaningful ways. Our technology delivers the most valuable resources in the mobile marketing industry: Audience identification, segmentation and targeting without the need for a persistent identifier. We are a privately held firm with institutional investment from Matrix Partners and Google Ventures. ", - "domains": [ - "ipredictive.com" - ], - "ghostery_id": "2533", - "iab_vendor": 320, - "id": "adelphic", - "name": "Adelphic", - "privacy_url": "https://adelphic.com/platform/privacy/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": null - }, - "adform": { - "category": "advertising", - "company_id": "adform", - "description": null, - "domains": [ - "adform.net", - "adformdsp.net", - "seadform.net" - ], - "ghostery_id": "609", - "iab_vendor": 50, - "id": "adform", - "name": "Adform", - "privacy_url": "https://site.adform.com/privacy-center/overview", - "truste_type": null, - "website_url": "http://www.adform.com" - }, - "adfox": { - "category": "advertising", - "company_id": "yandex", - "description": "ADFOX specializes in developing and providing as a service technologies for the online advertising industry. ", - "domains": [ - "adfox.ru", - "adwolf.ru" - ], - "ghostery_id": "422", - "iab_vendor": null, - "id": "adfox", - "name": "AdFox", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": "Ad Platform", - "website_url": "http://adfox.ru" - }, - "adgear": { - "category": "advertising", - "company_id": "samsung", - "description": null, - "domains": [ - "adgear.com", - "adgrx.com" - ], - "ghostery_id": "391", - "iab_vendor": null, - "id": "adgear", - "name": "AdGear", - "privacy_url": null, - "truste_type": null, - "website_url": "http://adgear.com/" - }, - "adglare.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adglare.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "adglare.net", - "name": "Adglare", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adglare.com/" - }, - "adglue": { - "category": "advertising", - "company_id": "admans", - "description": null, - "domains": [ - "adsafety.net" - ], - "ghostery_id": "2524", - "iab_vendor": null, - "id": "adglue", - "name": "Adglue", - "privacy_url": "http://www.admans.de/datenschutz/", - "truste_type": null, - "website_url": null - }, - "adgoal": { - "category": "advertising", - "company_id": "adgoal", - "description": null, - "domains": [ - "smartadcheck.de", - "smartredirect.de" - ], - "ghostery_id": "1186", - "iab_vendor": null, - "id": "adgoal", - "name": "adgoal", - "privacy_url": " https://www.adgoal.de/en/privacy.html", - "truste_type": null, - "website_url": "http://www.adgoal.de/" - }, - "adguard": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "adguard.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adguard", - "name": "Adguard", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adguard.com/" - }, - "adify": { - "category": "advertising", - "company_id": "cox_enterpries", - "description": null, - "domains": [ - "afy11.net" - ], - "ghostery_id": "105", - "iab_vendor": null, - "id": "adify", - "name": "Adify", - "privacy_url": "http://www.gamut.media/privacy-policy/", - "truste_type": null, - "website_url": "http://www.adify.com/" - }, - "adition": { - "category": "advertising", - "company_id": "prosieben_sat1", - "description": null, - "domains": [ - "adition.com" - ], - "ghostery_id": "612", - "iab_vendor": 39, - "id": "adition", - "name": "Adition", - "privacy_url": null, - "truste_type": null, - "website_url": "http://en.adition.com/" - }, - "adjust": { - "category": "site_analytics", - "company_id": "adjust", - "description": null, - "domains": [ - "adjust.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adjust", - "name": "Adjust", - "privacy_url": "https://www.adjust.com/terms/privacy-policy/", - "truste_type": null, - "website_url": "https://www.adjust.com/" - }, - "adkontekst.pl": { - "category": "advertising", - "company_id": "netsprint", - "description": null, - "domains": [ - "netsprint.eu" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adkontekst.pl", - "name": "Adkontekst", - "privacy_url": "http://spoldzielnia.nsaudience.pl/opt-out/", - "truste_type": null, - "website_url": "http://netsprint.eu/" - }, - "adlabs": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adlabs.ru", - "clickiocdn.com", - "luxup.ru", - "mixmarket.biz" - ], - "ghostery_id": "1167", - "iab_vendor": null, - "id": "adlabs", - "name": "AdLabs", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adlabs.ru/" - }, - "adloox": { - "category": "advertising", - "company_id": "adloox", - "description": null, - "domains": [ - "adlooxtracking.com" - ], - "ghostery_id": "943", - "iab_vendor": 93, - "id": "adloox", - "name": "Adloox", - "privacy_url": "http://adloox.com/disclaimer", - "truste_type": null, - "website_url": "http://www.adloox.com" - }, - "admachine": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adx1.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "admachine", - "name": "AdMachine", - "privacy_url": null, - "truste_type": null, - "website_url": "https://admachine.co/" - }, - "admantx.com": { - "category": "advertising", - "company_id": "expert_system_spa", - "description": null, - "domains": [ - "admantx.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "admantx.com", - "name": "ADmantX", - "privacy_url": "http://www.expertsystem.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.admantx.com/" - }, - "admedo_com": { - "category": "advertising", - "company_id": "admedo", - "description": null, - "domains": [ - "adizio.com", - "admedo.com" - ], - "ghostery_id": null, - "iab_vendor": 151, - "id": "admedo_com", - "name": "Admedo", - "privacy_url": "https://www.admedo.com/privacy-policy", - "truste_type": null, - "website_url": "http://admedo.com/" - }, - "admeira.ch": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "admeira.ch" - ], - "ghostery_id": "admeira.ch", - "iab_vendor": null, - "id": "admeira.ch", - "name": "AdMeira", - "privacy_url": null, - "truste_type": null, - "website_url": "http://admeira.ch/" - }, - "admeta": { - "category": "advertising", - "company_id": "admeta", - "description": null, - "domains": [ - "admaym.com", - "atemda.com" - ], - "ghostery_id": "642", - "iab_vendor": null, - "id": "admeta", - "name": "Admeta", - "privacy_url": "http://www.admeta.com/upload/Privacy%20Policy.pdf", - "truste_type": null, - "website_url": "http://www.admeta.com/" - }, - "admitad.com": { - "category": "advertising", - "company_id": "admitad", - "description": "Admitad is an affiliate network that provides technical and functional tools to help advertising campaigns get a large number of publishers. ", - "domains": [ - "admitad.com" - ], - "ghostery_id": "1306", - "iab_vendor": null, - "id": "admitad.com", - "name": "Admitad", - "privacy_url": "https://www.admitad.com/en/privacy/#", - "truste_type": "Ad Network", - "website_url": "https://www.admitad.com/en/#" - }, - "admixer.net": { - "category": "advertising", - "company_id": null, - "description": "Admixer Ltd. Group is a technology company that develops and maintains products in the field of digital advertising management. ", - "domains": [ - "admixer.net" - ], - "ghostery_id": "1852", - "iab_vendor": null, - "id": "admixer.net", - "name": "Admixer", - "privacy_url": "https://admixer.net/privacy", - "truste_type": "Ad Server", - "website_url": "https://admixer.net/" - }, - "admized": { - "category": "misc", - "company_id": null, - "description": "ADMIZED was founded to provide a platform equally for advertisers and publishers to get more out of their online activities.", - "domains": [ - "admized.com" - ], - "ghostery_id": "c_3246", - "iab_vendor": null, - "id": "admized", - "name": "ADMIZED", - "privacy_url": "http://www.admized.com/de_DE/imprint/privacy-policy-declaration/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": null - }, - "admo.tv": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "admo.tv" - ], - "ghostery_id": "2734", - "iab_vendor": null, - "id": "admo.tv", - "name": "Admo.TV", - "privacy_url": null, - "truste_type": null, - "website_url": "https://admo.tv/" - }, - "adnet.de": { - "category": "advertising", - "company_id": "adnet.de", - "description": null, - "domains": [ - "adnet.biz", - "adnet.de" - ], - "ghostery_id": "1413", - "iab_vendor": null, - "id": "adnet.de", - "name": "adNET.de", - "privacy_url": "http://www.adnet.de/index-6_datenschutz.html", - "truste_type": null, - "website_url": "http://www.adnet.de" - }, - "adnetworkperformance.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "adnetworkperformance.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "adnetworkperformance.com", - "name": "adnetworkperformance.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adnium.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adnium.com" - ], - "ghostery_id": "adnium.com", - "iab_vendor": null, - "id": "adnium.com", - "name": "Adnium", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adnium.com/" - }, - "adnologies": { - "category": "advertising", - "company_id": "adnologies_gmbh", - "description": null, - "domains": [ - "heias.com" - ], - "ghostery_id": "529", - "iab_vendor": null, - "id": "adnologies", - "name": "Adnologies", - "privacy_url": "http://ads.heias.de/w3c/policy.html", - "truste_type": null, - "website_url": "http://www.adnologies.com/" - }, - "adobe_audience_manager": { - "category": "advertising", - "company_id": "adobe", - "description": null, - "domains": [ - "adobe.com", - "demdex.net", - "everestjs.net", - "everesttech.net" - ], - "ghostery_id": "354", - "iab_vendor": null, - "id": "adobe_audience_manager", - "name": "Adobe Audience Manager", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "http://www.demdex.com/" - }, - "adobe_dynamic_tag_management": { - "category": "essential", - "company_id": "adobe", - "description": null, - "domains": [ - "adobedtm.com" - ], - "ghostery_id": "2307", - "iab_vendor": null, - "id": "adobe_dynamic_tag_management", - "name": "Adobe Dynamic Tag Management", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "https://dtm.adobe.com/sign_in" - }, - "adobe_login": { - "category": "customer_interaction", - "company_id": "adobe", - "description": null, - "domains": [ - "adobelogin.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adobe_login", - "name": "Adobe Login", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "https://www.adobe.com/" - }, - "adobe_tagmanager": { - "category": "advertising", - "company_id": "adobe", - "description": null, - "domains": [ - "adobetag.com" - ], - "ghostery_id": "1377", - "iab_vendor": null, - "id": "adobe_tagmanager", - "name": "Adobe TagManager", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "https://www.adobe.com/" - }, - "adocean": { - "category": "advertising", - "company_id": "adocean", - "description": null, - "domains": [ - "adocean.pl" - ], - "ghostery_id": "621", - "iab_vendor": null, - "id": "adocean", - "name": "AdOcean", - "privacy_url": "http://adocean.cz/en/privacy.html", - "truste_type": null, - "website_url": "http://adocean.cz/en" - }, - "adomik": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adomik.com" - ], - "ghostery_id": "c_m2", - "iab_vendor": null, - "id": "adomik", - "name": "Adomik", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adotmob.com": { - "category": "advertising", - "company_id": "adotmob", - "description": null, - "domains": [ - "adotmob.com" - ], - "ghostery_id": "", - "iab_vendor": 272, - "id": "adotmob.com", - "name": "Adotmob", - "privacy_url": "https://adotmob.com/privacy.html", - "truste_type": null, - "website_url": "https://adotmob.com/" - }, - "adpilot": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adpilot.at", - "erne.co" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adpilot", - "name": "AdPilot", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.adpilotgroup.com/" - }, - "adrecover": { - "category": "advertising", - "company_id": "adpushup", - "description": null, - "domains": [ - "adrecover.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adrecover", - "name": "AdRecover", - "privacy_url": "https://www.adpushup.com/privacy.php", - "truste_type": null, - "website_url": "https://www.adrecover.com/" - }, - "adriver": { - "category": "advertising", - "company_id": "ad_river", - "description": null, - "domains": [ - "adriver.ru" - ], - "ghostery_id": "209", - "iab_vendor": null, - "id": "adriver", - "name": "AdRiver", - "privacy_url": "http://www.adriver.ru/about/privacy-en/", - "truste_type": null, - "website_url": "http://www.adriver.ru/" - }, - "adroll": { - "category": "advertising", - "company_id": "adroll", - "description": null, - "domains": [ - "adroll.com" - ], - "ghostery_id": "c_412", - "iab_vendor": 130, - "id": "adroll", - "name": "AdRoll", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adroll.com/" - }, - "adrom": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adrom.net", - "txt.eu" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adrom", - "name": "adRom", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.adrom.net/" - }, - "adsbookie": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adsbookie.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adsbookie", - "name": "AdsBookie", - "privacy_url": null, - "truste_type": null, - "website_url": "http://adsbookie.com/" - }, - "adscale": { - "category": "advertising", - "company_id": "stroer", - "description": null, - "domains": [ - "adscale.de" - ], - "ghostery_id": "277", - "iab_vendor": null, - "id": "adscale", - "name": "AdScale", - "privacy_url": "https://www.stroeer.de/fileadmin/user_upload/Datenschutz.pdf", - "truste_type": null, - "website_url": "http://www.adscale.de/" - }, - "adsco.re": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adsco.re" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adsco.re", - "name": "Adscore", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adscore.com/" - }, - "adskeeper": { - "category": "advertising", - "company_id": "adskeeper", - "description": null, - "domains": [ - "adskeeper.co.uk" - ], - "ghostery_id": "2632", - "iab_vendor": null, - "id": "adskeeper", - "name": "AdsKeeper", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adsnative": { - "category": "advertising", - "company_id": "adsnative", - "description": null, - "domains": [ - "adsnative.com" - ], - "ghostery_id": "2059", - "iab_vendor": null, - "id": "adsnative", - "name": "adsnative", - "privacy_url": "http://adsnative.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.adsnative.com/" - }, - "adsniper.ru": { - "category": "advertising", - "company_id": null, - "description": "AdSniper is an automatic ad placement system, modifying costs in real-timeaccording to the changes in the campaign results. ", - "domains": [ - "adsniper.ru" - ], - "ghostery_id": "2003", - "iab_vendor": null, - "id": "adsniper.ru", - "name": "AdSniper", - "privacy_url": "http://ad-sniper.com/doc_pzi_en.html", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "http://ad-sniper.com/" - }, - "adspyglass": { - "category": "advertising", - "company_id": "adspyglass", - "description": null, - "domains": [ - "o333o.com" - ], - "ghostery_id": "2835", - "iab_vendor": null, - "id": "adspyglass", - "name": "AdSpyglass", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adstir": { - "category": "advertising", - "company_id": "united_inc", - "description": "Sell Side Platform for PC and SmartPhones ", - "domains": [ - "ad-stir.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adstir", - "name": "adstir", - "privacy_url": "https://en.ad-stir.com/privacy.html", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "https://en.ad-stir.com/" - }, - "adswizz": { - "category": "advertising", - "company_id": null, - "description": "AdsWizz is a global technology provider of advertising solutions for the digital radio and audio industries. ", - "domains": [ - "adswizz.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adswizz", - "name": "AdsWizz", - "privacy_url": "https://www.adswizz.com/our-privacy-policy/", - "truste_type": "Ad Exchange", - "website_url": "http://www.adswizz.com/" - }, - "adtech": { - "category": "site_analytics", - "company_id": "verizon", - "description": null, - "domains": [ - "adtech.de", - "adtechus.com" - ], - "ghostery_id": "355", - "iab_vendor": null, - "id": "adtech", - "name": "ADTECH", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.adtechus.com/" - }, - "adtelligence.de": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adtelligence.de" - ], - "ghostery_id": "adtelligence.de", - "iab_vendor": null, - "id": "adtelligence.de", - "name": "Adtelligence", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adtelligence.com/" - }, - "adtheorent": { - "category": "advertising", - "company_id": "adtheorant", - "description": null, - "domains": [ - "adentifi.com" - ], - "ghostery_id": null, - "iab_vendor": 211, - "id": "adtheorent", - "name": "Adtheorent", - "privacy_url": "http://adtheorent.com/privacy-policy", - "truste_type": null, - "website_url": "http://adtheorent.com/" - }, - "adthink": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adthink.com", - "audienceinsights.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adthink", - "name": "Adthink", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adthink.com/" - }, - "adtiger": { - "category": "advertising", - "company_id": "adtiger", - "description": "AdTiger is an established independent online marketer. Our broad portfolio includes more than 1,000 premium websites with about 5 billion monthly page impressions. Thus AdTiger is one of the largest German marketers. We offer our customers exclusive sites in addition to a number of theme channels and low-cost RON bookings for long range. Marketed to our website we offer fair condition models, especially a safe and predictable workload.", - "domains": [ - "adtiger.de" - ], - "ghostery_id": "276", - "iab_vendor": null, - "id": "adtiger", - "name": "AdTiger", - "privacy_url": "http://www.adtiger.de/diverse-seiten/datenschutz9/", - "truste_type": "Ad Network", - "website_url": "http://www.adtiger.de/" - }, - "adtng.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "adtng.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adtng.com", - "name": "adtng.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adtr02.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "adtr02.com" - ], - "ghostery_id": "adtr02.com", - "iab_vendor": null, - "id": "adtr02.com", - "name": "adtr02.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adtriba.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "adtriba.com" - ], - "ghostery_id": "adtriba.com", - "iab_vendor": null, - "id": "adtriba.com", - "name": "AdTriba", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adtriba.com/" - }, - "adtrue": { - "category": "advertising", - "company_id": "adtrue", - "description": null, - "domains": [ - "adtrue.com" - ], - "ghostery_id": "2730", - "iab_vendor": null, - "id": "adtrue", - "name": "Adtrue", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adult_webmaster_empire": { - "category": "pornvertising", - "company_id": "adult_webmaster_empire", - "description": null, - "domains": [ - "awempire.com", - "dditscdn.com", - "livejasmin.com" - ], - "ghostery_id": "986", - "iab_vendor": null, - "id": "adult_webmaster_empire", - "name": "Adult Webmaster Empire", - "privacy_url": "http://www.awempire.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.awempire.com/" - }, - "adup-tech.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adup-tech.com" - ], - "ghostery_id": "adup-tech.com", - "iab_vendor": null, - "id": "adup-tech.com", - "name": "AdUp Technology", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.adup-tech.com/" - }, - "advanced_hosters": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "ahcdn.com", - "pix-cdn.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "advanced_hosters", - "name": "Advanced Hosters", - "privacy_url": null, - "truste_type": null, - "website_url": "https://advancedhosters.com/" - }, - "adventori": { - "category": "misc", - "company_id": "adventori", - "description": null, - "domains": [ - "adventori.com" - ], - "ghostery_id": "c_3265", - "iab_vendor": 27, - "id": "adventori", - "name": "ADventori", - "privacy_url": "https://www.adventori.com/with-us/legal-notice/", - "truste_type": null, - "website_url": null - }, - "adverserve": { - "category": "advertising", - "company_id": "adverserve", - "description": "As one of the leading service company in the online marketing industry, we are the partner for everything related to the execution of advertising campaigns on the Internet. We focus all activities on providing our customers with the most functional and safest ad serving technology and highly qualified traffic manager.", - "domains": [ - "adverserve.net" - ], - "ghostery_id": "1683", - "iab_vendor": null, - "id": "adverserve", - "name": "adverServe", - "privacy_url": "http://www.adverserve.com/fileadmin/adverserve/dokumente_download/datenschutzerklaerung_adverserve_29.8_RV_englisch.pdf", - "truste_type": "Ad Network", - "website_url": "http://www.adverserve.com/" - }, - "adverticum": { - "category": "advertising", - "company_id": "adverticum", - "description": null, - "domains": [ - "adverticum.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adverticum", - "name": "Adverticum", - "privacy_url": null, - "truste_type": null, - "website_url": "https://adverticum.net/english/" - }, - "advertising.com": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "adsdk.com", - "advertising.com", - "aol.com", - "atwola.com", - "pictela.net" - ], - "ghostery_id": "88", - "iab_vendor": null, - "id": "advertising.com", - "name": "Advertising.com", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "" - }, - "advertserve": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "advertserve.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "advertserve", - "name": "AdvertServe", - "privacy_url": null, - "truste_type": null, - "website_url": "https://secure.advertserve.com/" - }, - "advolution": { - "category": "advertising", - "company_id": "advolution", - "description": null, - "domains": [ - "advolution.de" - ], - "ghostery_id": "1929", - "iab_vendor": null, - "id": "advolution", - "name": "Advolution", - "privacy_url": "http://www.advolution.de/datenschutz.php", - "truste_type": null, - "website_url": "http://www.advolution.de" - }, - "adwebster": { - "category": "advertising", - "company_id": "adwebster", - "description": "Adwebster is a technology company which specializes in the operation and maintenance of digital advertising networks.", - "domains": [ - "adwebster.com" - ], - "ghostery_id": "2071", - "iab_vendor": null, - "id": "adwebster", - "name": "adwebster", - "privacy_url": "http://adwebster.com/Pages/about/Data-Protection-Policy.aspx", - "truste_type": "Ad Network", - "website_url": "http://adwebster.com" - }, - "adworx.at": { - "category": "advertising", - "company_id": null, - "description": "adworx offers a modern ad serving technology and an experienced team Adoperating all services for the professional handling and delivery of online advertising. ", - "domains": [ - "adworx.at" - ], - "ghostery_id": "adworx.at", - "iab_vendor": null, - "id": "adworx.at", - "name": "adworx", - "privacy_url": "http://www.adworx.at/", - "truste_type": "Ad Server", - "website_url": "http://www.adworx.at/" - }, - "adworxs.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adworxs.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adworxs.net", - "name": "adworxs.net", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.adworxs.net/?lang=en" - }, - "adxpansion": { - "category": "pornvertising", - "company_id": "adxpansion", - "description": null, - "domains": [ - "adxpansion.com" - ], - "ghostery_id": "481", - "iab_vendor": null, - "id": "adxpansion", - "name": "AdXpansion", - "privacy_url": "http://www.adxpansion.com/en/index/privacy", - "truste_type": null, - "website_url": "http://www.adxpansion.com/" - }, - "adxprtz.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adxprtz.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "adxprtz.com", - "name": "adxprtz.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "adyoulike": { - "category": "advertising", - "company_id": "adyoulike", - "description": null, - "domains": [ - "adyoulike.com", - "omnitagjs.com" - ], - "ghostery_id": "1596", - "iab_vendor": 259, - "id": "adyoulike", - "name": "Adyoulike", - "privacy_url": "https://www.adyoulike.com/privacy_policy.php", - "truste_type": null, - "website_url": "http://www.adyoulike.com/" - }, - "adzerk": { - "category": "advertising", - "company_id": "adzerk", - "description": "Adzerk provides a suite of APIs for building your own ad server in weeks, not years ", - "domains": [ - "adzerk.net" - ], - "ghostery_id": "1066", - "iab_vendor": null, - "id": "adzerk", - "name": "Adzerk", - "privacy_url": " http://adzerk.com/privacy/ad-server/", - "truste_type": "Ad Server", - "website_url": "http://adzerk.com/" - }, - "aemediatraffic": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "aemediatraffic.com", - "hprofits.com" - ], - "ghostery_id": "aemediatraffic.com", - "iab_vendor": null, - "id": "aemediatraffic", - "name": "Aemediatraffic", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "affec.tv": { - "category": "advertising", - "company_id": "affectv", - "description": null, - "domains": [ - "affectv.com" - ], - "ghostery_id": "1468", - "iab_vendor": 178, - "id": "affec.tv", - "name": "Affec.tv", - "privacy_url": "https://affectv.com/privacy-policy", - "truste_type": null, - "website_url": "https://affectv.com/" - }, - "affilinet": { - "category": "advertising", - "company_id": "axel_springer", - "description": "Affiliate is a German agency that offers solutions for results-oriented online marketing products and services for most of Europe.", - "domains": [ - "banner-rotation.com", - "webmasterplan.com" - ], - "ghostery_id": "2330", - "iab_vendor": 3, - "id": "affilinet", - "name": "affilinet", - "privacy_url": "https://www.affili.net/de/footeritem/datenschutz", - "truste_type": "Ad Network", - "website_url": "https://www.affili.net/" - }, - "affimax": { - "category": "advertising", - "company_id": "affimax", - "description": null, - "domains": [ - "affimax.de" - ], - "ghostery_id": "1197", - "iab_vendor": null, - "id": "affimax", - "name": "AffiMax", - "privacy_url": "https://www.affimax.de/l/3-Datenschutz.html", - "truste_type": null, - "website_url": "https://www.affimax.de" - }, - "afgr2.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "afgr2.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "afgr2.com", - "name": "afgr2.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "aftv-serving.bid": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "aftv-serving.bid" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "aftv-serving.bid", - "name": "aftv-serving.bid", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "aggregate_knowledge": { - "category": "advertising", - "company_id": "neustar", - "description": null, - "domains": [ - "agkn.com" - ], - "ghostery_id": "400", - "iab_vendor": null, - "id": "aggregate_knowledge", - "name": "Aggregate Knowledge", - "privacy_url": "https://www.neustar.biz/privacy/privacy_policy", - "truste_type": null, - "website_url": "http://www.aggregateknowledge.com/" - }, - "aidata.io": { - "category": "advertising", - "company_id": null, - "description": "We are smart data company that reduces information clutter for consumer, providing smarter audience buying decisions for agencies, DSP/ATD/SSP platforms, publishers. ", - "domains": [ - "aidata.io" - ], - "ghostery_id": "1863", - "iab_vendor": null, - "id": "aidata.io", - "name": "AiData", - "privacy_url": "https://my.aidata.me/data/uploads/aidata.me-privacy-policy.pdf", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://www.aidata.me/" - }, - "airbnb": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "muscache.com", - "musthird.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "airbnb", - "name": "Airbnb", - "privacy_url": null, - "truste_type": null, - "website_url": "https://affiliate.withairbnb.com/" - }, - "airpr.com": { - "category": "site_analytics", - "company_id": "airpr", - "description": "AirPR is a PRTech company that provides analytics, insights, and measurement solutions for the evolving PR industry. ", - "domains": [ - "airpr.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "airpr.com", - "name": "AirPR", - "privacy_url": "https://airpr.com/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://airpr.com/" - }, - "akamai_technologies": { - "category": "cdn", - "company_id": "akamai", - "description": null, - "domains": [ - "abmr.net", - "akamai.net", - "akamaihd.net", - "akamaized.net", - "akstat.io", - "edgekey.net", - "edgesuite.net" - ], - "ghostery_id": "c_11", - "iab_vendor": null, - "id": "akamai_technologies", - "name": "Akamai Technologies", - "privacy_url": "https://www.akamai.com/us/en/privacy-policies/", - "truste_type": null, - "website_url": "https://www.akamai.com/" - }, - "akamoihd.net": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "akamoihd.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "akamoihd.net", - "name": "akamoihd.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "akanoo": { - "category": "site_analytics", - "company_id": "akanoo", - "description": null, - "domains": [ - "akanoo.com" - ], - "ghostery_id": "2150", - "iab_vendor": null, - "id": "akanoo", - "name": "Akanoo", - "privacy_url": "http://www.akanoo.com/legal", - "truste_type": null, - "website_url": "http://www.akanoo.com/" - }, - "aldi-international.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "aldi-international.com" - ], - "ghostery_id": "aldi-international.com", - "iab_vendor": null, - "id": "aldi-international.com", - "name": "aldi-international.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "alephd.com": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "alephd.com" - ], - "ghostery_id": "alephd.com", - "iab_vendor": null, - "id": "alephd.com", - "name": "alephd", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "https://www.alephd.com/" - }, - "alexa_metrics": { - "category": "site_analytics", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "alexametrics.com", - "d31qbv1cthcecs.cloudfront.net", - "d5nxst8fruw4z.cloudfront.net" - ], - "ghostery_id": "212", - "iab_vendor": null, - "id": "alexa_metrics", - "name": "Alexa Metrics", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "http://www.alexa.com/" - }, - "algolia.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "algolia.com", - "algolia.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "algolia.net", - "name": "algolia", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.algolia.com/" - }, - "algovid.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "algovid.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "algovid.com", - "name": "algovid.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "alibaba.com": { - "category": "misc", - "company_id": "alibaba", - "description": null, - "domains": [ - "alibaba.com", - "alicdn.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "alibaba.com", - "name": "Alibaba", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "alipay.com": { - "category": "customer_interaction", - "company_id": "alibaba", - "description": null, - "domains": [ - "alipay.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "alipay.com", - "name": "Alipay", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.alipay.com/" - }, - "allegro.pl": { - "category": "misc", - "company_id": "allegro.pl", - "description": null, - "domains": [ - "allegroimg.com", - "allegrostatic.com", - "allegrostatic.pl", - "ngacm.com", - "ngastatic.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "allegro.pl", - "name": "Allegro", - "privacy_url": "https://allegro.pl/regulamin/pl#artykul-13.-prywatnosc-i-poufnosc", - "truste_type": null, - "website_url": "https://allegro.pl" - }, - "allo-pages.fr": { - "category": "customer_interaction", - "company_id": "links_lab", - "description": null, - "domains": [ - "allo-pages.fr" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "allo-pages.fr", - "name": "Allo-Pages", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.allo-pages.fr/" - }, - "amazon": { - "category": "misc", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "amazon.ca", - "amazon.co.jp", - "amazon.co.uk", - "amazon.com", - "amazon.de", - "amazon.es", - "amazon.fr", - "amazon.it", - "d3io1k5o0zdpqr.cloudfront.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amazon", - "name": "Amazon.com", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.amazon.com" - }, - "amazon_adsystem": { - "category": "advertising", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "amazon-adsystem.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amazon_adsystem", - "name": "Amazon Adsystem", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://advertising.amazon.com/" - }, - "amazon_associates": { - "category": "advertising", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "assoc-amazon.ca", - "assoc-amazon.co.uk", - "assoc-amazon.com", - "assoc-amazon.de", - "assoc-amazon.fr", - "assoc-amazon.jp" - ], - "ghostery_id": "33", - "iab_vendor": null, - "id": "amazon_associates", - "name": "Amazon Associates", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "http://aws.amazon.com/associates/" - }, - "amazon_cdn": { - "category": "cdn", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "images-amazon.com", - "media-amazon.com", - "ssl-images-amazon.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amazon_cdn", - "name": "Amazon CDN", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.amazon.com" - }, - "amazon_cloudfront": { - "category": "hosting", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "cloudfront.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amazon_cloudfront", - "name": "Amazon CloudFront", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://aws.amazon.com/cloudfront/?nc1=h_ls" - }, - "amazon_payments": { - "category": "customer_interaction", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "amazonpay.com", - "payments-amazon.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amazon_payments", - "name": "Amazon Payments", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://pay.amazon.com/" - }, - "amazon_video": { - "category": "audio_video_player", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "aiv-cdn.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amazon_video", - "name": "Amazon Instant Video", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.amazon.com" - }, - "amazon_web_services": { - "category": "hosting", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "amazonaws.com", - "amazonwebservices.com", - "awsstatic.com" - ], - "ghostery_id": "c_480", - "iab_vendor": null, - "id": "amazon_web_services", - "name": "Amazon Web Services", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://aws.amazon.com/" - }, - "amgload.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "amgload.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amgload.net", - "name": "amgload.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "amobee": { - "category": "advertising", - "company_id": "singtel", - "description": null, - "domains": [ - "ad.amgdgt.com", - "ads.amgdgt.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "amobee", - "name": "Amobee", - "privacy_url": "https://www.singtel.com/data-protection", - "truste_type": null, - "website_url": "https://www.amobee.com/" - }, - "amplitude": { - "category": "site_analytics", - "company_id": "amplitude", - "description": null, - "domains": [ - "amplitude.com", - "d24n15hnbwhuhn.cloudfront.net" - ], - "ghostery_id": "2175", - "iab_vendor": null, - "id": "amplitude", - "name": "Amplitude", - "privacy_url": "https://amplitude.com/privacy", - "truste_type": null, - "website_url": "https://amplitude.com/" - }, - "ampproject.org": { - "category": "misc", - "company_id": "google", - "description": null, - "domains": [ - "ampproject.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ampproject.org", - "name": "AMP Project", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://www.ampproject.org/" - }, - "ancestry_cdn": { - "category": "cdn", - "company_id": "ancestry", - "description": null, - "domains": [ - "ancestrycdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ancestry_cdn", - "name": "Ancestry CDN", - "privacy_url": "http://www.ancestry.com/cs/privacyphilosophy", - "truste_type": null, - "website_url": "https://www.ancestry.com/" - }, - "ancora": { - "category": "site_analytics", - "company_id": "ancora", - "description": null, - "domains": [ - "ancoraplatform.com" - ], - "ghostery_id": "2660", - "iab_vendor": null, - "id": "ancora", - "name": "Ancora", - "privacy_url": "http://www.ancoramediasolutions.com/j/privacy", - "truste_type": null, - "website_url": null - }, - "aniview.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "aniview.com" - ], - "ghostery_id": "aniview.com", - "iab_vendor": null, - "id": "aniview.com", - "name": "AniView", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.aniview.com/" - }, - "answers_cloud_service": { - "category": "comments", - "company_id": "answers.com", - "description": null, - "domains": [ - "answerscloud.com" - ], - "ghostery_id": "2302", - "iab_vendor": null, - "id": "answers_cloud_service", - "name": "Answers Cloud Service", - "privacy_url": "http://wiki.answers.com/about/legal_notices.html#privacy", - "truste_type": null, - "website_url": null - }, - "aol_cdn": { - "category": "site_analytics", - "company_id": "verizon", - "description": null, - "domains": [ - "aolcdn.com" - ], - "ghostery_id": "2325", - "iab_vendor": null, - "id": "aol_cdn", - "name": "AOL CDN", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": null - }, - "apa.at": { - "category": "misc", - "company_id": "apa", - "description": null, - "domains": [ - "apa.at" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "apa.at", - "name": "Apa", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.apa.at/Site/index.de.html" - }, - "apester": { - "category": "advertising", - "company_id": "apester", - "description": null, - "domains": [ - "apester.com" - ], - "ghostery_id": "2930", - "iab_vendor": 354, - "id": "apester", - "name": "Apester", - "privacy_url": "https://apester.com/privacy-policy/", - "truste_type": null, - "website_url": "http://apester.com/" - }, - "apicit.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "apicit.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "apicit.net", - "name": "apicit.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "appcues": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "appcues.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "appcues", - "name": "Appcues", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.appcues.com/" - }, - "appdynamics": { - "category": "site_analytics", - "company_id": "appdynamics", - "description": null, - "domains": [ - "appdynamics.com", - "de8of677fyt0b.cloudfront.net", - "eum-appdynamics.com" - ], - "ghostery_id": "1740", - "iab_vendor": null, - "id": "appdynamics", - "name": "AppDynamics", - "privacy_url": "http://www.appdynamics.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.appdynamics.com" - }, - "apple": { - "category": "advertising", - "company_id": "apple", - "description": null, - "domains": [ - "apple.com" - ], - "ghostery_id": "2027", - "iab_vendor": null, - "id": "apple", - "name": "Apple", - "privacy_url": "http://www.apple.com/privacy/privacy-policy/", - "truste_type": null, - "website_url": "http://www.apple.com/" - }, - "appnexus": { - "category": "advertising", - "company_id": "appnexus", - "description": null, - "domains": [ - "adnxs.com", - "adnxs.net" - ], - "ghostery_id": "170", - "iab_vendor": 32, - "id": "appnexus", - "name": "AppNexus", - "privacy_url": "https://www.appnexus.com/en/company/platform-privacy-policy", - "truste_type": null, - "website_url": "http://www.appnexus.com/" - }, - "appsflyer": { - "category": "site_analytics", - "company_id": "appsflyer", - "description": null, - "domains": [ - "appsflyer.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "appsflyer", - "name": "AppsFlyer", - "privacy_url": "https://www.appsflyer.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.appsflyer.com/" - }, - "arcpublishing": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "arcpublishing.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "arcpublishing", - "name": "Arc Publishing", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.arcpublishing.com/" - }, - "ard.de": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "ard.de" - ], - "ghostery_id": "ard.de", - "iab_vendor": null, - "id": "ard.de", - "name": "ard.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "are_you_a_human": { - "category": "site_analytics", - "company_id": "distil_networks", - "description": null, - "domains": [ - "areyouahuman.com" - ], - "ghostery_id": "c_2738", - "iab_vendor": null, - "id": "are_you_a_human", - "name": "Are You a Human", - "privacy_url": null, - "truste_type": null, - "website_url": "https://areyouahuman.com/" - }, - "art19": { - "category": "advertising", - "company_id": "art19", - "description": null, - "domains": [ - "art19.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "art19", - "name": "Art19", - "privacy_url": "https://art19.com/privacy", - "truste_type": null, - "website_url": "https://art19.com/" - }, - "artlebedev.ru": { - "category": "misc", - "company_id": "art.lebedev_studio", - "description": null, - "domains": [ - "artlebedev.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "artlebedev.ru", - "name": "Art.Lebedev", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.artlebedev.ru/" - }, - "asambeauty.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "asambeauty.com" - ], - "ghostery_id": "asambeauty.com", - "iab_vendor": null, - "id": "asambeauty.com", - "name": "asambeauty.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.asambeauty.com/" - }, - "ask.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "ask.com" - ], - "ghostery_id": "c_679", - "iab_vendor": null, - "id": "ask.com", - "name": "Ask.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "aspnetcdn": { - "category": "cdn", - "company_id": "microsoft", - "description": null, - "domains": [ - "aspnetcdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "aspnetcdn", - "name": "Microsoft Ajax CDN", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "at_internet": { - "category": "site_analytics", - "company_id": "at_internet", - "description": null, - "domains": [ - "ati-host.net", - "aticdn.net", - "xiti.com" - ], - "ghostery_id": "50", - "iab_vendor": null, - "id": "at_internet", - "name": "AT Internet", - "privacy_url": "http://www.atinternet.com/en/company/data-protection/data-collection-on-at-internets-sites/", - "truste_type": null, - "website_url": "http://www.xiti.com/" - }, - "atg_group": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "oadts.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "atg_group", - "name": "ATG Ad Tech Group", - "privacy_url": null, - "truste_type": null, - "website_url": "https://ad-tech-group.com/" - }, - "atlas": { - "category": "advertising", - "company_id": "facebook", - "description": null, - "domains": [ - "adbureau.net", - "atdmt.com", - "atlassbx.com" - ], - "ghostery_id": "185", - "iab_vendor": null, - "id": "atlas", - "name": "Atlas", - "privacy_url": "https://www.facebook.com/full_data_use_policy", - "truste_type": null, - "website_url": "https://atlassolutions.com" - }, - "atlassian.net": { - "category": "customer_interaction", - "company_id": "atlassian", - "description": null, - "domains": [ - "atl-paas.net", - "atlassian.com", - "atlassian.net", - "d12ramskps3070.cloudfront.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "atlassian.net", - "name": "Atlassian", - "privacy_url": "https://www.atlassian.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.atlassian.com/" - }, - "atlassian_marketplace": { - "category": "cdn", - "company_id": "atlassian", - "description": null, - "domains": [ - "d1xfq2052q7thw.cloudfront.net", - "marketplace.atlassian.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "atlassian_marketplace", - "name": "Atlassian Marketplace", - "privacy_url": "https://www.atlassian.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://marketplace.atlassian.com/" - }, - "atsfi_de": { - "category": "unknown", - "company_id": "axel_springer", - "description": null, - "domains": [ - "atsfi.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "atsfi_de", - "name": "atsfi.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "audience_science": { - "category": "advertising", - "company_id": "audiencescience", - "description": null, - "domains": [ - "revsci.net", - "targetingmarketplace.com", - "wunderloop.net" - ], - "ghostery_id": "56", - "iab_vendor": null, - "id": "audience_science", - "name": "Audience Science", - "privacy_url": "http://www.audiencescience.com/privacy/", - "truste_type": null, - "website_url": "http://www.audiencescience.com/" - }, - "audiencesquare.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "audiencesquare.com" - ], - "ghostery_id": "3056", - "iab_vendor": null, - "id": "audiencesquare.com", - "name": "Audience Square", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.audiencesquare.fr/" - }, - "audtd.com": { - "category": "advertising", - "company_id": null, - "description": "Auditorius is the most recognizable brand of programmatic services in Russia. ", - "domains": [ - "audtd.com" - ], - "ghostery_id": "2113", - "iab_vendor": null, - "id": "audtd.com", - "name": "Auditorius", - "privacy_url": "http://rtb.auditorius.ru/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "http://www.auditorius.ru/" - }, - "ausgezeichnet_org": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "ausgezeichnet.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ausgezeichnet_org", - "name": "ausgezeichnet.org", - "privacy_url": null, - "truste_type": null, - "website_url": "http://ausgezeichnet.org/" - }, - "auth0": { - "category": "site_analytics", - "company_id": "auth0", - "description": null, - "domains": [ - "auth0.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "auth0", - "name": "Auth0 Inc.", - "privacy_url": "https://auth0.com/privacy", - "truste_type": null, - "website_url": "https://auth0.com/" - }, - "autopilothq": { - "category": "advertising", - "company_id": "autopilothq", - "description": null, - "domains": [ - "api.autopilothq.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "autopilothq", - "name": "AutopilotHQ", - "privacy_url": "https://www.autopilothq.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.autopilothq.com/" - }, - "autoscout24.com": { - "category": "misc", - "company_id": "scout24", - "description": null, - "domains": [ - "autoscout24.com", - "autoscout24.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "autoscout24.com", - "name": "Autoscout24", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "avail": { - "category": "advertising", - "company_id": "avail", - "description": null, - "domains": [ - "avail.net" - ], - "ghostery_id": "1559", - "iab_vendor": null, - "id": "avail", - "name": "Avail", - "privacy_url": "http://www.parkingcrew.net/privacy.html", - "truste_type": null, - "website_url": "http://avail.com" - }, - "avocet": { - "category": "misc", - "company_id": "avocet", - "description": null, - "domains": [ - "avocet.io" - ], - "ghostery_id": "c_3588", - "iab_vendor": 63, - "id": "avocet", - "name": "Avocet", - "privacy_url": "http://www.avocet.io/privacy-policy", - "truste_type": null, - "website_url": null - }, - "awin1.com": { - "category": "advertising", - "company_id": "awin", - "description": null, - "domains": [ - "awin.com" - ], - "ghostery_id": "1548", - "iab_vendor": null, - "id": "awin1.com", - "name": "Awin1", - "privacy_url": "https://www.awin.com/de/rechtliches/privacy-policy", - "truste_type": null, - "website_url": "https://www.awin.com" - }, - "azureedge.net": { - "category": "cdn", - "company_id": "microsoft", - "description": null, - "domains": [ - "azureedge.net" - ], - "ghostery_id": "azureedge.net", - "iab_vendor": null, - "id": "azureedge.net", - "name": "Azure CDN", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "babator.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "babator.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "babator.com", - "name": "Babator", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.babator.com/" - }, - "bahn_de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "bahn.de", - "img-bahn.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bahn_de", - "name": "Deutsche Bahn", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "baidu_ads": { - "category": "advertising", - "company_id": "baidu", - "description": null, - "domains": [ - "baidu.com", - "baidustatic.com" - ], - "ghostery_id": "1572", - "iab_vendor": null, - "id": "baidu_ads", - "name": "Baidu Ads", - "privacy_url": "http://ir.baidu.com/phoenix.zhtml?c=188488&p=privacy", - "truste_type": null, - "website_url": "http://www.baidu.com/" - }, - "baidu_static": { - "category": "misc", - "company_id": "baidu", - "description": null, - "domains": [ - "bdimg.com", - "bdstatic.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "baidu_static", - "name": "Baidu Static", - "privacy_url": "http://ir.baidu.com/phoenix.zhtml?c=188488&p=privacy", - "truste_type": null, - "website_url": "https://www.baidu.com/" - }, - "baletingo.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "baletingo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "baletingo.com", - "name": "baletingo.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bangdom.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "bangdom.com" - ], - "ghostery_id": "bangdom.com", - "iab_vendor": null, - "id": "bangdom.com", - "name": "BangBros", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bannerflow.com": { - "category": "advertising", - "company_id": "bannerflow", - "description": null, - "domains": [ - "bannerflow.com" - ], - "ghostery_id": null, - "iab_vendor": 273, - "id": "bannerflow.com", - "name": "Bannerflow", - "privacy_url": "https://www.bannerflow.com/privacy", - "truste_type": null, - "website_url": "https://www.bannerflow.com/" - }, - "basilic.io": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "basilic.io" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "basilic.io", - "name": "basilic.io", - "privacy_url": null, - "truste_type": null, - "website_url": "https://basilic.io/" - }, - "batch_media": { - "category": "advertising", - "company_id": "prosieben_sat1", - "description": null, - "domains": [ - "t4ft.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "batch_media", - "name": "Batch Media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://batch.ba/" - }, - "bauer_media": { - "category": "advertising", - "company_id": "bauer_media", - "description": null, - "domains": [ - "bauernative.com" - ], - "ghostery_id": "2911", - "iab_vendor": null, - "id": "bauer_media", - "name": "Bauer Media", - "privacy_url": "https://www.bauermedia.com/datenschutz/", - "truste_type": null, - "website_url": null - }, - "baur.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "baur.de" - ], - "ghostery_id": "baur.de", - "iab_vendor": null, - "id": "baur.de", - "name": "baur.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "baynote_observer": { - "category": "advertising", - "company_id": "baynote", - "description": null, - "domains": [ - "baynote.net" - ], - "ghostery_id": "98", - "iab_vendor": null, - "id": "baynote_observer", - "name": "Baynote Observer", - "privacy_url": "http://www.baynote.com/baynote-services-privacy-policy/", - "truste_type": null, - "website_url": "http://www.baynote.com/" - }, - "bazaarvoice": { - "category": "customer_interaction", - "company_id": "bazaarvoice", - "description": null, - "domains": [ - "bazaarvoice.com" - ], - "ghostery_id": "974", - "iab_vendor": null, - "id": "bazaarvoice", - "name": "Bazaarvoice", - "privacy_url": "http://www.bazaarvoice.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.bazaarvoice.com/" - }, - "bbci": { - "category": "hosting", - "company_id": null, - "description": null, - "domains": [ - "bbci.co.uk" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bbci", - "name": "BBC", - "privacy_url": null, - "truste_type": null, - "website_url": "https://bbc.co.uk" - }, - "beachfront": { - "category": "advertising", - "company_id": null, - "description": "Beachfront Media is a video technology company enabling distribution and monetization of video across all screens. ", - "domains": [ - "bfmio.com" - ], - "ghostery_id": null, - "iab_vendor": 335, - "id": "beachfront", - "name": "Beachfront Media", - "privacy_url": "http://beachfront.com/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://beachfrontmedia.com/" - }, - "beampulse.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "beampulse.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "beampulse.com", - "name": "BeamPulse", - "privacy_url": null, - "truste_type": null, - "website_url": "https://en.beampulse.com/" - }, - "bebi": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "bebi.com" - ], - "ghostery_id": "2244", - "iab_vendor": null, - "id": "bebi", - "name": "Bebi Media", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bebi.com/" - }, - "beeketing.com": { - "category": "site_analytics", - "company_id": "beeketing", - "description": null, - "domains": [ - "beeketing.com" - ], - "ghostery_id": "2395", - "iab_vendor": null, - "id": "beeketing.com", - "name": "Beeketing", - "privacy_url": "https://beeketing.com/privacy-policy", - "truste_type": null, - "website_url": "https://beeketing.com/" - }, - "beeline.ru": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "beeline.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "beeline.ru", - "name": "Beeline", - "privacy_url": null, - "truste_type": null, - "website_url": "https://moskva.beeline.ru/" - }, - "beeswax": { - "category": "customer_interaction", - "company_id": "beeswax", - "description": null, - "domains": [ - "bidr.io" - ], - "ghostery_id": "2394", - "iab_vendor": 12, - "id": "beeswax", - "name": "Beeswax", - "privacy_url": "https://www.beeswax.com/privacy.html", - "truste_type": null, - "website_url": null - }, - "belboon_gmbh": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "belboon.de" - ], - "ghostery_id": "c_2583", - "iab_vendor": null, - "id": "belboon_gmbh", - "name": "belboon GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bemobile.ua": { - "category": "hosting", - "company_id": "bemobile", - "description": null, - "domains": [ - "bemobile.ua" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bemobile.ua", - "name": "Bemobile", - "privacy_url": null, - "truste_type": null, - "website_url": "http://bemobile.ua/en/" - }, - "betterttv": { - "category": "social_media", - "company_id": "nightdev", - "description": null, - "domains": [ - "betterttv.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "betterttv", - "name": "BetterTTV", - "privacy_url": null, - "truste_type": null, - "website_url": "https://nightdev.com/betterttv/" - }, - "betweendigital.com": { - "category": "site_analytics", - "company_id": "between_digital", - "description": "Between Digital - is Russia's first yield management system, which allows sites to effectively sell online advertising to technology RTB (real-time-bidding). ", - "domains": [ - "betweendigital.com" - ], - "ghostery_id": "1488", - "iab_vendor": null, - "id": "betweendigital.com", - "name": "Between Digital", - "privacy_url": "http://betweendigital.ru/privacy-policy", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "http://betweendigital.ru/ssp" - }, - "bid.run": { - "category": "site_analytics", - "company_id": "bid.run", - "description": null, - "domains": [ - "bid.run" - ], - "ghostery_id": "3024", - "iab_vendor": null, - "id": "bid.run", - "name": "Bid.Run", - "privacy_url": null, - "truste_type": null, - "website_url": "http://bid.run/" - }, - "bidswitch": { - "category": "advertising", - "company_id": "bidswitch", - "description": null, - "domains": [ - "bidswitch.net", - "exe.bid" - ], - "ghostery_id": "2749", - "iab_vendor": 128, - "id": "bidswitch", - "name": "Bidswitch", - "privacy_url": "http://www.bidswitch.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "bidtellect": { - "category": "advertising", - "company_id": "bidtellect", - "description": null, - "domains": [ - "bttrack.com" - ], - "ghostery_id": "2994", - "iab_vendor": 185, - "id": "bidtellect", - "name": "Bidtellect", - "privacy_url": "https://www.bidtellect.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.bidtellect.com/" - }, - "bidtheatre": { - "category": "advertising", - "company_id": "bidtheatre", - "description": null, - "domains": [ - "bidtheatre.com" - ], - "ghostery_id": "2102", - "iab_vendor": 30, - "id": "bidtheatre", - "name": "BidTheatre", - "privacy_url": "https://www.bidtheatre.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.bidtheatre.com/" - }, - "bigcommerce.com": { - "category": "site_analytics", - "company_id": "bigcommerce", - "description": null, - "domains": [ - "bigcommerce.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bigcommerce.com", - "name": "BigCommerce", - "privacy_url": "https://www.bigcommerce.com/privacy/", - "truste_type": null, - "website_url": "https://www.bigcommerce.com/" - }, - "bigmir.net": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "bigmir.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bigmir.net", - "name": "bigmir.net", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bigmir.net/" - }, - "bigpoint": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "bigpoint-payment.com", - "bigpoint.com", - "bigpoint.net", - "bpcdn.net", - "bpsecure.com" - ], - "ghostery_id": "c_1959", - "iab_vendor": null, - "id": "bigpoint", - "name": "Bigpoint", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bild": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "bildstatic.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bild", - "name": "Bild.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bing_ads": { - "category": "advertising", - "company_id": "microsoft", - "description": null, - "domains": [ - "bing.com", - "bing.net" - ], - "ghostery_id": "67", - "iab_vendor": null, - "id": "bing_ads", - "name": "Bing Ads", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": "https://bingads.microsoft.com/" - }, - "bing_maps": { - "category": "customer_interaction", - "company_id": "microsoft", - "description": null, - "domains": [ - "virtualearth.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bing_maps", - "name": "Bing Maps", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "bitly": { - "category": "site_analytics", - "company_id": null, - "description": "Bitly is a link management platform that helps brands deliver and measure their marketing efforts across all channels.", - "domains": [ - "bit.ly" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bitly", - "name": "Bitly", - "privacy_url": "https://bitly.com/pages/privacy", - "truste_type": "Service Provider", - "website_url": "https://bitly.com/" - }, - "bitrix": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "bitrix.info", - "bitrix.ru" - ], - "ghostery_id": "2522", - "iab_vendor": null, - "id": "bitrix", - "name": "Bitrix24", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bitrix24.com/" - }, - "blau.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "blau.de" - ], - "ghostery_id": "blau.de", - "iab_vendor": null, - "id": "blau.de", - "name": "Blau", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.blau.de/" - }, - "blink_new_media": { - "category": "advertising", - "company_id": "engage:bdr__blink_new_media_", - "description": null, - "domains": [ - "bnmla.com" - ], - "ghostery_id": "729", - "iab_vendor": null, - "id": "blink_new_media", - "name": "Blink New Media", - "privacy_url": "http://engagebdr.com/privacy-policy/", - "truste_type": null, - "website_url": "http://engagebdr.com/" - }, - "blis": { - "category": "site_analytics", - "company_id": "blis", - "description": null, - "domains": [ - "blismedia.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "blis", - "name": "Blis", - "privacy_url": "http://www.blis.com/privacy/", - "truste_type": null, - "website_url": "http://www.blis.com/index.php" - }, - "blogfoster.com": { - "category": "misc", - "company_id": "blogfoster", - "description": null, - "domains": [ - "blogfoster.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "blogfoster.com", - "name": "Blogfoster", - "privacy_url": "http://www.blogfoster.com/datenschutz/", - "truste_type": null, - "website_url": "http://www.blogfoster.com/" - }, - "blogher": { - "category": "advertising", - "company_id": "penske_media_corp", - "description": null, - "domains": [ - "blogher.com", - "blogherads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "blogher", - "name": "BlogHer", - "privacy_url": "https://pmc.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.blogher.com/" - }, - "blogimg.jp": { - "category": "cdn", - "company_id": "line", - "description": null, - "domains": [ - "blogimg.jp" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "blogimg.jp", - "name": "blogimg.jp", - "privacy_url": "https://terms.line.me/line_rules/?lang=en-US", - "truste_type": null, - "website_url": null - }, - "blogsmithmedia.com": { - "category": "misc", - "company_id": "verizon", - "description": null, - "domains": [ - "blogsmithmedia.com" - ], - "ghostery_id": "blogsmithmedia.com", - "iab_vendor": null, - "id": "blogsmithmedia.com", - "name": "blogsmithmedia.com", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": null - }, - "blogspot_com": { - "category": "misc", - "company_id": "google", - "description": null, - "domains": [ - "blogblog.com", - "blogger.com", - "blogspot.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "blogspot_com", - "name": "blogspot.com", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "bloomreach": { - "category": "advertising", - "company_id": "bloomreach", - "description": null, - "domains": [ - "brcdn.com", - "brsrvr.com", - "brtstats.com" - ], - "ghostery_id": "323", - "iab_vendor": null, - "id": "bloomreach", - "name": "BloomReach", - "privacy_url": "https://www.bloomreach.com/en/about/privacy-policy", - "truste_type": null, - "website_url": "https://www.bloomreach.com/en" - }, - "blueconic.net": { - "category": "site_analytics", - "company_id": null, - "description": "BlueConic is the world\u2019s simplest and most accessible customer data platform, built for marketers to harness the data required to power the recognition of an individual at each interaction, and then synchronize their intent across the marketing ecosystem. ", - "domains": [ - "blueconic.net" - ], - "ghostery_id": "2873", - "iab_vendor": null, - "id": "blueconic.net", - "name": "BlueConic", - "privacy_url": "https://www.blueconic.com/privacy-policy/", - "truste_type": "Publisher Related", - "website_url": "https://www.blueconic.com/" - }, - "bluecore": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "triggeredmail.appspot.com" - ], - "ghostery_id": "1952", - "iab_vendor": null, - "id": "bluecore", - "name": "Bluecore", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bluecore.com/" - }, - "bluecore.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "bluecore.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bluecore.com", - "name": "Bluecore", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bluecore.com/" - }, - "bluekai": { - "category": "site_analytics", - "company_id": "oracle", - "description": null, - "domains": [ - "bkrtx.com", - "bluekai.com" - ], - "ghostery_id": "116", - "iab_vendor": null, - "id": "bluekai", - "name": "BlueKai", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": null, - "website_url": "http://www.bluekai.com/" - }, - "bluelithium": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "adrevolver.com", - "bluelithium.com" - ], - "ghostery_id": "150", - "iab_vendor": null, - "id": "bluelithium", - "name": "Bluelithium", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.bluelithium.com/" - }, - "bluenewsupdate.info": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "bluenewsupdate.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bluenewsupdate.info", - "name": "bluenewsupdate.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bluetriangle": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "btttag.com" - ], - "ghostery_id": "2260", - "iab_vendor": null, - "id": "bluetriangle", - "name": "Blue Triangle", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bluetriangle.com/" - }, - "bodelen.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "bodelen.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bodelen.com", - "name": "bodelen.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "boltdns.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "boltdns.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "boltdns.net", - "name": "boltdns.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bombora": { - "category": "site_analytics", - "company_id": "bombora", - "description": null, - "domains": [ - "ml314.com" - ], - "ghostery_id": "2284", - "iab_vendor": 163, - "id": "bombora", - "name": "Bombora", - "privacy_url": "https://bombora.com/privacy", - "truste_type": null, - "website_url": null - }, - "bongacams.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "bongacams.com" - ], - "ghostery_id": "bongacams.com", - "iab_vendor": null, - "id": "bongacams.com", - "name": "bongacams.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bonial": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "bonial.com", - "bonialconnect.com", - "bonialserviceswidget.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bonial", - "name": "Bonial Connect", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.bonial.com/" - }, - "booking.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "booking.com", - "bstatic.com" - ], - "ghostery_id": "c_1707", - "iab_vendor": null, - "id": "booking.com", - "name": "Booking.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bootstrap": { - "category": "cdn", - "company_id": "bootstrap_cdn", - "description": null, - "domains": [ - "bootstrapcdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bootstrap", - "name": "Bootstrap CDN", - "privacy_url": "https://www.bootstrapcdn.com/privacy-policy/", - "truste_type": null, - "website_url": "http://getbootstrap.com/" - }, - "borrango.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "borrango.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "borrango.com", - "name": "borrango.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "boudja.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "boudja.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "boudja.com", - "name": "boudja.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bounce_exchange": { - "category": "advertising", - "company_id": "bounce_exchange", - "description": null, - "domains": [ - "bounceexchange.com" - ], - "ghostery_id": "1463", - "iab_vendor": 256, - "id": "bounce_exchange", - "name": "Bounce Exchange", - "privacy_url": "https://www.bouncex.com/privacy/", - "truste_type": null, - "website_url": "http://bounceexchange.com" - }, - "bouncex": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "bouncex.com", - "bouncex.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bouncex", - "name": "BounceX", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bouncex.com/" - }, - "boxever": { - "category": "advertising", - "company_id": "boxever", - "description": null, - "domains": [ - "boxever.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "boxever", - "name": "Boxever", - "privacy_url": "https://www.boxever.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.boxever.com/" - }, - "branch_metrics": { - "category": "advertising", - "company_id": "branch_metrics_inc", - "description": null, - "domains": [ - "app.link", - "branch.io" - ], - "ghostery_id": "2398", - "iab_vendor": null, - "id": "branch_metrics", - "name": "Branch", - "privacy_url": "https://branch.io/privacy_policy/", - "truste_type": null, - "website_url": null - }, - "brandmetrics.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "brandmetrics.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "brandmetrics.com", - "name": "Brandmetrics.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.brandmetrics.com/" - }, - "brandwire.tv": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "brandwire.tv" - ], - "ghostery_id": "brandwire.tv", - "iab_vendor": null, - "id": "brandwire.tv", - "name": "BrandWire", - "privacy_url": null, - "truste_type": null, - "website_url": "https://brandwire.tv/" - }, - "braze": { - "category": "site_analytics", - "company_id": "braze_inc", - "description": null, - "domains": [ - "appboycdn.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "braze", - "name": "Braze", - "privacy_url": "https://www.braze.com/privacy/", - "truste_type": null, - "website_url": "https://www.braze.com/" - }, - "brealtime": { - "category": "advertising", - "company_id": null, - "description": "An advertising network that deliver advertisements to website that are visited.", - "domains": [ - "brealtime.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "brealtime", - "name": "bRealTime", - "privacy_url": "https://www.brealtime.com/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://www.brealtime.com/" - }, - "brightcove": { - "category": "audio_video_player", - "company_id": "brightcove", - "description": null, - "domains": [ - "brightcove.com" - ], - "ghostery_id": "423", - "iab_vendor": null, - "id": "brightcove", - "name": "Brightcove", - "privacy_url": "http://www.brightcove.com/en/privacy", - "truste_type": null, - "website_url": "http://www.brightcove.com/en/" - }, - "brightcove_player": { - "category": "audio_video_player", - "company_id": "brightcove", - "description": null, - "domains": [ - "brightcove.net" - ], - "ghostery_id": "2451", - "iab_vendor": null, - "id": "brightcove_player", - "name": "Brightcove Player", - "privacy_url": "http://www.brightcove.com/en/privacy", - "truste_type": null, - "website_url": null - }, - "brightonclick.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "brightonclick.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "brightonclick.com", - "name": "brightonclick.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "brightroll": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "btrll.com" - ], - "ghostery_id": "500", - "iab_vendor": null, - "id": "brightroll", - "name": "BrightRoll", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.brightroll.com/" - }, - "brillen.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "brillen.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "brillen.de", - "name": "brillen.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.brillen.de/" - }, - "browser_update": { - "category": "customer_interaction", - "company_id": "browser-update", - "description": null, - "domains": [ - "browser-update.org" - ], - "ghostery_id": "774", - "iab_vendor": null, - "id": "browser_update", - "name": "Browser Update", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.browser-update.org/" - }, - "btncdn.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "btncdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "btncdn.com", - "name": "btncdn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "btttag.com": { - "category": "site_analytics", - "company_id": "blue_triangle_technologies_inc", - "description": null, - "domains": [ - "bluetriangletech.com" - ], - "ghostery_id": "2260", - "iab_vendor": null, - "id": "btttag.com", - "name": "Btttag", - "privacy_url": "https://www.bluetriangletech.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.bluetriangletech.com/" - }, - "bugherd.com": { - "category": "customer_interaction", - "company_id": "macropod_software", - "description": null, - "domains": [ - "bugherd.com" - ], - "ghostery_id": "1083", - "iab_vendor": null, - "id": "bugherd.com", - "name": "BugHerd", - "privacy_url": null, - "truste_type": null, - "website_url": "https://bugherd.com" - }, - "bugsnag": { - "category": "site_analytics", - "company_id": "bugsnag", - "description": null, - "domains": [ - "bugsnag.com", - "d2wy8f7a9ursnm.cloudfront.net" - ], - "ghostery_id": "2091", - "iab_vendor": null, - "id": "bugsnag", - "name": "Bugsnag", - "privacy_url": "http://docs.bugsnag.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "https://bugsnag.com" - }, - "bulkhentai.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "bulkhentai.com" - ], - "ghostery_id": "bulkhentai.com", - "iab_vendor": null, - "id": "bulkhentai.com", - "name": "bulkhentai.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bumlam.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "bumlam.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bumlam.com", - "name": "bumlam.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bunchbox": { - "category": "site_analytics", - "company_id": "bunchbox", - "description": null, - "domains": [ - "bunchbox.co" - ], - "ghostery_id": "2366", - "iab_vendor": null, - "id": "bunchbox", - "name": "Bunchbox", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "burda": { - "category": "advertising", - "company_id": "hubert_burda_media", - "description": null, - "domains": [ - "bf-ad.net", - "bf-tools.net" - ], - "ghostery_id": "2801", - "iab_vendor": null, - "id": "burda", - "name": "BurdaForward", - "privacy_url": "http://www.hubert-burda-media.com/privacy/", - "truste_type": null, - "website_url": null - }, - "burda_digital_systems": { - "category": "advertising", - "company_id": "hubert_burda_media", - "description": null, - "domains": [ - "bstatic.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "burda_digital_systems", - "name": "Burda Digital Systems", - "privacy_url": "http://www.hubert-burda-media.com/privacy/", - "truste_type": null, - "website_url": null - }, - "buysellads": { - "category": "advertising", - "company_id": "buysellads.com", - "description": null, - "domains": [ - "buysellads.com", - "servedby-buysellads.com" - ], - "ghostery_id": "259", - "iab_vendor": null, - "id": "buysellads", - "name": "BuySellAds", - "privacy_url": "http://buysellads.com/about/privacy", - "truste_type": null, - "website_url": "http://buysellads.com/" - }, - "buzzadexchange.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "buzzadexchange.com" - ], - "ghostery_id": "buzzadexchange.com", - "iab_vendor": null, - "id": "buzzadexchange.com", - "name": "buzzadexchange.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "bwbx.io": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "bwbx.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "bwbx.io", - "name": "Bloomberg CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.bloomberg.com/" - }, - "c1_exchange": { - "category": "advertising", - "company_id": "c1_exchange_", - "description": null, - "domains": [ - "c1exchange.com" - ], - "ghostery_id": "2942", - "iab_vendor": null, - "id": "c1_exchange", - "name": "C1 Exchange", - "privacy_url": "http://c1exchange.com/policy", - "truste_type": null, - "website_url": null - }, - "cackle.me": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "cackle.me" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cackle.me", - "name": "Cackle", - "privacy_url": null, - "truste_type": null, - "website_url": "https://cackle.me/" - }, - "caltat.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "caltat.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "caltat.com", - "name": "Caltat", - "privacy_url": null, - "truste_type": null, - "website_url": "https://caltat.com/" - }, - "cam-content.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "cam-content.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cam-content.com", - "name": "Cam-Content.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cam-content.com/" - }, - "camakaroda.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "camakaroda.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "camakaroda.com", - "name": "camakaroda.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "canvas": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "canvas.net", - "canvasnetwork.com", - "du11hjcvx0uqb.cloudfront.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "canvas", - "name": "Canvas", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.canvas.net/" - }, - "capitaldata": { - "category": "site_analytics", - "company_id": "highco", - "description": null, - "domains": [ - "kdata.fr" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "capitaldata", - "name": "CapitalData", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.capitaldata.fr/" - }, - "cardlytics": { - "category": "site_analytics", - "company_id": null, - "description": "Cardlytics uses purchase-based intelligence to make marketing more relevant and measurable. ", - "domains": [ - "cardlytics.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cardlytics", - "name": "Cardlytics", - "privacy_url": "http://www.cardlytics.com/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://www.cardlytics.com/" - }, - "catchpoint": { - "category": "site_analytics", - "company_id": "catchpoint_systems", - "description": null, - "domains": [ - "3gl.net" - ], - "ghostery_id": "1800", - "iab_vendor": null, - "id": "catchpoint", - "name": "Catchpoint", - "privacy_url": "http://www.catchpoint.com/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.catchpoint.com/" - }, - "cbsi.com": { - "category": "misc", - "company_id": "cbs_interactive", - "description": "CBS Interactive is the premier online content network for information and entertainment. Our brands dive deep into the things people care most about across news, sports, entertainment, technology and business. With hundreds of millions of unique visitors from around the world each month, CBS Interactive is a global top 10 web property and the largest premium content network online.", - "domains": [ - "cbsinteractive.com" - ], - "ghostery_id": "357", - "iab_vendor": null, - "id": "cbsi.com", - "name": "CBS Interactive", - "privacy_url": "https://www.cbsinteractive.com/legal/cbsi/privacy-policy", - "truste_type": "Ad Network", - "website_url": "https://www.cbsinteractive.com/" - }, - "ccm_benchmark": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "ccmbg.com" - ], - "ghostery_id": "2359", - "iab_vendor": null, - "id": "ccm_benchmark", - "name": "CCM Benchmark", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ccmbenchmark.com/" - }, - "cdn-net.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "cdn-net.com" - ], - "ghostery_id": "cdn-net.com", - "iab_vendor": null, - "id": "cdn-net.com", - "name": "cdn-net.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cdn13.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "cdn13.com" - ], - "ghostery_id": "cdn13.com", - "iab_vendor": null, - "id": "cdn13.com", - "name": "cdn13.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cdn77": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "cdn77.com", - "cdn77.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdn77", - "name": "CDN77", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cdn77.com/" - }, - "cdnetworks.net": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "cdnetworks.com", - "cdnetworks.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnetworks.net", - "name": "cdnetworks.net", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cdnetworks.com/" - }, - "cdnnetwok_xyz": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "cdnnetwok.xyz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnnetwok_xyz", - "name": "cdnnetwok.xyz", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cdnondemand.org": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "cdnondemand.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnondemand.org", - "name": "cdnondemand.org", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cdnsure.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "cdnsure.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnsure.com", - "name": "cdnsure.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cdnvideo.com": { - "category": "cdn", - "company_id": "cdnvideo", - "description": null, - "domains": [ - "cdnvideo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnvideo.com", - "name": "CDNvideo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cdnvideo.com/" - }, - "cdnwidget.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "cdnwidget.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cdnwidget.com", - "name": "cdnwidget.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cedexis_radar": { - "category": "site_analytics", - "company_id": "cedexis", - "description": null, - "domains": [ - "cedexis-radar.net", - "cedexis-test.com", - "cedexis.com", - "cedexis.fastlylb.net", - "cedexis.net" - ], - "ghostery_id": "434", - "iab_vendor": null, - "id": "cedexis_radar", - "name": "Cedexis Radar", - "privacy_url": "http://www.cedexis.com/privacy-policy/ ", - "truste_type": null, - "website_url": "http://www.cedexis.com/products_radar.html" - }, - "certona": { - "category": "advertising", - "company_id": "certona__resonance_", - "description": null, - "domains": [ - "certona.net", - "res-x.com" - ], - "ghostery_id": "283", - "iab_vendor": null, - "id": "certona", - "name": "Certona", - "privacy_url": "http://www.certona.com/privacy/", - "truste_type": null, - "website_url": "http://www.certona.com/products/recommendation.php" - }, - "channel_pilot_solutions": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "cptrack.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "channel_pilot_solutions", - "name": "ChannelPilot Solutions", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.channelpilot.de/" - }, - "chaordic": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "chaordicsystems.com" - ], - "ghostery_id": "1254", - "iab_vendor": null, - "id": "chaordic", - "name": "Chaordic", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.chaordic.com.br/" - }, - "chartbeat": { - "category": "site_analytics", - "company_id": "chartbeat", - "description": "Chartbeat is a betaworks company that provides realtime analytics to Websites and blogs.", - "domains": [ - "chartbeat.com", - "chartbeat.net" - ], - "ghostery_id": "58", - "iab_vendor": null, - "id": "chartbeat", - "name": "ChartBeat", - "privacy_url": "http://chartbeat.com/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://chartbeat.com/" - }, - "chatango": { - "category": "customer_interaction", - "company_id": "chatango", - "description": null, - "domains": [ - "chatango.com" - ], - "ghostery_id": "1653", - "iab_vendor": null, - "id": "chatango", - "name": "Chatango", - "privacy_url": "http://www.chatango.com/page?full_privacy", - "truste_type": null, - "website_url": "http://www.chatango.com/" - }, - "chaturbate.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "chaturbate.com" - ], - "ghostery_id": "chaturbate.com", - "iab_vendor": null, - "id": "chaturbate.com", - "name": "chaturbate.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "chefkoch_de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "chefkoch-cdn.de", - "chefkoch.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "chefkoch_de", - "name": "chefkoch.de", - "privacy_url": null, - "truste_type": null, - "website_url": "http://chefkoch.de/" - }, - "chute": { - "category": "essential", - "company_id": "esw_capital", - "description": null, - "domains": [ - "api.getchute.com", - "media.chute.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "chute", - "name": "Chute", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.getchute.com/" - }, - "circit": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "iqcontentplatform.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "circit", - "name": "circIT", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.circit.de/" - }, - "ciuvo.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "ciuvo.com" - ], - "ghostery_id": "ciuvo.com", - "iab_vendor": null, - "id": "ciuvo.com", - "name": "ciuvo.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ciuvo.com/" - }, - "civicscience.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "civicscience.com" - ], - "ghostery_id": "945", - "iab_vendor": null, - "id": "civicscience.com", - "name": "CivicScience", - "privacy_url": null, - "truste_type": null, - "website_url": "https://civicscience.com/" - }, - "clcknads.pro": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "clcknads.pro" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "clcknads.pro", - "name": "clcknads.pro", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "clear_pier": { - "category": "advertising", - "company_id": "clear_pier", - "description": null, - "domains": [ - "pulseradius.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "clear_pier", - "name": "ClearPier", - "privacy_url": "http://clearpier.com/privacy-policy/", - "truste_type": null, - "website_url": "http://clearpier.com/" - }, - "clearbit.com": { - "category": "site_analytics", - "company_id": "clearbit", - "description": null, - "domains": [ - "clearbit.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "clearbit.com", - "name": "Clearbit", - "privacy_url": "https://clearbit.com/privacy", - "truste_type": null, - "website_url": "https://clearbit.com/" - }, - "clearsale": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "clearsale.com.br" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "clearsale", - "name": "clearsale", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.clear.sale/" - }, - "clever_push": { - "category": "site_analytics", - "company_id": "clever_push", - "description": null, - "domains": [ - "cleverpush.com" - ], - "ghostery_id": "2618", - "iab_vendor": null, - "id": "clever_push", - "name": "Clever Push", - "privacy_url": "https://cleverpush.com/privacy", - "truste_type": null, - "website_url": "https://clevertap.com/" - }, - "clever_tap": { - "category": "site_analytics", - "company_id": "clever_tap", - "description": null, - "domains": [ - "wzrkt.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "clever_tap", - "name": "CleverTap", - "privacy_url": "https://clevertap.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "clickintext": { - "category": "advertising", - "company_id": "clickintext", - "description": null, - "domains": [ - "clickintext.net" - ], - "ghostery_id": "718", - "iab_vendor": null, - "id": "clickintext", - "name": "ClickInText", - "privacy_url": "https://www.clickintext.com/about/confidentialite-retargeting.php", - "truste_type": null, - "website_url": "http://www.clickintext.com/" - }, - "clickonometrics": { - "category": "advertising", - "company_id": "clickonometrics", - "description": "Clickonometrics measures the on-line market. We answer your questions about the data and analysis of the internet market. We develop tools and technologies that collect and analyze data for business. We support companies and institutions operating in the online advertising market. ", - "domains": [ - "clickonometrics.pl" - ], - "ghostery_id": "1789", - "iab_vendor": null, - "id": "clickonometrics", - "name": "Clickonometrics", - "privacy_url": "http://clickonometrics.com/pl/", - "truste_type": "Attribution / Analytics", - "website_url": "http://clickonometrics.pl/" - }, - "clicktale": { - "category": "site_analytics", - "company_id": "clicktale", - "description": "ClickTale is the industry leader in Customer Experience Analytics (CEA), providing businesses with revolutionary insights into their customers\u2019 online behavior. Over 70,000 businesses rely on ClickTale to optimize website performance, improve usability and dramatically increase conversion rates. ClickTale tracks every mouse move, click and scroll, creating playable videos of customers\u2019 entire browsing sessions as well as powerful visual heatmaps and behavioral reports that perfectly complement traditional web analytics. As a fully hosted subscription service, ClickTale is cost-effective and quick to set up.", - "domains": [ - "clicktale.com", - "clicktale.net", - "pantherssl.com" - ], - "ghostery_id": "108", - "iab_vendor": null, - "id": "clicktale", - "name": "ClickTale", - "privacy_url": "https://www.clicktale.com/company/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.clicktale.com/" - }, - "clicktripz": { - "category": "advertising", - "company_id": "clicktripz", - "description": null, - "domains": [ - "clicktripz.com" - ], - "ghostery_id": "1977", - "iab_vendor": null, - "id": "clicktripz", - "name": "ClickTripz", - "privacy_url": "https://www.clicktripz.com/privacy_policy.php", - "truste_type": null, - "website_url": "https://www.clicktripz.com" - }, - "clicky": { - "category": "site_analytics", - "company_id": "clicky", - "description": null, - "domains": [ - "getclicky.com", - "staticstuff.net" - ], - "ghostery_id": "3", - "iab_vendor": null, - "id": "clicky", - "name": "Clicky", - "privacy_url": "http://clicky.com/terms", - "truste_type": null, - "website_url": "http://getclicky.com/" - }, - "cloud-media.fr": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "cloud-media.fr" - ], - "ghostery_id": "cloud-media.fr", - "iab_vendor": null, - "id": "cloud-media.fr", - "name": "CloudMedia", - "privacy_url": null, - "truste_type": null, - "website_url": "https://cloudmedia.fr/" - }, - "cloudflare": { - "category": "cdn", - "company_id": "cloudflare", - "description": null, - "domains": [ - "cloudflare.com", - "cloudflare.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cloudflare", - "name": "CloudFlare", - "privacy_url": "https://www.cloudflare.com/security-policy/", - "truste_type": null, - "website_url": "https://www.cloudflare.com/" - }, - "cloudimage.io": { - "category": "cdn", - "company_id": "scaleflex_sas", - "description": null, - "domains": [ - "cloudimg.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cloudimage.io", - "name": "Cloudimage.io", - "privacy_url": "https://privacy.scaleflex.it/go/privacy/en/privacy-by-design/", - "truste_type": null, - "website_url": "https://www.cloudimage.io/en/home" - }, - "cloudinary": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "cloudinary.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cloudinary", - "name": "Cloudinary", - "privacy_url": null, - "truste_type": null, - "website_url": "https://cloudinary.com/" - }, - "cnbc": { - "category": "misc", - "company_id": "nbcuniversal", - "description": null, - "domains": [ - "cnbc.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cnbc", - "name": "CNBC", - "privacy_url": "https://www.nbcuniversal.com/privacy", - "truste_type": null, - "website_url": "https://www.cnbc.com/" - }, - "cnetcontent.com": { - "category": "misc", - "company_id": "cbs_interactive", - "description": null, - "domains": [ - "cnetcontent.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cnetcontent.com", - "name": "Cnetcontent", - "privacy_url": "https://www.cbsinteractive.com/legal/cbsi/privacy-policy", - "truste_type": null, - "website_url": "http://cnetcontent.com/" - }, - "cnzz.com": { - "category": "site_analytics", - "company_id": "umeng", - "description": null, - "domains": [ - "cnzz.com", - "umeng.com" - ], - "ghostery_id": "704", - "iab_vendor": null, - "id": "cnzz.com", - "name": "Umeng", - "privacy_url": "https://www.umeng.com/policy.html?spm=a211g2.181323.0.0.5c633604LabXL1", - "truste_type": null, - "website_url": "http://www.umeng.com/" - }, - "codeonclick.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "codeonclick.com" - ], - "ghostery_id": "codeonclick.com", - "iab_vendor": null, - "id": "codeonclick.com", - "name": "codeonclick.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "coinhive": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "authedmine.com", - "coinhive.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "coinhive", - "name": "Coinhive", - "privacy_url": null, - "truste_type": null, - "website_url": "https://coinhive.com/" - }, - "coll1onf.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "coll1onf.com" - ], - "ghostery_id": "coll1onf.com", - "iab_vendor": null, - "id": "coll1onf.com", - "name": "coll1onf.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "coll2onf.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "coll2onf.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "coll2onf.com", - "name": "coll2onf.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "combotag": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "combotag.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "combotag", - "name": "ComboTag", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.combotag.com/" - }, - "commercialvalue.org": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "commercialvalue.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "commercialvalue.org", - "name": "commercialvalue.org", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "commission_junction": { - "category": "advertising", - "company_id": "apn_news_media", - "description": null, - "domains": [ - "afcyhf.com", - "anrdoezrs.net", - "apmebf.com", - "awltovhc.com", - "emjcd.com", - "ftjcfx.com", - "lduhtrp.net", - "qksz.net", - "tkqlhce.com", - "tqlkg.com", - "yceml.net" - ], - "ghostery_id": "557", - "iab_vendor": null, - "id": "commission_junction", - "name": "CJ Affiliate", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.cj.com/" - }, - "comprigo": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "comprigo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "comprigo", - "name": "comprigo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.comprigo.com/" - }, - "comscore": { - "category": "site_analytics", - "company_id": "comscore", - "description": null, - "domains": [ - "zqtk.net" - ], - "ghostery_id": null, - "iab_vendor": 77, - "id": "comscore", - "name": "ComScore, Inc.", - "privacy_url": "https://www.comscore.com/About-comScore/Privacy-Policy", - "truste_type": null, - "website_url": "https://www.comscore.com/" - }, - "conative.de": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "conative.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "conative.de", - "name": "CoNative", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.conative.de/" - }, - "condenastdigital.com": { - "category": "misc", - "company_id": "conde_nast", - "description": null, - "domains": [ - "condenast.com" - ], - "ghostery_id": "2573", - "iab_vendor": null, - "id": "condenastdigital.com", - "name": "Cond\u00e9 Nast Digital", - "privacy_url": "http://www.condenast.com/privacy-policy/#privacypolicy", - "truste_type": null, - "website_url": "http://www.condenast.com/" - }, - "congstar.de": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "congstar.de" - ], - "ghostery_id": "congstar.de", - "iab_vendor": null, - "id": "congstar.de", - "name": "congstar.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "connatix.com": { - "category": "advertising", - "company_id": "connatix", - "description": null, - "domains": [ - "connatix.com" - ], - "ghostery_id": null, - "iab_vendor": 143, - "id": "connatix.com", - "name": "Connatix", - "privacy_url": "https://connatix.com/privacy-policy/", - "truste_type": null, - "website_url": "https://connatix.com/" - }, - "connexity": { - "category": "advertising", - "company_id": "connexity", - "description": null, - "domains": [ - "connexity.net", - "cxt.ms" - ], - "ghostery_id": "1293", - "iab_vendor": null, - "id": "connexity", - "name": "Connexity", - "privacy_url": "http://connexity.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.connexity.com" - }, - "connextra": { - "category": "advertising", - "company_id": "connextra", - "description": null, - "domains": [ - "connextra.com" - ], - "ghostery_id": "472", - "iab_vendor": null, - "id": "connextra", - "name": "Connextra", - "privacy_url": "http://connextra.net/privacy_policy.htm", - "truste_type": null, - "website_url": "http://connextra.com/" - }, - "consumable": { - "category": "advertising", - "company_id": "giftconnect", - "description": null, - "domains": [ - "serverbid.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "consumable", - "name": "Consumable", - "privacy_url": "http://consumable.com/privacy-policy.html", - "truste_type": null, - "website_url": "http://consumable.com/index.html" - }, - "contact_impact": { - "category": "advertising", - "company_id": "axel_springer", - "description": "Contact Impact delivers innovative services for digital advertising. ", - "domains": [ - "adrolays.de", - "c-i.as", - "df-srv.de" - ], - "ghostery_id": "2976", - "iab_vendor": null, - "id": "contact_impact", - "name": "Contact Impact", - "privacy_url": "https://www.contactimpact.de/", - "truste_type": "Ad Platform", - "website_url": "https://www.contactimpact.de/" - }, - "content.ad": { - "category": "advertising", - "company_id": "content.ad", - "description": "Content.ad combine technology with deep knowledge and expertise to help customers generate revenue through content marketing. ", - "domains": [ - "content.ad" - ], - "ghostery_id": "1192", - "iab_vendor": null, - "id": "content.ad", - "name": "Content.ad", - "privacy_url": "https://www.content.ad/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "https://www.content.ad/" - }, - "contentexchange.me": { - "category": "site_analytics", - "company_id": "i.r.v.", - "description": null, - "domains": [ - "contentexchange.me" - ], - "ghostery_id": "2628", - "iab_vendor": null, - "id": "contentexchange.me", - "name": "Content Exchange", - "privacy_url": "http://www.contentexchange.me/terms-of-service/", - "truste_type": null, - "website_url": "https://www.contentexchange.me/" - }, - "contentful_gmbh": { - "category": "cdn", - "company_id": "contentful_gmbh", - "description": null, - "domains": [ - "ctfassets.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "contentful_gmbh", - "name": "Contentful GmbH", - "privacy_url": "https://www.contentful.com/legal/de/privacy/", - "truste_type": null, - "website_url": "https://www.contentful.com/" - }, - "contentpass": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "contentpass.de", - "contentpass.net" - ], - "ghostery_id": "contentpass.net", - "iab_vendor": null, - "id": "contentpass", - "name": "Contentpass", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.contentpass.de/" - }, - "contentsquare.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "contentsquare.net" - ], - "ghostery_id": "contentsquare.net", - "iab_vendor": null, - "id": "contentsquare.net", - "name": "ContentSquare", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.contentsquare.com/" - }, - "continum_net": { - "category": "hosting", - "company_id": null, - "description": null, - "domains": [ - "continum.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "continum_net", - "name": "continum.net", - "privacy_url": null, - "truste_type": null, - "website_url": "http://continum.net/" - }, - "conversant": { - "category": "advertising", - "company_id": "conversant", - "description": "Conversant, Inc. is the leader in personalized digital marketing. Combining the strengths of ValueClick Media & Commission.", - "domains": [ - "fastclick.net", - "mediaplex.com", - "mplxtms.com" - ], - "ghostery_id": "531", - "iab_vendor": 24, - "id": "conversant", - "name": "Conversant", - "privacy_url": "https://www.conversantmedia.eu/legal/privacy-policy", - "truste_type": "Ad Network", - "website_url": "https://www.conversantmedia.eu/" - }, - "convertro": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "convertro.com", - "d1ivexoxmp59q7.cloudfront.net" - ], - "ghostery_id": "582", - "iab_vendor": null, - "id": "convertro", - "name": "Convertro", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.convertro.com/" - }, - "conviva": { - "category": "site_analytics", - "company_id": "conviva", - "description": null, - "domains": [ - "conviva.com" - ], - "ghostery_id": "561", - "iab_vendor": null, - "id": "conviva", - "name": "Conviva", - "privacy_url": " http://www.conviva.com/home/privacy-policy/", - "truste_type": null, - "website_url": "http://www.conviva.com/" - }, - "cookiebot": { - "category": "essential", - "company_id": null, - "description": null, - "domains": [ - "cookiebot.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "cookiebot", - "name": "Cookiebot", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cookiebot.com/en/" - }, - "cpmstar": { - "category": "advertising", - "company_id": "cpmstar", - "description": "CPMStar provides multiplayer gaming content for developers, advertisers and publishers. ", - "domains": [ - "cpmstar.com" - ], - "ghostery_id": "411", - "iab_vendor": null, - "id": "cpmstar", - "name": "CPMStar", - "privacy_url": "http://www.cpmstar.com/privacyPolicy.html", - "truste_type": "Ad Network", - "website_url": "http://www.cpmstar.com" - }, - "cpx.to": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "cpx.to" - ], - "ghostery_id": "cpx.to", - "iab_vendor": null, - "id": "cpx.to", - "name": "cpx.to", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cqq5id8n.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "cqq5id8n.com" - ], - "ghostery_id": "cqq5id8n.com", - "iab_vendor": null, - "id": "cqq5id8n.com", - "name": "cqq5id8n.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "cquotient.com": { - "category": "site_analytics", - "company_id": "salesforce", - "description": null, - "domains": [ - "cquotient.com" - ], - "ghostery_id": "cquotient.com", - "iab_vendor": null, - "id": "cquotient.com", - "name": "CQuotient", - "privacy_url": "https://www.salesforce.com/eu/company/privacy/", - "truste_type": null, - "website_url": "https://www.demandware.com/#cquotient" - }, - "crazy_egg": { - "category": "site_analytics", - "company_id": "crazy_egg", - "description": "Crazy Egg allows website owners to create tests to figure out what users are doing on their site. ", - "domains": [ - "cetrk.com", - "crazyegg.com", - "dnn506yrbagrg.cloudfront.net" - ], - "ghostery_id": "20", - "iab_vendor": null, - "id": "crazy_egg", - "name": "Crazy Egg", - "privacy_url": "https://www.crazyegg.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "http://crazyegg.com/" - }, - "createjs": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "createjs.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "createjs", - "name": "CreateJS", - "privacy_url": null, - "truste_type": null, - "website_url": "https://createjs.com/" - }, - "creative_commons": { - "category": "misc", - "company_id": "creative_commons_corp", - "description": null, - "domains": [ - "creativecommons.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "creative_commons", - "name": "Creative Commons", - "privacy_url": "https://creativecommons.org/privacy/", - "truste_type": null, - "website_url": "https://creativecommons.org/" - }, - "crimsonhexagon_com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "crimsonhexagon.com", - "hexagon-analytics.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "crimsonhexagon_com", - "name": "Crimson Hexagon", - "privacy_url": null, - "truste_type": null, - "website_url": "http://crimsonhexagon.com/" - }, - "crimtan": { - "category": "advertising", - "company_id": "crimtan", - "description": null, - "domains": [ - "ctasnet.com", - "ctnsnet.com", - "ctpsnet.com" - ], - "ghostery_id": "520", - "iab_vendor": 85, - "id": "crimtan", - "name": "Crimtan", - "privacy_url": "https://crimtan.com/privacy/", - "truste_type": null, - "website_url": "http://www.crimtan.com/" - }, - "criteo": { - "category": "advertising", - "company_id": "criteo", - "description": null, - "domains": [ - "criteo.com", - "criteo.net" - ], - "ghostery_id": "64", - "iab_vendor": 91, - "id": "criteo", - "name": "Criteo", - "privacy_url": "https://www.criteo.com/privacy/", - "truste_type": null, - "website_url": "http://www.criteo.com/" - }, - "crossengage": { - "category": "site_analytics", - "company_id": "crossengage", - "description": null, - "domains": [ - "crossengage.io" - ], - "ghostery_id": "2621", - "iab_vendor": null, - "id": "crossengage", - "name": "CrossEngage", - "privacy_url": "https://www.crossengage.io/privacy-and-terms/", - "truste_type": null, - "website_url": null - }, - "crosspixel": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "crosspixel.net", - "crsspxl.com" - ], - "ghostery_id": "732", - "iab_vendor": null, - "id": "crosspixel", - "name": "Cross Pixel", - "privacy_url": null, - "truste_type": null, - "website_url": "http://crosspixel.net/" - }, - "crosssell.info": { - "category": "advertising", - "company_id": "econda", - "description": null, - "domains": [ - "crosssell.info" - ], - "ghostery_id": "crosssell.info", - "iab_vendor": null, - "id": "crosssell.info", - "name": "econda Cross Sell", - "privacy_url": " http://www.econda.de/econda/unternehmen/datenschutz/", - "truste_type": null, - "website_url": "https://www.econda.de/en/solutions/personalization/cross-sell/" - }, - "curse.com": { - "category": "misc", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "curse.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "curse.com", - "name": "Curse", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.curse.com/" - }, - "cursecdn.com": { - "category": "cdn", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "cursecdn.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "cursecdn.com", - "name": "Curse CDN", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.curse.com/" - }, - "cxense": { - "category": "advertising", - "company_id": "cxense", - "description": null, - "domains": [ - "cxense.com" - ], - "ghostery_id": "794", - "iab_vendor": 412, - "id": "cxense", - "name": "cXense", - "privacy_url": "https://www.cxense.com/about-us/privacy-policy", - "truste_type": null, - "website_url": "http://www.cxense.com/" - }, - "cxo.name": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "cxo.name" - ], - "ghostery_id": "cxo.name", - "iab_vendor": null, - "id": "cxo.name", - "name": "Chip Analytics", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.chip.de/" - }, - "da-ads.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "da-ads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "da-ads.com", - "name": "da-ads.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dailymail.co.uk": { - "category": "misc", - "company_id": "dmg_media", - "description": null, - "domains": [ - "dailymail.co.uk" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dailymail.co.uk", - "name": "Daily Mail", - "privacy_url": "https://www.dmgmedia.co.uk/privacy-cookie-policy/", - "truste_type": null, - "website_url": "http://www.dailymail.co.uk/home/index.html" - }, - "dailymotion": { - "category": "misc", - "company_id": "vivendi", - "description": null, - "domains": [ - "dailymotion.com", - "dailymotionbus.com", - "dm-event.net", - "dmcdn.net" - ], - "ghostery_id": "c_1475", - "iab_vendor": null, - "id": "dailymotion", - "name": "Dailymotion", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dailymotion_advertising": { - "category": "advertising", - "company_id": "vivendi", - "description": null, - "domains": [ - "dmxleo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dailymotion_advertising", - "name": "Dailymotion Advertising", - "privacy_url": null, - "truste_type": null, - "website_url": "http://advertising.dailymotion.com/" - }, - "dantrack.net": { - "category": "advertising", - "company_id": "dentsu_aegis_network", - "description": null, - "domains": [ - "dantrack.net" - ], - "ghostery_id": "dantrack.net", - "iab_vendor": null, - "id": "dantrack.net", - "name": "DANtrack", - "privacy_url": null, - "truste_type": null, - "website_url": "http://media.dantrack.net/privacy/" - }, - "datacaciques.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "datacaciques.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "datacaciques.com", - "name": "DataCaciques", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.datacaciques.com/" - }, - "datadome": { - "category": "site_analytics", - "company_id": "datadome", - "description": null, - "domains": [ - "datadome.co" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "datadome", - "name": "DataDome", - "privacy_url": "https://datadome.co/fr/mentions-legales/", - "truste_type": null, - "website_url": "https://datadome.co/" - }, - "datalogix": { - "category": "advertising", - "company_id": "oracle", - "description": null, - "domains": [ - "inextaction.net", - "nexac.com" - ], - "ghostery_id": "175", - "iab_vendor": null, - "id": "datalogix", - "name": "Datalogix", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": null, - "website_url": "https://www.oracle.com/corporate/acquisitions/datalogix/" - }, - "datamind.ru": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "datamind.ru" - ], - "ghostery_id": "2005", - "iab_vendor": null, - "id": "datamind.ru", - "name": "DataMind", - "privacy_url": null, - "truste_type": null, - "website_url": "http://datamind.ru/" - }, - "datatables": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "datatables.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "datatables", - "name": "DataTables", - "privacy_url": null, - "truste_type": null, - "website_url": "https://datatables.net/" - }, - "dataxu": { - "category": "advertising", - "company_id": "dataxu", - "description": null, - "domains": [ - "w55c.net" - ], - "ghostery_id": "353", - "iab_vendor": 71, - "id": "dataxu", - "name": "DataXu", - "privacy_url": "https://www.dataxu.com/about-us/privacy/data-collection-platform/", - "truste_type": null, - "website_url": "http://www.dataxu.com/" - }, - "datds.net": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "datds.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "datds.net", - "name": "datds.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "datonics": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "pro-market.net" - ], - "ghostery_id": "171", - "iab_vendor": null, - "id": "datonics", - "name": "Datonics", - "privacy_url": null, - "truste_type": null, - "website_url": "http://datonics.com/" - }, - "davebestdeals.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "davebestdeals.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "davebestdeals.com", - "name": "davebestdeals.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dawandastatic.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "dawandastatic.com" - ], - "ghostery_id": "dawandastatic.com", - "iab_vendor": null, - "id": "dawandastatic.com", - "name": "Dawanda CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://dawanda.com/" - }, - "dc_stormiq": { - "category": "advertising", - "company_id": "dc_storm", - "description": null, - "domains": [ - "dc-storm.com", - "h4k5.com", - "stormcontainertag.com", - "stormiq.com" - ], - "ghostery_id": "250", - "iab_vendor": null, - "id": "dc_stormiq", - "name": "DC StormIQ", - "privacy_url": "http://dc-storm.com/en-uk/privacy-policy/", - "truste_type": null, - "website_url": "http://www.dc-storm.com/" - }, - "dcbap.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "dcbap.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dcbap.com", - "name": "dcbap.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dcmn.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "dcmn.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "dcmn.com", - "name": "DCMN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.dcmn.com/" - }, - "decibel_insight": { - "category": "site_analytics", - "company_id": "decibel_insight", - "description": "Decibel Insight records every action visitors take on your web or mobile site. See what content they interact with, optimize the experience and turn more visitors into customers. ", - "domains": [ - "decibelinsight.net" - ], - "ghostery_id": "2232", - "iab_vendor": null, - "id": "decibel_insight", - "name": "Decibel Insight", - "privacy_url": "https://www.decibelinsight.com/PrivacyPolicy/", - "truste_type": "Attribution / Analytics", - "website_url": null - }, - "deepintent.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "deepintent.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "deepintent.com", - "name": "DeepIntent", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.deepintent.com/" - }, - "defpush.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "defpush.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "defpush.com", - "name": "defpush.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "deichmann.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "deichmann.com" - ], - "ghostery_id": "deichmann.com", - "iab_vendor": null, - "id": "deichmann.com", - "name": "deichmann.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "delta_projects": { - "category": "advertising", - "company_id": "delta_projects", - "description": null, - "domains": [ - "adaction.se", - "de17a.com" - ], - "ghostery_id": "904", - "iab_vendor": 209, - "id": "delta_projects", - "name": "Delta Projects", - "privacy_url": "http://www.deltaprojects.com/data-collection-policy/", - "truste_type": null, - "website_url": "http://www.adaction.se/" - }, - "delve_networks": { - "category": "social_media", - "company_id": "limelight_networks", - "description": null, - "domains": [ - "delvenetworks.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "delve_networks", - "name": "Delve Networks", - "privacy_url": "https://media.limelight.com/documents/Limelight+Networks+Privacy+Policy+06-2018.pdf", - "truste_type": null, - "website_url": "http://www.delvenetworks.com/" - }, - "demandbase": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "company-target.com", - "demandbase.com" - ], - "ghostery_id": "160", - "iab_vendor": 397, - "id": "demandbase", - "name": "Demandbase", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.demandbase.com/" - }, - "deviantart.net": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "dapxl.com", - "deviantart.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "deviantart.net", - "name": "deviantart.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dianomi": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "d3von6il1wr7wo.cloudfront.net", - "dianomi.com", - "dianomioffers.co.uk" - ], - "ghostery_id": "2024", - "iab_vendor": null, - "id": "dianomi", - "name": "Diamoni", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.dianomi.com/cms/" - }, - "didomi": { - "category": "essential", - "company_id": "didomi", - "description": null, - "domains": [ - "privacy-center.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "didomi", - "name": "Didomi", - "privacy_url": "https://privacy.didomi.io/en/", - "truste_type": null, - "website_url": "https://www.didomi.io/en/" - }, - "digicert_trust_seal": { - "category": "essential", - "company_id": "digicert", - "description": null, - "domains": [ - "digicert.com" - ], - "ghostery_id": "2108", - "iab_vendor": null, - "id": "digicert_trust_seal", - "name": "Digicert Trust Seal", - "privacy_url": "https://www.digicert.com/digicert-privacy-policy.htm", - "truste_type": null, - "website_url": "http://www.digicert.com/" - }, - "digidip": { - "category": "advertising", - "company_id": "digidip", - "description": null, - "domains": [ - "digidip.net" - ], - "ghostery_id": "2938", - "iab_vendor": null, - "id": "digidip", - "name": "Digidip", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "digilant": { - "category": "advertising", - "company_id": "digilant", - "description": null, - "domains": [ - "wtp101.com" - ], - "ghostery_id": null, - "iab_vendor": 266, - "id": "digilant", - "name": "Digilant", - "privacy_url": "https://www.digilant.com/es/politica-privacidad/", - "truste_type": null, - "website_url": "https://www.digilant.com/" - }, - "digioh": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "digioh.com", - "lightboxcdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "digioh", - "name": "Digioh", - "privacy_url": null, - "truste_type": null, - "website_url": "https://digioh.com/" - }, - "digital.gov": { - "category": "site_analytics", - "company_id": "us_government", - "description": null, - "domains": [ - "digitalgov.gov" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "digital.gov", - "name": "Digital.gov", - "privacy_url": null, - "truste_type": null, - "website_url": "https://digital.gov/" - }, - "digital_analytix": { - "category": "site_analytics", - "company_id": "adobe", - "description": null, - "domains": [ - "nedstat.com", - "sitestat.com" - ], - "ghostery_id": "196", - "iab_vendor": null, - "id": "digital_analytix", - "name": "Digital Analytix", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "https://www.nedstat.com/" - }, - "digital_nomads": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adtag.cc" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "digital_nomads", - "name": "Digital Nomads", - "privacy_url": null, - "truste_type": null, - "website_url": "http://dnomads.net/" - }, - "digital_remedy": { - "category": "advertising", - "company_id": "digital_remedy", - "description": null, - "domains": [ - "adready.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "digital_remedy", - "name": "Digital Remedy", - "privacy_url": "https://www.digitalremedy.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.digitalremedy.com/" - }, - "digital_window": { - "category": "advertising", - "company_id": "axel_springer", - "description": null, - "domains": [ - "dwin1.com" - ], - "ghostery_id": "1548", - "iab_vendor": null, - "id": "digital_window", - "name": "Digital Window", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.digitalwindow.com/" - }, - "digiteka": { - "category": "advertising", - "company_id": "digiteka", - "description": null, - "domains": [ - "digiteka.net", - "ultimedia.com" - ], - "ghostery_id": "2773", - "iab_vendor": 343, - "id": "digiteka", - "name": "Digiteka", - "privacy_url": "https://www.ultimedia.com/POLICY.html", - "truste_type": null, - "website_url": null - }, - "digitrust": { - "category": "advertising", - "company_id": "iab", - "description": null, - "domains": [ - "digitru.st" - ], - "ghostery_id": null, - "iab_vendor": 64, - "id": "digitrust", - "name": "DigiTrust", - "privacy_url": "https://www.iab.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.digitru.st/" - }, - "dimml": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "dimml.io" - ], - "ghostery_id": "c_3410", - "iab_vendor": null, - "id": "dimml", - "name": "DimML", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "discord": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "discordapp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "discord", - "name": "Discord", - "privacy_url": null, - "truste_type": null, - "website_url": "https://discordapp.com/" - }, - "disqus": { - "category": "comments", - "company_id": "disqus", - "description": null, - "domains": [ - "disqus.com", - "disquscdn.com" - ], - "ghostery_id": "85", - "iab_vendor": null, - "id": "disqus", - "name": "Disqus", - "privacy_url": "https://help.disqus.com/customer/portal/articles/466259-privacy-policy", - "truste_type": null, - "website_url": "https://disqus.com/" - }, - "disqus_ads": { - "category": "advertising", - "company_id": "disqus", - "description": null, - "domains": [ - "disqusads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "disqus_ads", - "name": "Disqus Ads", - "privacy_url": "https://help.disqus.com/customer/portal/articles/466259-privacy-policy", - "truste_type": null, - "website_url": "https://disqusads.com/" - }, - "distil_tag": { - "category": "site_analytics", - "company_id": "distil_networks", - "description": null, - "domains": [ - "distiltag.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "distil_tag", - "name": "Distil Bot Discovery", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.distilnetworks.com/block-bot-detection/" - }, - "districtm.io": { - "category": "advertising", - "company_id": "district_m", - "description": null, - "domains": [ - "districtm.ca", - "districtm.io" - ], - "ghostery_id": "", - "iab_vendor": 144, - "id": "districtm.io", - "name": "district m", - "privacy_url": "https://districtm.net/en/page/platforms-data-and-privacy-policy/", - "truste_type": null, - "website_url": "https://districtm.net/" - }, - "distroscale": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "jsrdn.com" - ], - "ghostery_id": "2600", - "iab_vendor": null, - "id": "distroscale", - "name": "Distroscale", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.distroscale.com/" - }, - "div.show": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "div.show" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "div.show", - "name": "div.show", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dmg_media": { - "category": "misc", - "company_id": "dmgt", - "description": null, - "domains": [ - "and.co.uk" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dmg_media", - "name": "DMG Media", - "privacy_url": "https://www.dmgt.com/site-services/privacy-policy", - "truste_type": null, - "website_url": "https://www.dmgmedia.co.uk/" - }, - "dmwd": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "ctret.de" - ], - "ghostery_id": "c_3253", - "iab_vendor": null, - "id": "dmwd", - "name": "DMWD", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "docler": { - "category": "audio_video_player", - "company_id": "docler_ip", - "description": null, - "domains": [ - "awecr.com", - "fwbntw.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "docler", - "name": "Docler", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.doclerholding.com/en/about/companies/33/" - }, - "donationtools": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "donation-tools.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "donationtools", - "name": "iRobinHood", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.irobinhood.org" - }, - "doofinder.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "doofinder.com" - ], - "ghostery_id": "doofinder.com", - "iab_vendor": null, - "id": "doofinder.com", - "name": "doofinder", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.doofinder.com/" - }, - "dotmetrics.net": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "dotmetrics.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dotmetrics.net", - "name": "Dotmetrics", - "privacy_url": null, - "truste_type": null, - "website_url": "https://dotmetrics.net/" - }, - "dotomi": { - "category": "advertising", - "company_id": "conversant", - "description": null, - "domains": [ - "dotomi.com", - "dtmc.com", - "dtmpub.com" - ], - "ghostery_id": "120", - "iab_vendor": null, - "id": "dotomi", - "name": "Dotomi", - "privacy_url": "https://www.conversantmedia.eu/legal/privacy-policy", - "truste_type": null, - "website_url": "http://www.dotomi.com/" - }, - "doubleclick": { - "category": "advertising", - "company_id": "google", - "description": null, - "domains": [ - "2mdn.net", - "doubleclick.net", - "invitemedia.com" - ], - "ghostery_id": "41", - "iab_vendor": null, - "id": "doubleclick", - "name": "DoubleClick", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "http://www.doubleclick.com" - }, - "doublepimp": { - "category": "pornvertising", - "company_id": "doublepimp", - "description": null, - "domains": [ - "doublepimp.com", - "doublepimpssl.com", - "redcourtside.com", - "xeontopa.com", - "zerezas.com" - ], - "ghostery_id": "76", - "iab_vendor": null, - "id": "doublepimp", - "name": "DoublePimp", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.doublepimp.com/" - }, - "doubleverify": { - "category": "advertising", - "company_id": "doubleverify", - "description": null, - "domains": [ - "doubleverify.com" - ], - "ghostery_id": "217", - "iab_vendor": 126, - "id": "doubleverify", - "name": "DoubleVerify", - "privacy_url": "https://www.doubleverify.com/privacy/", - "truste_type": null, - "website_url": "http://www.doubleverify.com/" - }, - "drawbridge": { - "category": "advertising", - "company_id": "drawbridge", - "description": null, - "domains": [ - "adsymptotic.com" - ], - "ghostery_id": "1291", - "iab_vendor": null, - "id": "drawbridge", - "name": "Drawbridge", - "privacy_url": "http://drawbridge.com/privacy", - "truste_type": null, - "website_url": "http://www.drawbrid.ge/" - }, - "dreamlab.pl": { - "category": "advertising", - "company_id": "onet.pl", - "description": null, - "domains": [ - "dreamlab.pl" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dreamlab.pl", - "name": "DreamLab.pl", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.dreamlab.pl/" - }, - "dropbox.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "dropbox.com", - "dropboxstatic.com" - ], - "ghostery_id": "2490", - "iab_vendor": null, - "id": "dropbox.com", - "name": "Dropbox", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.dropbox.com/" - }, - "dsp_rambler": { - "category": "advertising", - "company_id": " a&nn_investments ", - "description": null, - "domains": [ - "dsp-rambler.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dsp_rambler", - "name": "Rambler DSP", - "privacy_url": null, - "truste_type": null, - "website_url": "http://dsp.rambler.ru/" - }, - "dstillery": { - "category": "advertising", - "company_id": "dstillery", - "description": null, - "domains": [ - "m6d.com", - "media6degrees.com" - ], - "ghostery_id": "147", - "iab_vendor": null, - "id": "dstillery", - "name": "Dstillery", - "privacy_url": "https://dstillery.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.media6degrees.com/" - }, - "dtscout.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "dtscout.com" - ], - "ghostery_id": "dtscout.com", - "iab_vendor": null, - "id": "dtscout.com", - "name": "Dtscout", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.dtscout.com/" - }, - "dynadmic": { - "category": "advertising", - "company_id": null, - "description": "DynAdmic, is a marketplace that allows media buyers to purchase premium online video advertising inventory through a proprietary audio recognition technology that targets specific audiences based on the video\u2019s content. ", - "domains": [ - "dyntrk.com" - ], - "ghostery_id": "c_3173", - "iab_vendor": 434, - "id": "dynadmic", - "name": "DynAdmic", - "privacy_url": "http://eu.dynadmic.com/privacy-policy/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": null - }, - "dynamic_1001_gmbh": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "dyntracker.de", - "media01.eu" - ], - "ghostery_id": "c_2789", - "iab_vendor": null, - "id": "dynamic_1001_gmbh", - "name": "Dynamic 1001 GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dynamic_yield": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "dynamicyield.com" - ], - "ghostery_id": "c_2280", - "iab_vendor": null, - "id": "dynamic_yield", - "name": "Dynamic Yield", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "dynatrace.com": { - "category": "site_analytics", - "company_id": "thoma_bravo", - "description": null, - "domains": [ - "dynatrace.com" - ], - "ghostery_id": "c_353", - "iab_vendor": null, - "id": "dynatrace.com", - "name": "Dynatrace", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.dynatrace.com/" - }, - "dyncdn.me": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "dyncdn.me" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "dyncdn.me", - "name": "dyncdn.me", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "eanalyzer.de": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "eanalyzer.de" - ], - "ghostery_id": "eanalyzer.de", - "iab_vendor": null, - "id": "eanalyzer.de", - "name": "eanalyzer.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "early_birds": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "early-birds.fr" - ], - "ghostery_id": "2543", - "iab_vendor": null, - "id": "early_birds", - "name": "Early Birds", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.early-birds.fr/" - }, - "easylist_club": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "easylist.club" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "easylist_club", - "name": "easylist.club", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "ebay": { - "category": "advertising", - "company_id": "ebay_partner_network", - "description": null, - "domains": [ - "classistatic.de", - "ebay-us.com", - "ebay.com", - "ebay.de", - "ebayclassifiedsgroup.com", - "ebaycommercenetwork.com", - "ebaydesc.com", - "ebayimg.com", - "ebayrtm.com", - "ebaystatic.com" - ], - "ghostery_id": "233", - "iab_vendor": null, - "id": "ebay", - "name": "eBay Stats", - "privacy_url": "https://partnernetwork.ebay.com/en/legal#privacy-policy", - "truste_type": null, - "website_url": "https://partnernetwork.ebay.com/" - }, - "econda": { - "category": "site_analytics", - "company_id": "econda", - "description": "Econda is a web-analytics platform offers tailored web-analytics solutions for business model.", - "domains": [ - "econda-monitor.de" - ], - "ghostery_id": "405", - "iab_vendor": null, - "id": "econda", - "name": "Econda", - "privacy_url": " http://www.econda.de/econda/unternehmen/datenschutz/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.econda.de/" - }, - "effective_measure": { - "category": "advertising", - "company_id": "effective_measure", - "description": null, - "domains": [ - "effectivemeasure.net" - ], - "ghostery_id": "534", - "iab_vendor": null, - "id": "effective_measure", - "name": "Effective Measure", - "privacy_url": "http://www.effectivemeasure.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.effectivemeasure.com/" - }, - "effiliation": { - "category": "advertising", - "company_id": "effiliation", - "description": null, - "domains": [ - "effiliation.com" - ], - "ghostery_id": "1843", - "iab_vendor": 402, - "id": "effiliation", - "name": "Effiliation", - "privacy_url": "https://inter.effiliation.com/politique-confidentialite.html", - "truste_type": null, - "website_url": "http://www.effiliation.com/" - }, - "ehi-siegel_de": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "ehi-siegel.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ehi-siegel_de", - "name": "ehi-siegel.de", - "privacy_url": null, - "truste_type": null, - "website_url": "http://ehi-siegel.de/" - }, - "ekomi": { - "category": "comments", - "company_id": "ekomi", - "description": null, - "domains": [ - "ekomi.de" - ], - "ghostery_id": "1655", - "iab_vendor": null, - "id": "ekomi", - "name": "eKomi", - "privacy_url": "http://www.ekomi.co.uk/uk/privacy", - "truste_type": null, - "website_url": "http://www.ekomi.co.uk" - }, - "elastic_ad": { - "category": "advertising", - "company_id": "elastic_ad", - "description": null, - "domains": [ - "elasticad.net" - ], - "ghostery_id": "2250", - "iab_vendor": null, - "id": "elastic_ad", - "name": "Elastic Ad", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "eloqua": { - "category": "advertising", - "company_id": "oracle", - "description": null, - "domains": [ - "eloqua.com", - "en25.com" - ], - "ghostery_id": "166", - "iab_vendor": null, - "id": "eloqua", - "name": "Eloqua", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": null, - "website_url": "http://www.eloqua.com/" - }, - "eluxer_net": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "eluxer.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "eluxer_net", - "name": "eluxer.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "embed.ly": { - "category": "site_analytics", - "company_id": "medium", - "description": null, - "domains": [ - "embed.ly", - "embedly.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "embed.ly", - "name": "Embedly", - "privacy_url": null, - "truste_type": null, - "website_url": "http://embed.ly/" - }, - "emetriq": { - "category": "advertising", - "company_id": "emetriq", - "description": null, - "domains": [ - "emetriq.de" - ], - "ghostery_id": "2300", - "iab_vendor": 213, - "id": "emetriq", - "name": "emetriq", - "privacy_url": "https://www.emetriq.com/datenschutz/", - "truste_type": null, - "website_url": null - }, - "emsmobile.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "emsmobile.de" - ], - "ghostery_id": "emsmobile.de", - "iab_vendor": null, - "id": "emsmobile.de", - "name": "EMS Mobile", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.emsmobile.com/" - }, - "engagio": { - "category": "site_analytics", - "company_id": "engagio", - "description": null, - "domains": [ - "engagio.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "engagio", - "name": "Engagio", - "privacy_url": "https://www.engagio.com/privacy/", - "truste_type": null, - "website_url": "https://www.engagio.com/" - }, - "enreach": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "adtlgc.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "enreach", - "name": "enreach", - "privacy_url": null, - "truste_type": null, - "website_url": "https://enreach.me/" - }, - "ensighten": { - "category": "essential", - "company_id": "ensighten", - "description": "Ensighten provides enterprise tag management solutions that enable businesses manage their websites more effectively.", - "domains": [ - "ensighten.com" - ], - "ghostery_id": "459", - "iab_vendor": null, - "id": "ensighten", - "name": "Ensighten", - "privacy_url": "http://www.ensighten.com/privacy-policy/", - "truste_type": "Tag Management", - "website_url": "http://www.ensighten.com" - }, - "eperflex": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "email-reflex.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "eperflex", - "name": "Eperflex", - "privacy_url": null, - "truste_type": null, - "website_url": "https://eperflex.com/" - }, - "epoq": { - "category": "advertising", - "company_id": "epoq", - "description": null, - "domains": [ - "epoq.de" - ], - "ghostery_id": "1801", - "iab_vendor": null, - "id": "epoq", - "name": "epoq", - "privacy_url": "https://www.epoq.de/en/how-to/data-protection/?", - "truste_type": null, - "website_url": "http://www.epoq.de/" - }, - "eproof": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "eproof.com" - ], - "ghostery_id": "263", - "iab_vendor": null, - "id": "eproof", - "name": "eProof", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.eproof.com/" - }, - "eqs_group": { - "category": "site_analytics", - "company_id": "eqs_group", - "description": null, - "domains": [ - "equitystory.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "eqs_group", - "name": "EQS Group", - "privacy_url": "https://www.eqs.com/home/footer/legals/data-protection/", - "truste_type": null, - "website_url": "https://www.eqs.com/" - }, - "eroadvertising": { - "category": "pornvertising", - "company_id": "ero_advertising", - "description": null, - "domains": [ - "ero-advertising.com", - "eroadvertising.com" - ], - "ghostery_id": "479", - "iab_vendor": null, - "id": "eroadvertising", - "name": "EroAdvertising", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ero-advertising.com/" - }, - "errorception": { - "category": "site_analytics", - "company_id": "errorception", - "description": null, - "domains": [ - "d15qhc0lu1ghnk.cloudfront.net", - "errorception.com" - ], - "ghostery_id": "982", - "iab_vendor": null, - "id": "errorception", - "name": "Errorception", - "privacy_url": "http://errorception.com/privacy", - "truste_type": null, - "website_url": "http://errorception.com/" - }, - "eshopcomp.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "eshopcomp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "eshopcomp.com", - "name": "eshopcomp.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "espn_cdn": { - "category": "cdn", - "company_id": "disney", - "description": null, - "domains": [ - "espncdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "espn_cdn", - "name": "ESPN CDN", - "privacy_url": "https://privacy.thewaltdisneycompany.com/en/", - "truste_type": null, - "website_url": "http://www.espn.com/" - }, - "esprit.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "esprit.de" - ], - "ghostery_id": "esprit.de", - "iab_vendor": null, - "id": "esprit.de", - "name": "esprit.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "estat": { - "category": "site_analytics", - "company_id": "mediametrie", - "description": null, - "domains": [ - "cybermonitor.com", - "estat.com" - ], - "ghostery_id": "311", - "iab_vendor": null, - "id": "estat", - "name": "eStat", - "privacy_url": "http://www.mediametrie.com/pages/privacy-policy.php?page=86", - "truste_type": null, - "website_url": "http://www.mediametrie-estat.com/" - }, - "etahub.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "etahub.com" - ], - "ghostery_id": "etahub.com", - "iab_vendor": null, - "id": "etahub.com", - "name": "etahub.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "etracker": { - "category": "site_analytics", - "company_id": "etracker_gmbh", - "description": "Web analytics and website optimisation solutions for every business model. ", - "domains": [ - "etracker.com", - "etracker.de", - "sedotracker.com" - ], - "ghostery_id": "186", - "iab_vendor": null, - "id": "etracker", - "name": "etracker", - "privacy_url": "https://www.etracker.com/datenschutz/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.etracker.com/en/" - }, - "etsystatic": { - "category": "cdn", - "company_id": "etsy", - "description": null, - "domains": [ - "etsystatic.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "etsystatic", - "name": "Etsy CDN", - "privacy_url": "https://www.etsy.com/legal/privacy/?ref=ftr", - "truste_type": null, - "website_url": "" - }, - "eulerian": { - "category": "site_analytics", - "company_id": "eulerian", - "description": "Eulerian Technologies develops solutions for real-time analysis, automation and optimization of e-marketing operations. ", - "domains": [ - "ew3.io" - ], - "ghostery_id": null, - "iab_vendor": 413, - "id": "eulerian", - "name": "Eulerian Technologies", - "privacy_url": "https://www.eulerian.com/en/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.eulerian.com/" - }, - "evergage.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "evergage.com" - ], - "ghostery_id": "1739", - "iab_vendor": null, - "id": "evergage.com", - "name": "Evergage", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.evergage.com" - }, - "evidon": { - "category": "essential", - "company_id": null, - "description": null, - "domains": [ - "betrad.com", - "evidon.com" - ], - "ghostery_id": "c_242", - "iab_vendor": null, - "id": "evidon", - "name": "Evidon", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "exactag": { - "category": "site_analytics", - "company_id": "exactag", - "description": null, - "domains": [ - "exactag.com" - ], - "ghostery_id": "1680", - "iab_vendor": 312, - "id": "exactag", - "name": "Exactag", - "privacy_url": "https://www.exactag.com/en/data-privacy/", - "truste_type": null, - "website_url": "http://www.exactag.com" - }, - "exelate": { - "category": "advertising", - "company_id": "nielsen", - "description": "eXelate is a data management platform that provides data technology solutions for the digital marketing ecosystem. ", - "domains": [ - "exelator.com" - ], - "ghostery_id": "172", - "iab_vendor": 373, - "id": "exelate", - "name": "eXelate", - "privacy_url": "https://www.nielsen.com/us/en/about-us/privacy.html", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://www.exelate.com/" - }, - "exoclick": { - "category": "pornvertising", - "company_id": "exoclick", - "description": null, - "domains": [ - "exdynsrv.com", - "exoclick.com", - "exosrv.com" - ], - "ghostery_id": "702", - "iab_vendor": null, - "id": "exoclick", - "name": "ExoClick", - "privacy_url": "http://www.exoclick.com/privacy.php", - "truste_type": null, - "website_url": "http://exoclick.com/" - }, - "exoticads.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "exoticads.com" - ], - "ghostery_id": "exoticads.com", - "iab_vendor": null, - "id": "exoticads.com", - "name": "exoticads", - "privacy_url": null, - "truste_type": null, - "website_url": "https://exoticads.com/welcome/" - }, - "expedia": { - "category": "misc", - "company_id": "iac_apps", - "description": null, - "domains": [ - "expedia.com", - "trvl-px.com" - ], - "ghostery_id": "c_510", - "iab_vendor": null, - "id": "expedia", - "name": "Expedia", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.trvl-px.com/" - }, - "experian": { - "category": "misc", - "company_id": "experian_inc", - "description": null, - "domains": [ - "eccmp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "experian", - "name": "Experian", - "privacy_url": "https://www.experian.com/privacy/index.html", - "truste_type": null, - "website_url": "https://www.experian.com/" - }, - "express.co.uk": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "express.co.uk" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "express.co.uk", - "name": "express.co.uk", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.express.co.uk/" - }, - "extreme_tracker": { - "category": "site_analytics", - "company_id": "extreme_digital", - "description": null, - "domains": [ - "extreme-dm.com" - ], - "ghostery_id": "155", - "iab_vendor": null, - "id": "extreme_tracker", - "name": "eXTReMe Tracker", - "privacy_url": "http://extremetracking.com/?policy", - "truste_type": null, - "website_url": "http://www.extremetracking.com/" - }, - "eyeota": { - "category": "advertising", - "company_id": "eyeota", - "description": null, - "domains": [ - "eyeota.net" - ], - "ghostery_id": "1336", - "iab_vendor": 120, - "id": "eyeota", - "name": "Eyeota", - "privacy_url": "https://www.eyeota.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.eyeota.com/" - }, - "eyereturnmarketing": { - "category": "advertising", - "company_id": "torstar_corp", - "description": null, - "domains": [ - "eyereturn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "eyereturnmarketing", - "name": "Eyereturn Marketing", - "privacy_url": "http://notices.torstar.com/privacy-policy/index.html", - "truste_type": null, - "website_url": "https://eyereturnmarketing.com/" - }, - "eyeview": { - "category": "advertising", - "company_id": "eyeview", - "description": null, - "domains": [ - "eyeviewads.com" - ], - "ghostery_id": "1515", - "iab_vendor": null, - "id": "eyeview", - "name": "Eyeview", - "privacy_url": "http://www.eyeviewdigital.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.eyeviewdigital.com/" - }, - "f11-ads.com": { - "category": "advertising", - "company_id": null, - "description": "Factor Eleven implements performance and audience campaigns that meet the highest brand demands. ", - "domains": [ - "f11-ads.com" - ], - "ghostery_id": "f11-ads.com", - "iab_vendor": null, - "id": "f11-ads.com", - "name": "Factor Eleven", - "privacy_url": "http://www.factor-eleven.de/datenschutz/", - "truste_type": "Ad Network", - "website_url": null - }, - "facebook": { - "category": "advertising", - "company_id": "facebook", - "description": null, - "domains": [ - "facebook.com", - "facebook.net" - ], - "ghostery_id": "2491", - "iab_vendor": null, - "id": "facebook", - "name": "Facebook", - "privacy_url": "https://www.facebook.com/full_data_use_policy", - "truste_type": null, - "website_url": "https://www.facebook.com" - }, - "facebook_cdn": { - "category": "cdn", - "company_id": "facebook", - "description": null, - "domains": [ - "fbcdn.net", - "fbsbx.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "facebook_cdn", - "name": "Facebook CDN", - "privacy_url": "https://www.facebook.com/full_data_use_policy", - "truste_type": null, - "website_url": "https://www.facebook.com" - }, - "facetz.dca": { - "category": "site_analytics", - "company_id": "dca", - "description": null, - "domains": [ - "facetz.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "facetz.dca", - "name": "Facetz.DCA", - "privacy_url": null, - "truste_type": null, - "website_url": "http://facetz.net" - }, - "faktor.io": { - "category": "site_analytics", - "company_id": "faktor.io", - "description": null, - "domains": [ - "faktor.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "faktor.io", - "name": "faktor.io", - "privacy_url": "https://faktor.io/privacy-notice/", - "truste_type": null, - "website_url": "https://faktor.io/" - }, - "falk_technologies": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "angsrvr.com" - ], - "ghostery_id": "c_3194", - "iab_vendor": null, - "id": "falk_technologies", - "name": "Falk Technologies", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "fap.to": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "fap.to" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fap.to", - "name": "Imagefap", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "fastly_insights": { - "category": "site_analytics", - "company_id": "fastly", - "description": null, - "domains": [ - "fastly-insights.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fastly_insights", - "name": "Fastly Insights", - "privacy_url": "https://www.fastly.com/privacy", - "truste_type": null, - "website_url": "https://insights.fastlylabs.com/" - }, - "fastlylb.net": { - "category": "cdn", - "company_id": "fastly", - "description": "Fastly\u2019s edge cloud platform powers fast, secure, and scalable digital experiences for the world\u2019s most popular businesses. ", - "domains": [ - "fastly.net", - "fastlylb.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fastlylb.net", - "name": "Fastly", - "privacy_url": "https://www.fastly.com/privacy", - "truste_type": "Service Provider", - "website_url": "https://www.fastly.com/" - }, - "fastpic.ru": { - "category": "hosting", - "company_id": "fastpic", - "description": null, - "domains": [ - "fastpic.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fastpic.ru", - "name": "FastPic", - "privacy_url": null, - "truste_type": null, - "website_url": "http://fastpic.ru/" - }, - "feedbackify": { - "category": "customer_interaction", - "company_id": "feedbackify", - "description": null, - "domains": [ - "feedbackify.com" - ], - "ghostery_id": "1093", - "iab_vendor": null, - "id": "feedbackify", - "name": "Feedbackify", - "privacy_url": "http://www.feedbackify.com/privacy.php", - "truste_type": null, - "website_url": "http://www.feedbackify.com/" - }, - "feedburner.com": { - "category": "advertising", - "company_id": "google", - "description": null, - "domains": [ - "feedburner.com" - ], - "ghostery_id": "34", - "iab_vendor": null, - "id": "feedburner.com", - "name": "FeedBurner", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://feedburner.com" - }, - "fidelity_media": { - "category": "advertising", - "company_id": "fidelity_media", - "description": "Fidelity Media is a managed brand safe advertising network. We strive to help businesses steadily grow by running profitable ad campaigns and monetizing high-quality websites.", - "domains": [ - "fidelity-media.com" - ], - "ghostery_id": "2078", - "iab_vendor": null, - "id": "fidelity_media", - "name": "Fidelity Media", - "privacy_url": "http://fidelity-media.com/about/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://fidelity-media.com/" - }, - "fiksu": { - "category": "advertising", - "company_id": "noosphere", - "description": null, - "domains": [ - "fiksu.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fiksu", - "name": "Fiksu", - "privacy_url": "https://noosphereglobal.com/legal-information/", - "truste_type": null, - "website_url": "https://fiksu.com/" - }, - "fileserve": { - "category": "hosting", - "company_id": "fileserve", - "description": null, - "domains": [ - "fileserve.xyz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fileserve", - "name": "FileServe", - "privacy_url": null, - "truste_type": null, - "website_url": "http://fileserve.com/" - }, - "findizer.fr": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "findizer.fr" - ], - "ghostery_id": "findizer.fr", - "iab_vendor": null, - "id": "findizer.fr", - "name": "Findizer", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.findizer.fr/" - }, - "findologic.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "findologic.com" - ], - "ghostery_id": "findologic.com", - "iab_vendor": null, - "id": "findologic.com", - "name": "Findologic", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.findologic.com/" - }, - "firebaseio.com": { - "category": "misc", - "company_id": "google", - "description": null, - "domains": [ - "firebaseio.com" - ], - "ghostery_id": "firebaseio.com", - "iab_vendor": null, - "id": "firebaseio.com", - "name": "Firebase", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://firebase.google.com/" - }, - "first_impression": { - "category": "advertising", - "company_id": "first_impression", - "description": null, - "domains": [ - "firstimpression.io" - ], - "ghostery_id": "2249", - "iab_vendor": null, - "id": "first_impression", - "name": "First Impression", - "privacy_url": "https://admin.firstimpression.io/privacy-policy.php", - "truste_type": null, - "website_url": null - }, - "fit_analytics": { - "category": "site_analytics", - "company_id": "fit_analytics", - "description": null, - "domains": [ - "fitanalytics.com" - ], - "ghostery_id": "2693", - "iab_vendor": null, - "id": "fit_analytics", - "name": "Fit Analytics", - "privacy_url": "http://www.fitanalytics.com/files/Privacy_Policy_DE-EN_FitA.pdf", - "truste_type": null, - "website_url": null - }, - "fivetran": { - "category": "site_analytics", - "company_id": "fivetran", - "description": null, - "domains": [ - "fivetran.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fivetran", - "name": "Fivetran", - "privacy_url": "https://fivetran.com/privacy", - "truste_type": null, - "website_url": "https://fivetran.com/" - }, - "flag_counter": { - "category": "advertising", - "company_id": "flag_counter", - "description": null, - "domains": [ - "flagcounter.com" - ], - "ghostery_id": "1153", - "iab_vendor": null, - "id": "flag_counter", - "name": "Flag Counter", - "privacy_url": "http://flagcounter.com/privacy.html", - "truste_type": null, - "website_url": "http://flagcounter.com/" - }, - "flashtalking": { - "category": "advertising", - "company_id": "flashtalking", - "description": null, - "domains": [ - "flashtalking.com" - ], - "ghostery_id": "495", - "iab_vendor": 78, - "id": "flashtalking", - "name": "Flashtalking", - "privacy_url": "http://www.flashtalking.com/privacypolicy/", - "truste_type": null, - "website_url": "http://www.flashtalking.com/" - }, - "flattr_button": { - "category": "social_media", - "company_id": "flattr", - "description": null, - "domains": [ - "flattr.com" - ], - "ghostery_id": "908", - "iab_vendor": null, - "id": "flattr_button", - "name": "Flattr Button", - "privacy_url": "http://flattr.com/privacy", - "truste_type": null, - "website_url": "http://flattr.com/" - }, - "flickr_badge": { - "category": "social_media", - "company_id": "verizon", - "description": null, - "domains": [ - "flickr.com", - "staticflickr.com" - ], - "ghostery_id": "1928", - "iab_vendor": null, - "id": "flickr_badge", - "name": "Flickr", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.flickr.com/" - }, - "flipboard": { - "category": "site_analytics", - "company_id": "flipboard", - "description": null, - "domains": [ - "lflipboard.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "flipboard", - "name": "Flipboard", - "privacy_url": "https://about.flipboard.com/privacy/?noredirect=en_US", - "truste_type": null, - "website_url": "http://www.flipboard.com/" - }, - "flixcdn.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "flixcdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "flixcdn.com", - "name": "flixcdn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "flixmedia": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "flix360.com" - ], - "ghostery_id": "c_3256", - "iab_vendor": null, - "id": "flixmedia", - "name": "Flixmedia", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "flocktory.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "flocktory.com" - ], - "ghostery_id": "2761", - "iab_vendor": null, - "id": "flocktory.com", - "name": "Flocktory", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.flocktory.com/" - }, - "flowplayer": { - "category": "advertising", - "company_id": "flowplayer", - "description": null, - "domains": [ - "flowplayer.org" - ], - "ghostery_id": "2889", - "iab_vendor": null, - "id": "flowplayer", - "name": "Flowplayer", - "privacy_url": "https://flowplayer.org/about/privacy-policy.html", - "truste_type": null, - "website_url": null - }, - "fluct": { - "category": "advertising", - "company_id": null, - "description": "fluct is a leading solution company for full support of monetization of internet media traffic. ", - "domains": [ - "adingo.jp" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fluct", - "name": "Fluct", - "privacy_url": "https://corp.fluct.jp/privacy/", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "https://corp.fluct.jp/" - }, - "flxone": { - "category": "advertising", - "company_id": "flxone", - "description": null, - "domains": [ - "flx1.com", - "flxpxl.com" - ], - "ghostery_id": "1667", - "iab_vendor": null, - "id": "flxone", - "name": "FLXONE", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.flxone.com/" - }, - "fontawesome_com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "fontawesome.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fontawesome_com", - "name": "fontawesome.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://fontawesome.com/" - }, - "footprintdns.com": { - "category": "unknown", - "company_id": "microsoft", - "description": null, - "domains": [ - "footprintdns.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "footprintdns.com", - "name": "Footprint DNS", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "forensiq": { - "category": "advertising", - "company_id": "impact", - "description": null, - "domains": [ - "fqtag.com", - "securepaths.com" - ], - "ghostery_id": "1380", - "iab_vendor": 365, - "id": "forensiq", - "name": "Forensiq", - "privacy_url": "https://impact.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.cpadetective.com/" - }, - "foresee": { - "category": "site_analytics", - "company_id": "answers.com", - "description": "ForeSee is the pioneering leader in Voice of Customer (VOC) solutions, offering the only patented and systematic approach to CX measurement. ", - "domains": [ - "foresee.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "foresee", - "name": "Foresee", - "privacy_url": "http://wiki.answers.com/about/legal_notices.html#privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.foresee.com/" - }, - "forter": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "forter.com" - ], - "ghostery_id": "3200", - "iab_vendor": null, - "id": "forter", - "name": "Forter", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.forter.com/" - }, - "fortlachanhecksof.info": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "fortlachanhecksof.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fortlachanhecksof.info", - "name": "fortlachanhecksof.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "fout.jp": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "fout.jp" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fout.jp", - "name": "FreakOut", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.fout.co.jp/" - }, - "foxnews_static": { - "category": "cdn", - "company_id": "fox_news", - "description": null, - "domains": [ - "fncstatic.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "foxnews_static", - "name": "Fox News CDN", - "privacy_url": "http://www.foxnews.com/privacy-policy.html", - "truste_type": null, - "website_url": "" - }, - "foxydeal_com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "foxydeal.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "foxydeal_com", - "name": "foxydeal.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.foxydeal.de" - }, - "fraudlogix": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "yabidos.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fraudlogix", - "name": "FraudLogix", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.fraudlogix.com/" - }, - "freedom_mortgage": { - "category": "site_analytics", - "company_id": "freedom_mortgage", - "description": null, - "domains": [ - "freedom.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "freedom_mortgage", - "name": "Freedom Mortgage", - "privacy_url": "https://www.freedommortgage.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.freedommortgage.com/" - }, - "freegeoip_net": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "freegeoip.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "freegeoip_net", - "name": "freegeoip.net", - "privacy_url": null, - "truste_type": null, - "website_url": "http://freegeoip.net/" - }, - "freenet_de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "freenet.de", - "freent.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "freenet_de", - "name": "freenet.de", - "privacy_url": null, - "truste_type": null, - "website_url": "http://freenet.de/" - }, - "freewheel": { - "category": "audio_video_player", - "company_id": "comcast", - "description": null, - "domains": [ - "fwmrm.net" - ], - "ghostery_id": "380", - "iab_vendor": 285, - "id": "freewheel", - "name": "FreeWheel", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.freewheel.tv/" - }, - "freshdesk": { - "category": "customer_interaction", - "company_id": "freshdesk", - "description": null, - "domains": [ - "d36mpcpuzc4ztk.cloudfront.net", - "freshdesk.com" - ], - "ghostery_id": "1092", - "iab_vendor": null, - "id": "freshdesk", - "name": "Freshdesk", - "privacy_url": "https://freshdesk.com/privacy", - "truste_type": null, - "website_url": "http://www.freshdesk.com" - }, - "friendfinder_network": { - "category": "pornvertising", - "company_id": "friendfinder_networks", - "description": null, - "domains": [ - "adultfriendfinder.com", - "amigos.com", - "board-books.com", - "cams.com", - "facebookofsex.com", - "getiton.com", - "nostringsattached.com", - "pop6.com", - "streamray.com" - ], - "ghostery_id": "600", - "iab_vendor": null, - "id": "friendfinder_network", - "name": "FriendFinder Network", - "privacy_url": "http://www.ffn.com/privacypolicy", - "truste_type": null, - "website_url": "http://www.ffn.com/" - }, - "fstrk.net": { - "category": "site_analytics", - "company_id": "24metrics", - "description": null, - "domains": [ - "fstrk.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "fstrk.net", - "name": "24metrics Fraudshield", - "privacy_url": null, - "truste_type": null, - "website_url": "https://24metrics.com/" - }, - "fullstory": { - "category": "site_analytics", - "company_id": "fullstory", - "description": null, - "domains": [ - "fullstory.com" - ], - "ghostery_id": "2372", - "iab_vendor": null, - "id": "fullstory", - "name": "FullStory", - "privacy_url": "https://www.fullstory.com/legal/privacy/", - "truste_type": null, - "website_url": null - }, - "fyber": { - "category": "advertising", - "company_id": "fyber", - "description": "Fyber is a mobile advertising technology company that empowers app developers to execute smart ad monetization strategies across all connected devices through a unified mobile Supply-Side Platform. ", - "domains": [ - "fyber.com" - ], - "ghostery_id": "3090", - "iab_vendor": 262, - "id": "fyber", - "name": "Fyber", - "privacy_url": "https://www.fyber.com/legal/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "https://www.fyber.com/" - }, - "gamedistribution.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "gamedistribution.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "gamedistribution.com", - "name": "Gamedistribution.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://gamedistribution.com/" - }, - "gannett": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "gannett-cdn.com" - ], - "ghostery_id": "2558", - "iab_vendor": null, - "id": "gannett", - "name": "Gannett Media", - "privacy_url": null, - "truste_type": null, - "website_url": " https://www.gannett.com/" - }, - "gdm_digital": { - "category": "advertising", - "company_id": "ve_interactive__formely_gdm_digital_", - "description": "GDM Digital is a true full service RTB specialist, providing a one stop shop for all your RTB services. ", - "domains": [ - "gdmdigital.com" - ], - "ghostery_id": "2137", - "iab_vendor": null, - "id": "gdm_digital", - "name": "GDM Digital", - "privacy_url": " https://www.veinteractive.com/us/about-us/contact-us/", - "truste_type": "Ad Exchange", - "website_url": "http://www.gdmdigital.com/" - }, - "gemius": { - "category": "advertising", - "company_id": "gemius_sa", - "description": null, - "domains": [ - "gemius.pl" - ], - "ghostery_id": "313", - "iab_vendor": 328, - "id": "gemius", - "name": "Gemius", - "privacy_url": "https://www.gemius.com/cookie-policy.html", - "truste_type": null, - "website_url": "http://www.gemius.com" - }, - "generaltracking_de": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "generaltracking.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "generaltracking_de", - "name": "generaltracking.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "geniee": { - "category": "advertising", - "company_id": null, - "description": "Geniee will maximize the revenue of the customer in the state-of-the-art advertising technology. ", - "domains": [ - "gssprt.jp" - ], - "ghostery_id": "2346", - "iab_vendor": null, - "id": "geniee", - "name": "GENIEE", - "privacy_url": "https://geniee.co.jp/privacy/", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "http://geniee.co.jp/" - }, - "geotrust": { - "category": "essential", - "company_id": "geotrust", - "description": null, - "domains": [ - "geotrust.com" - ], - "ghostery_id": "2109", - "iab_vendor": null, - "id": "geotrust", - "name": "GeoTrust", - "privacy_url": "https://www.geotrust.com/about/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.geotrust.com/" - }, - "get_site_control": { - "category": "advertising", - "company_id": "getsitecontrol", - "description": null, - "domains": [ - "getsitecontrol.com" - ], - "ghostery_id": "2872", - "iab_vendor": null, - "id": "get_site_control", - "name": "Get Site Control", - "privacy_url": "https://getsitecontrol.com/privacy/", - "truste_type": null, - "website_url": null - }, - "getintent": { - "category": "advertising", - "company_id": "getintent", - "description": null, - "domains": [ - "adhigh.net" - ], - "ghostery_id": "2004", - "iab_vendor": null, - "id": "getintent", - "name": "GetIntent", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.getintent.com/" - }, - "gettyimages": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "gettyimages.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "gettyimages", - "name": "Getty Images", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.gettyimages.com/" - }, - "gfk": { - "category": "advertising", - "company_id": "gfk_nurago", - "description": null, - "domains": [ - "sensic.net" - ], - "ghostery_id": "753", - "iab_vendor": null, - "id": "gfk", - "name": "GfK", - "privacy_url": "http://www.gfk.com/Pages/Privacy.aspx", - "truste_type": null, - "website_url": "http://nurago.com/" - }, - "gfycat.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "gfycat.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "gfycat.com", - "name": "gfycat", - "privacy_url": null, - "truste_type": null, - "website_url": "https://gfycat.com/" - }, - "giantmedia": { - "category": "advertising", - "company_id": "adknowledge", - "description": null, - "domains": [ - "videostat.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "giantmedia", - "name": "GiantMedia", - "privacy_url": null, - "truste_type": null, - "website_url": "http://giantmedia.com/" - }, - "gigya": { - "category": "site_analytics", - "company_id": "gigya", - "description": "Gigya is Software as a Service (SaaS) technology that makes websites social, integrating online businesses with the top social networks and identity providers including Facebook, Twitter and LinkedIn. ", - "domains": [ - "gigya.com" - ], - "ghostery_id": "2746", - "iab_vendor": null, - "id": "gigya", - "name": "Gigya", - "privacy_url": "http://www.gigya.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": null - }, - "giphy.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "giphy.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "giphy.com", - "name": "Giphy", - "privacy_url": null, - "truste_type": null, - "website_url": "https://giphy.com/" - }, - "giraff.io": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "giraff.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "giraff.io", - "name": "Giraff.io", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.giraff.io/" - }, - "github": { - "category": "customer_interaction", - "company_id": "github", - "description": null, - "domains": [ - "github.com", - "githubassets.com", - "githubusercontent.com" - ], - "ghostery_id": "c_1618", - "iab_vendor": null, - "id": "github", - "name": "GitHub", - "privacy_url": "https://help.github.com/articles/github-privacy-statement/", - "truste_type": null, - "website_url": null - }, - "github_apps": { - "category": "customer_interaction", - "company_id": "github", - "description": null, - "domains": [ - "githubapp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "github_apps", - "name": "GitHub Apps", - "privacy_url": "https://help.github.com/articles/github-privacy-statement/", - "truste_type": null, - "website_url": null - }, - "github_pages": { - "category": "hosting", - "company_id": "github", - "description": null, - "domains": [ - "github.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "github_pages", - "name": "Github Pages", - "privacy_url": "https://help.github.com/articles/github-privacy-statement/", - "truste_type": null, - "website_url": "https://pages.github.com/" - }, - "glganltcs.space": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "glganltcs.space" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "glganltcs.space", - "name": "glganltcs.space", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "global_web_index": { - "category": "site_analytics", - "company_id": "global_web_index", - "description": null, - "domains": [ - "globalwebindex.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "global_web_index", - "name": "GlobalWebIndex", - "privacy_url": "https://www.globalwebindex.com/privacy", - "truste_type": null, - "website_url": "https://www.globalwebindex.com/" - }, - "globalnotifier.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "globalnotifier.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "globalnotifier.com", - "name": "globalnotifier.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "globalsign": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "globalsign.com" - ], - "ghostery_id": "c_2400", - "iab_vendor": null, - "id": "globalsign", - "name": "GlobalSign", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "glomex.com": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "glomex.cloud", - "glomex.com" - ], - "ghostery_id": "glomex.com", - "iab_vendor": null, - "id": "glomex.com", - "name": "Glomex", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.glomex.com/" - }, - "glotgrx.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "glotgrx.com" - ], - "ghostery_id": "glotgrx.com", - "iab_vendor": null, - "id": "glotgrx.com", - "name": "glotgrx.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "gmx_net": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "gmx.net", - "gmxpro.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "gmx_net", - "name": "gmx.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "go.com": { - "category": "misc", - "company_id": "disney", - "description": null, - "domains": [ - "go.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "go.com", - "name": "go.com", - "privacy_url": "https://privacy.thewaltdisneycompany.com/en/", - "truste_type": null, - "website_url": "go.com" - }, - "google": { - "category": "advertising", - "company_id": "google", - "description": null, - "domains": [ - "google.at", - "google.be", - "google.ca", - "google.ch", - "google.co.id", - "google.co.in", - "google.co.jp", - "google.co.ma", - "google.co.th", - "google.co.uk", - "google.com", - "google.com.ar", - "google.com.au", - "google.com.br", - "google.com.mx", - "google.com.tr", - "google.com.tw", - "google.com.ua", - "google.cz", - "google.de", - "google.dk", - "google.dz", - "google.es", - "google.fi", - "google.fr", - "google.gr", - "google.hu", - "google.ie", - "google.it", - "google.nl", - "google.no", - "google.pl", - "google.pt", - "google.ro", - "google.rs", - "google.ru", - "google.se", - "google.tn" - ], - "ghostery_id": "c_82", - "iab_vendor": null, - "id": "google", - "name": "Google", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://www.google.com/" - }, - "google_adservices": { - "category": "advertising", - "company_id": "google", - "description": null, - "domains": [ - "googleadservices.com" - ], - "ghostery_id": "2276", - "iab_vendor": null, - "id": "google_adservices", - "name": "Google AdServices", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "google_analytics": { - "category": "site_analytics", - "company_id": "google", - "description": null, - "domains": [ - "google-analytics.com" - ], - "ghostery_id": "13", - "iab_vendor": null, - "id": "google_analytics", - "name": "Google Analytics", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "http://www.google.com/analytics/" - }, - "google_appspot": { - "category": "hosting", - "company_id": "google", - "description": null, - "domains": [ - "appspot.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "google_appspot", - "name": "Google Appspot", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "google_custom_search": { - "category": "advertising", - "company_id": "google", - "description": null, - "domains": [ - "adsensecustomsearchads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "google_custom_search", - "name": "Google Custom Search Ads", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://developers.google.com/custom-search-ads/" - }, - "google_fonts": { - "category": "cdn", - "company_id": "google", - "description": null, - "domains": [ - "fonts.googleapis.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "google_fonts", - "name": "Google Fonts", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://fonts.google.com/" - }, - "google_photos": { - "category": "cdn", - "company_id": "google", - "description": null, - "domains": [ - "ggpht.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "google_photos", - "name": "Google Photos", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://photos.google.com/" - }, - "google_servers": { - "category": "misc", - "company_id": "google", - "description": null, - "domains": [ - "1e100cdn.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "google_servers", - "name": "Google Servers", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://support.google.com/faqs/answer/174717?hl=en" - }, - "google_syndication": { - "category": "advertising", - "company_id": "google", - "description": null, - "domains": [ - "googlesyndication.com" - ], - "ghostery_id": "2277", - "iab_vendor": null, - "id": "google_syndication", - "name": "Google Syndication", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "google_tag_manager": { - "category": "essential", - "company_id": "google", - "description": null, - "domains": [ - "googletagmanager.com", - "googletagservices.com" - ], - "ghostery_id": "1283", - "iab_vendor": null, - "id": "google_tag_manager", - "name": "Google Tag Manager", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://marketingplatform.google.com/about/tag-manager/" - }, - "google_trusted_stores": { - "category": "site_analytics", - "company_id": "google", - "description": null, - "domains": [ - "googlecommerce.com" - ], - "ghostery_id": "2968", - "iab_vendor": null, - "id": "google_trusted_stores", - "name": "Google Shopping", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "google_users": { - "category": "cdn", - "company_id": "google", - "description": null, - "domains": [ - "googleusercontent.com" - ], - "ghostery_id": "2333", - "iab_vendor": null, - "id": "google_users", - "name": "Google User Content", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "googleapis.com": { - "category": "cdn", - "company_id": "google", - "description": null, - "domains": [ - "googleapis.com" - ], - "ghostery_id": "googleapis.com", - "iab_vendor": null, - "id": "googleapis.com", - "name": "Google APIs", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": "https://www.googleapis.com/" - }, - "grandslammedia": { - "category": "advertising", - "company_id": "grand_slam_media", - "description": null, - "domains": [ - "trw12.com", - "tuberewards.com" - ], - "ghostery_id": "1519", - "iab_vendor": null, - "id": "grandslammedia", - "name": "GrandSlamMedia", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.grandslammedia.com/" - }, - "grapeshot": { - "category": "advertising", - "company_id": "oracle", - "description": "Grapeshot uses Advanced Keyword Technology to segment advertising inventory, which improves campaign targeting, reducing wasted impressions ", - "domains": [ - "grapeshot.co.uk", - "gscontxt.net" - ], - "ghostery_id": "745", - "iab_vendor": null, - "id": "grapeshot", - "name": "Grapeshot", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": "Ad Platform", - "website_url": "https://www.grapeshot.com/" - }, - "gravatar": { - "category": "social_media", - "company_id": "automattic", - "description": null, - "domains": [ - "gravatar.com" - ], - "ghostery_id": "1773", - "iab_vendor": null, - "id": "gravatar", - "name": "Gravatar", - "privacy_url": "https://automattic.com/privacy/", - "truste_type": null, - "website_url": "http://en.gravatar.com/" - }, - "gravity_insights": { - "category": "site_analytics", - "company_id": "gravity", - "description": null, - "domains": [ - "gravity.com", - "grvcdn.com" - ], - "ghostery_id": "782", - "iab_vendor": null, - "id": "gravity_insights", - "name": "Gravity Insights", - "privacy_url": "http://privacy.aol.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.gravity.com/" - }, - "greatviews.de": { - "category": "advertising", - "company_id": "parship", - "description": null, - "domains": [ - "greatviews.de" - ], - "ghostery_id": "greatviews.de", - "iab_vendor": null, - "id": "greatviews.de", - "name": "GreatViews", - "privacy_url": null, - "truste_type": null, - "website_url": "http://greatviews.de/" - }, - "greentube.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "greentube.com", - "gt-cdn.net" - ], - "ghostery_id": "greentube.com", - "iab_vendor": null, - "id": "greentube.com", - "name": "Greentube Internet Entertainment Solutions", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.greentube.com/" - }, - "groovinads": { - "category": "advertising", - "company_id": "groovinads", - "description": null, - "domains": [ - "groovinads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "groovinads", - "name": "GroovinAds", - "privacy_url": "http://www.groovinads.com/en#contact", - "truste_type": null, - "website_url": "http://www.groovinads.com/en" - }, - "groundtruth": { - "category": "advertising", - "company_id": "groundtruth", - "description": null, - "domains": [ - "bidagent.xad.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "groundtruth", - "name": "GroundTruth", - "privacy_url": "https://www.groundtruth.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.groundtruth.com/" - }, - "groupm_server": { - "category": "advertising", - "company_id": "groupm", - "description": null, - "domains": [ - "gmads.net", - "grmtech.net" - ], - "ghostery_id": "456", - "iab_vendor": 98, - "id": "groupm_server", - "name": "GroupM Server", - "privacy_url": "https://www.groupm.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.groupm.com/" - }, - "gstatic": { - "category": "cdn", - "company_id": "google", - "description": null, - "domains": [ - "gstatic.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "gstatic", - "name": "Google Static", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": null, - "website_url": null - }, - "guj.de": { - "category": "advertising", - "company_id": "gruner_jahr_ag", - "description": null, - "domains": [ - "guj.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "guj.de", - "name": "Gruner + Jahr", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.guj.de/" - }, - "gujems": { - "category": "advertising", - "company_id": "gruner_jahr_ag", - "description": null, - "domains": [ - "emsservice.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "gujems", - "name": "G+J e|MS", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.gujmedia.de/" - }, - "gumgum": { - "category": "advertising", - "company_id": "gumgum", - "description": null, - "domains": [ - "gumgum.com" - ], - "ghostery_id": "95", - "iab_vendor": 61, - "id": "gumgum", - "name": "gumgum", - "privacy_url": "https://gumgum.com/privacy-policy", - "truste_type": null, - "website_url": "http://gumgum.com/" - }, - "haendlerbund.de": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "haendlerbund.de" - ], - "ghostery_id": "haendlerbund.de", - "iab_vendor": null, - "id": "haendlerbund.de", - "name": "H\u00e4ndlerbund", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.haendlerbund.de/en" - }, - "healte.de": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "healte.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "healte.de", - "name": "healte.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "heap": { - "category": "site_analytics", - "company_id": "heap", - "description": null, - "domains": [ - "d36lvucg9kzous.cloudfront.net", - "heapanalytics.com" - ], - "ghostery_id": "1648", - "iab_vendor": null, - "id": "heap", - "name": "Heap", - "privacy_url": "https://heapanalytics.com/privacy", - "truste_type": null, - "website_url": "https://heapanalytics.com/" - }, - "heatmap": { - "category": "advertising", - "company_id": "heatmap", - "description": "Real-time Analytics. Discover how users interact with your pages right now.", - "domains": [ - "heatmap.it" - ], - "ghostery_id": "2157", - "iab_vendor": null, - "id": "heatmap", - "name": "Heatmap", - "privacy_url": "https://heatmap.me/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://heatmap.me/" - }, - "heimspiel": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "weltsport.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "heimspiel", - "name": "HEIM:SPIEL Medien GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.heimspiel.de" - }, - "here__formerly_navteq_media_solutions_": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "here.com" - ], - "ghostery_id": "c_449", - "iab_vendor": null, - "id": "here__formerly_navteq_media_solutions_", - "name": "HERE (formerly Navteq Media Solutions)", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "heroku": { - "category": "hosting", - "company_id": null, - "description": null, - "domains": [ - "herokuapp.com" - ], - "ghostery_id": "c_3374", - "iab_vendor": null, - "id": "heroku", - "name": "Heroku", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "hi-media_performance": { - "category": "advertising", - "company_id": "hi-media_performance", - "description": null, - "domains": [ - "adlink.net", - "comclick.com", - "hi-mediaserver.com", - "himediads.com", - "himediadx.com" - ], - "ghostery_id": "715", - "iab_vendor": null, - "id": "hi-media_performance", - "name": "Hi-Media Performance", - "privacy_url": "http://www.hi-mediaperformance.co.uk/en_GB/index/informations-legales/optout", - "truste_type": null, - "website_url": "http://www.hi-mediaperformance.co.uk/" - }, - "highwebmedia.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "highwebmedia.com" - ], - "ghostery_id": "highwebmedia.com", - "iab_vendor": null, - "id": "highwebmedia.com", - "name": "highwebmedia.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "highwinds": { - "category": "site_analytics", - "company_id": "highwinds", - "description": null, - "domains": [ - "hwcdn.net" - ], - "ghostery_id": "2610", - "iab_vendor": null, - "id": "highwinds", - "name": "Highwinds", - "privacy_url": "https://www.highwinds.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "histats": { - "category": "advertising", - "company_id": "histats", - "description": "Website analytics company. ", - "domains": [ - "histats.com" - ], - "ghostery_id": "251", - "iab_vendor": null, - "id": "histats", - "name": "Histats", - "privacy_url": "http://www.histats.com/?act=5", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.histats.com/" - }, - "hivedx.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "hivedx.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hivedx.com", - "name": "hiveDX", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.hivedx.com/" - }, - "hoholikik.club": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "hoholikik.club" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hoholikik.club", - "name": "hoholikik.club", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "hola_player": { - "category": "audio_video_player", - "company_id": "hola_cdn", - "description": null, - "domains": [ - "h-cdn.com" - ], - "ghostery_id": "2937", - "iab_vendor": null, - "id": "hola_player", - "name": "Hola Player", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "homeaway": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "homeaway.com" - ], - "ghostery_id": "c_2665", - "iab_vendor": null, - "id": "homeaway", - "name": "HomeAway", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "hooklogic": { - "category": "advertising", - "company_id": "criteo", - "description": null, - "domains": [ - "hlserve.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hooklogic", - "name": "HookLogic", - "privacy_url": "https://www.criteo.com/privacy/", - "truste_type": null, - "website_url": "http://hooklogic.com/" - }, - "hotdogsandads.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "hotdogsandads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hotdogsandads.com", - "name": "hotdogsandads.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "hotjar": { - "category": "site_analytics", - "company_id": "hotjar", - "description": null, - "domains": [ - "hotjar.com" - ], - "ghostery_id": "2199", - "iab_vendor": null, - "id": "hotjar", - "name": "Hotjar", - "privacy_url": "http://www.hotjar.com/privacy", - "truste_type": null, - "website_url": "http://www.hotjar.com/" - }, - "hotlog.ru": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "hotlog.ru" - ], - "ghostery_id": "591", - "iab_vendor": null, - "id": "hotlog.ru", - "name": "HotLog", - "privacy_url": null, - "truste_type": null, - "website_url": "https://hotlog.ru/" - }, - "howtank.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "howtank.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "howtank.com", - "name": "howtank", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.howtank.com/" - }, - "hqentertainmentnetwork.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "hqentertainmentnetwork.com", - "justservingfiles.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hqentertainmentnetwork.com", - "name": "HQ Entertainment Network", - "privacy_url": null, - "truste_type": null, - "website_url": "https://hqentertainmentnetwork.com/" - }, - "hsleadflows.net": { - "category": "site_analytics", - "company_id": "hubspot", - "description": null, - "domains": [ - "hsleadflows.net" - ], - "ghostery_id": "2663", - "iab_vendor": null, - "id": "hsleadflows.net", - "name": "Leadin", - "privacy_url": "https://legal.hubspot.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.hubspot.com/" - }, - "hstrck.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "hstrck.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hstrck.com", - "name": "HEIM:SPIEL Medien GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.heimspiel.de/" - }, - "hubspot": { - "category": "advertising", - "company_id": "hubspot", - "description": null, - "domains": [ - "hs-analytics.net", - "hs-scripts.com", - "hubapi.com", - "hubspot.com" - ], - "ghostery_id": "26", - "iab_vendor": null, - "id": "hubspot", - "name": "HubSpot", - "privacy_url": "https://legal.hubspot.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.hubspot.com/" - }, - "hubvisor.io": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "hubvisor.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hubvisor.io", - "name": "Hubvisor", - "privacy_url": null, - "truste_type": null, - "website_url": "https://hubvisor.io/" - }, - "hurra_tracker": { - "category": "advertising", - "company_id": "hurra_communications", - "description": null, - "domains": [ - "hurra.com" - ], - "ghostery_id": "580", - "iab_vendor": null, - "id": "hurra_tracker", - "name": "Hurra Tracker", - "privacy_url": "http://www.hurra.com/EN/privacy-policy", - "truste_type": null, - "website_url": "http://www.hurra.com/en/" - }, - "hybrid.ai": { - "category": "advertising", - "company_id": "hybrid_adtech", - "description": null, - "domains": [ - "hybrid.ai", - "targetix.net" - ], - "ghostery_id": null, - "iab_vendor": 206, - "id": "hybrid.ai", - "name": "Hybrid.ai", - "privacy_url": "https://hybrid.ai/data_protection_policy", - "truste_type": null, - "website_url": "https://hybrid.ai/" - }, - "hyvyd": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "hyvyd.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "hyvyd", - "name": "Hyvyd GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "i-behavior": { - "category": "advertising", - "company_id": "kbm_group", - "description": "I-Behavior provides consumer and business transaction data that helps multi-channel merchants invest marketing dollars more effectively. With I-Behavior intelligence, your online and direct advertising campaigns reach the individuals who are most likely to purchase your products and services, as determined by the most reliable predictive information possible - their past buying behavior. ", - "domains": [ - "ib-ibi.com" - ], - "ghostery_id": "727", - "iab_vendor": null, - "id": "i-behavior", - "name": "i-Behavior", - "privacy_url": "https://www.i-behavior.com/interactive-marketing/privacy-policydata-security-qa/", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://www.i-behavior.com/" - }, - "i-mobile": { - "category": "advertising", - "company_id": "i-mobile", - "description": null, - "domains": [ - "i-mobile.co.jp" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "i-mobile", - "name": "i-mobile", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www2.i-mobile.co.jp/en/index.aspx" - }, - "i10c.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "i10c.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "i10c.net", - "name": "i10c.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "iab_consent": { - "category": "essential", - "company_id": "iab", - "description": null, - "domains": [ - "consensu.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "iab_consent", - "name": "IAB Consent", - "privacy_url": "https://www.iab.com/privacy-policy/", - "truste_type": null, - "website_url": "https://iabtechlab.com/standards/gdpr-transparency-and-consent-framework/" - }, - "iadvize": { - "category": "customer_interaction", - "company_id": "iadvize", - "description": null, - "domains": [ - "iadvize.com" - ], - "ghostery_id": "1216", - "iab_vendor": null, - "id": "iadvize", - "name": "iAdvize", - "privacy_url": "http://www.iadvize.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.iadvize.com/" - }, - "ibm_customer_experience": { - "category": "site_analytics", - "company_id": "ibm", - "description": null, - "domains": [ - "cmcore.com", - "coremetrics.com" - ], - "ghostery_id": "163", - "iab_vendor": null, - "id": "ibm_customer_experience", - "name": "IBM Customer Experience", - "privacy_url": "https://www.ibm.com/privacy/details/us/en/", - "truste_type": null, - "website_url": "http://www.coremetrics.com/" - }, - "icf_technology": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "nsimg.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "icf_technology", - "name": "ICF Technology", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.icftechnology.com/" - }, - "icuazeczpeoohx.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "icuazeczpeoohx.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "icuazeczpeoohx.com", - "name": "icuazeczpeoohx.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "id-news.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "id-news.net", - "idcdn.de" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "id-news.net", - "name": "Ippen Digital", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ippen-digital.de/" - }, - "idealo_com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "idealo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "idealo_com", - "name": "idealo.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://idealo.com/" - }, - "ie8eamus.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "ie8eamus.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ie8eamus.com", - "name": "ie8eamus.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "igodigital": { - "category": "customer_interaction", - "company_id": "igodigital", - "description": null, - "domains": [ - "igodigital.com" - ], - "ghostery_id": "1334", - "iab_vendor": null, - "id": "igodigital", - "name": "iGoDigital", - "privacy_url": "http://www.igodigital.com/privacy", - "truste_type": null, - "website_url": "http://igodigital.com/" - }, - "ihs_markit": { - "category": "site_analytics", - "company_id": "ihs", - "description": null, - "domains": [ - "ad.wsod.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ihs_markit", - "name": "IHS Markit", - "privacy_url": "https://ihsmarkit.com/Legal/privacy.html", - "truste_type": null, - "website_url": "https://ihsmarkit.com/index.html" - }, - "ihvmcqojoj.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "ihvmcqojoj.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ihvmcqojoj.com", - "name": "ihvmcqojoj.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "iias.eu": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "iias.eu" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "iias.eu", - "name": "Insight Image", - "privacy_url": null, - "truste_type": null, - "website_url": "http://insightimage.com/" - }, - "imgix.net": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "imgix.net" - ], - "ghostery_id": "imgix.net", - "iab_vendor": null, - "id": "imgix.net", - "name": "ImgIX", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.imgix.com/" - }, - "imgur": { - "category": "misc", - "company_id": "imgur", - "description": "Imgur is the Internet's visual storytelling community. Millions of people visit Imgur every day to explore, share and discuss the best visual stories the Internet has to offer. ", - "domains": [ - "imgur.com" - ], - "ghostery_id": "c_1736", - "iab_vendor": null, - "id": "imgur", - "name": "Imgur", - "privacy_url": "https://imgur.com/privacy", - "truste_type": "Social / Sharing Tools", - "website_url": "https://imgur.com/" - }, - "immobilienscout24_de": { - "category": "misc", - "company_id": "scout24", - "description": null, - "domains": [ - "immobilienscout24.de", - "static-immobilienscout24.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "immobilienscout24_de", - "name": "immobilienscout24.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "imonomy": { - "category": "site_analytics", - "company_id": "imonomy", - "description": null, - "domains": [ - "imonomy.com" - ], - "ghostery_id": "2288", - "iab_vendor": null, - "id": "imonomy", - "name": "imonomy", - "privacy_url": "http://imonomy.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "impact_radius": { - "category": "essential", - "company_id": "impact_radius", - "description": "Impact Radius enables digital brands and agencies to maximize the return of ad spend across digital, mobile and offline channels.", - "domains": [ - "7eer.net", - "d3cxv97fi8q177.cloudfront.net", - "evyy.net", - "impactradius-event.com", - "impactradius-tag.com", - "impactradius.com", - "ojrq.net", - "r7ls.net" - ], - "ghostery_id": "1330", - "iab_vendor": null, - "id": "impact_radius", - "name": "Impact Radius", - "privacy_url": "http://www.impactradius.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.impactradius.com/" - }, - "improve_digital": { - "category": "advertising", - "company_id": "improve_digital", - "description": null, - "domains": [ - "360yield.com" - ], - "ghostery_id": "893", - "iab_vendor": 253, - "id": "improve_digital", - "name": "Improve Digital", - "privacy_url": "https://www.improvedigital.com/platform-privacy-policy", - "truste_type": null, - "website_url": "http://www.improvedigital.com/" - }, - "inbenta": { - "category": "site_analytics", - "company_id": "inbenta", - "description": null, - "domains": [ - "inbenta.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "inbenta", - "name": "Inbenta", - "privacy_url": "https://www.inbenta.com/en/about-us/privacy-policy/", - "truste_type": null, - "website_url": "https://www.inbenta.com/en/" - }, - "inboxsdk.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "inboxsdk.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "inboxsdk.com", - "name": "Inbox SDK", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.inboxsdk.com/" - }, - "indeed": { - "category": "advertising", - "company_id": "indeed", - "description": null, - "domains": [ - "indeed.com" - ], - "ghostery_id": "2140", - "iab_vendor": null, - "id": "indeed", - "name": "Indeed", - "privacy_url": "https://www.indeed.com/legal#privacy", - "truste_type": null, - "website_url": "http://www.indeed.com/" - }, - "index_exchange_": { - "category": "advertising", - "company_id": "index_exchange", - "description": null, - "domains": [ - "casalemedia.com", - "indexww.com" - ], - "ghostery_id": "135", - "iab_vendor": 10, - "id": "index_exchange_", - "name": "Index Exchange", - "privacy_url": "http://www.indexexchange.com/privacy/", - "truste_type": null, - "website_url": "http://www.casalemedia.com/" - }, - "infectious_media": { - "category": "advertising", - "company_id": "infectious_media", - "description": "Infectious Media is an international programmatic agency that partners with global brands to deliver effective and efficient media campaigns. ", - "domains": [ - "impdesk.com", - "impressiondesk.com" - ], - "ghostery_id": "641", - "iab_vendor": null, - "id": "infectious_media", - "name": "Infectious Media", - "privacy_url": "http://infectiousmedia.com/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://www.infectiousdigital.com/" - }, - "infolinks": { - "category": "advertising", - "company_id": "infolinks", - "description": null, - "domains": [ - "infolinks.com", - "intextscript.com" - ], - "ghostery_id": "66", - "iab_vendor": null, - "id": "infolinks", - "name": "InfoLinks", - "privacy_url": "http://www.infolinks.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.infolinks.com/" - }, - "infonline": { - "category": "site_analytics", - "company_id": "infonline", - "description": null, - "domains": [ - "ioam.de", - "iocnt.net", - "ivwbox.de" - ], - "ghostery_id": "223", - "iab_vendor": null, - "id": "infonline", - "name": "INFOnline", - "privacy_url": "https://www.infonline.de/datenschutz/", - "truste_type": null, - "website_url": "http://www.infonline.de/" - }, - "innogames.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "innogames.com", - "innogames.de", - "innogamescdn.com" - ], - "ghostery_id": "innogames.de", - "iab_vendor": null, - "id": "innogames.de", - "name": "InnoGames", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.innogames.com/" - }, - "innovid": { - "category": "advertising", - "company_id": "innovid", - "description": null, - "domains": [ - "innovid.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "innovid", - "name": "Innovid", - "privacy_url": "https://www.innovid.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.innovid.com/" - }, - "insider": { - "category": "site_analytics", - "company_id": "insider", - "description": null, - "domains": [ - "useinsider.com" - ], - "ghostery_id": "2868", - "iab_vendor": null, - "id": "insider", - "name": "Insider", - "privacy_url": null, - "truste_type": null, - "website_url": "http://useinsider.com/" - }, - "insightexpress": { - "category": "site_analytics", - "company_id": "millward_brown", - "description": null, - "domains": [ - "insightexpressai.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "insightexpress", - "name": "InsightExpress", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.millwardbrowndigital.com/" - }, - "inspectlet": { - "category": "site_analytics", - "company_id": "inspectlet", - "description": "Inspectlet helps you gain a deeper understanding of what your visitors are thinking by observing their actions naturally. ", - "domains": [ - "inspectlet.com" - ], - "ghostery_id": "851", - "iab_vendor": null, - "id": "inspectlet", - "name": "Inspectlet", - "privacy_url": "https://www.inspectlet.com/legal#privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.inspectlet.com/" - }, - "inspsearchapi.com": { - "category": "advertising", - "company_id": "system1", - "description": null, - "domains": [ - "inspsearchapi.com" - ], - "ghostery_id": "inspsearchapi.com", - "iab_vendor": null, - "id": "inspsearchapi.com", - "name": "Infospace Search", - "privacy_url": null, - "truste_type": null, - "website_url": "http://infospace.com/" - }, - "instagram_com": { - "category": "misc", - "company_id": "facebook", - "description": "Instagram is a free and simple way to share your life and keep up with other people.", - "domains": [ - "cdninstagram.com", - "instagram.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "instagram_com", - "name": "Instagram", - "privacy_url": "https://www.facebook.com/full_data_use_policy", - "truste_type": "Social / Sharing Tools", - "website_url": null - }, - "instart_logic": { - "category": "advertising", - "company_id": "instart_logic_inc", - "description": null, - "domains": [ - "sdad.guru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "instart_logic", - "name": "Instart Logic", - "privacy_url": "https://www.instartlogic.com/company/legal", - "truste_type": null, - "website_url": "https://www.instartlogic.com/" - }, - "integral_ad_science": { - "category": "advertising", - "company_id": "integral_ad_science", - "description": null, - "domains": [ - "adsafeprotected.com", - "iasds01.com" - ], - "ghostery_id": "599", - "iab_vendor": 278, - "id": "integral_ad_science", - "name": "Integral Ad Science", - "privacy_url": "https://integralads.com/privacy-policy/", - "truste_type": null, - "website_url": "https://integralads.com/" - }, - "intelliad": { - "category": "advertising", - "company_id": "intelliad", - "description": "The intelliAd Bidding tool automatically adjusts your CPC bids in search engine advertising based on your personal goals. The innovative Bietalgorithmus into account a variety of factors to find the optimal bid every day and improve your campaign performance.", - "domains": [ - "intelliad.com", - "intelliad.de" - ], - "ghostery_id": "1289", - "iab_vendor": null, - "id": "intelliad", - "name": "intelliAd", - "privacy_url": " http://www.intelliad.de/datenschutz/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.intelliad.de/" - }, - "intelligent_reach": { - "category": "advertising", - "company_id": "intelligent_reach", - "description": null, - "domains": [ - "ist-track.com" - ], - "ghostery_id": "1550", - "iab_vendor": null, - "id": "intelligent_reach", - "name": "Intelligent Reach", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.intelligentreach.com/" - }, - "intent_iq": { - "category": "site_analytics", - "company_id": "intent_iq", - "description": null, - "domains": [ - "intentiq.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "intent_iq", - "name": "Intent IQ", - "privacy_url": "https://www.intentiq.com/technology-privacy-policy/", - "truste_type": null, - "website_url": null - }, - "intent_media": { - "category": "advertising", - "company_id": "intent_media", - "description": null, - "domains": [ - "intentmedia.net" - ], - "ghostery_id": "733", - "iab_vendor": 19, - "id": "intent_media", - "name": "Intent Media", - "privacy_url": "https://intentmedia.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.intentmedia.com/" - }, - "intercom": { - "category": "customer_interaction", - "company_id": "intercom", - "description": null, - "domains": [ - "intercom.io", - "intercomassets.com", - "intercomcdn.com" - ], - "ghostery_id": "792", - "iab_vendor": null, - "id": "intercom", - "name": "Intercom", - "privacy_url": "https://docs.intercom.com/pricing-privacy-and-terms/intercom-inc-privacy-policy", - "truste_type": null, - "website_url": "http://intercom.io/" - }, - "interedy.info": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "interedy.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "interedy.info", - "name": "interedy.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "intermarkets.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "intermarkets.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "intermarkets.net", - "name": "Intermarkets", - "privacy_url": null, - "truste_type": null, - "website_url": "http://intermarkets.net/" - }, - "internet_billboard": { - "category": "advertising", - "company_id": "internet_billboard", - "description": null, - "domains": [ - "bbelements.com", - "goadservices.com", - "ibillboard.com" - ], - "ghostery_id": "1791", - "iab_vendor": 428, - "id": "internet_billboard", - "name": "Internet BillBoard", - "privacy_url": "http://www.ibillboard.com/en/privacy-information/", - "truste_type": null, - "website_url": "http://www.ibillboard.com/en/" - }, - "interyield": { - "category": "advertising", - "company_id": "advertise.com", - "description": null, - "domains": [ - "ps7894.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "interyield", - "name": "Interyield", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.advertise.com/publisher-solutions/" - }, - "intimate_merger": { - "category": "site_analytics", - "company_id": "intimate_merger", - "description": null, - "domains": [ - "im-apps.net" - ], - "ghostery_id": "2588", - "iab_vendor": null, - "id": "intimate_merger", - "name": "Intimate Merger", - "privacy_url": "https://corp.intimatemerger.com/privacypolicy-en/", - "truste_type": null, - "website_url": null - }, - "investingchannel": { - "category": "misc", - "company_id": "investingchannel", - "description": null, - "domains": [ - "investingchannel.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "investingchannel", - "name": "Investing Channel", - "privacy_url": "http://www.investingchannel.com/policy", - "truste_type": null, - "website_url": "http://www.investingchannel.com/" - }, - "ionicframework.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "ionicframework.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ionicframework.com", - "name": "Ionic", - "privacy_url": null, - "truste_type": null, - "website_url": "https://ionicframework.com/" - }, - "iotec": { - "category": "advertising", - "company_id": "iotec", - "description": null, - "domains": [ - "dsp.io" - ], - "ghostery_id": null, - "iab_vendor": 113, - "id": "iotec", - "name": "iotec", - "privacy_url": "https://www.iotecglobal.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.iotecglobal.com/" - }, - "iovation": { - "category": "essential", - "company_id": "iovation", - "description": null, - "domains": [ - "iesnare.com", - "iovation.com" - ], - "ghostery_id": "2264", - "iab_vendor": null, - "id": "iovation", - "name": "iovation", - "privacy_url": "https://www.iovation.com/legal/privacy/", - "truste_type": null, - "website_url": null - }, - "iperceptions": { - "category": "customer_interaction", - "company_id": "iperceptions", - "description": "A trusted market research firm and global leader in Voice of Customer analytics, iPerceptions captures customer perceptions in the moment of truth using advanced intercept technologies and proven research frameworks to deliver action in real-time.", - "domains": [ - "iperceptions.com" - ], - "ghostery_id": "220", - "iab_vendor": null, - "id": "iperceptions", - "name": "iPerceptions", - "privacy_url": "https://www.iperceptions.com/en/privacy-policy", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.iperceptions.com/" - }, - "ipg_mediabrands": { - "category": "advertising", - "company_id": "ipg_mediabrands", - "description": null, - "domains": [ - "mbww.com" - ], - "ghostery_id": "2936", - "iab_vendor": null, - "id": "ipg_mediabrands", - "name": "IPG Mediabrands", - "privacy_url": "https://www.ipgmediabrands.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "ipify": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "ipify.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ipify", - "name": "ipify", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ipify.org/" - }, - "ipromote": { - "category": "advertising", - "company_id": "ipromote", - "description": null, - "domains": [ - "ipromote.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ipromote", - "name": "iPromote", - "privacy_url": "https://www.ipromote.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.ipromote.com/" - }, - "ispot.tv": { - "category": "advertising", - "company_id": null, - "description": "iSpot.tv measures TV advertising in real-time by automatically cataloging and tracking all nationally airing TV ads and measuring their earned digital impact across social, search and online video. Our proprietary platform is used by the world\u2019s leading brands, networks and agencies to measure ad effectiveness and spend, analyze competitors and optimize media. ", - "domains": [ - "ispot.tv" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ispot.tv", - "name": "iSpot.tv", - "privacy_url": "https://www.ispot.tv/agreements/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.ispot.tv/" - }, - "itineraire.info": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "itineraire.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "itineraire.info", - "name": "itineraire.info", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.itineraire.info/" - }, - "iubenda.com": { - "category": "essential", - "company_id": null, - "description": null, - "domains": [ - "iubenda.com" - ], - "ghostery_id": "1062", - "iab_vendor": null, - "id": "iubenda.com", - "name": "iubenda", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.iubenda.com/" - }, - "ivcbrasil.org.br": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "ivcbrasil.org.br" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ivcbrasil.org.br", - "name": "IVC Brasil", - "privacy_url": null, - "truste_type": null, - "website_url": "https://ivcbrasil.org.br/#/home" - }, - "ividence": { - "category": "advertising", - "company_id": "sien", - "description": null, - "domains": [ - "ivitrack.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ividence", - "name": "Ividence", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ividence.com/home/" - }, - "ixi_digital": { - "category": "advertising", - "company_id": "ixi_services", - "description": null, - "domains": [ - "ixiaa.com" - ], - "ghostery_id": "2830", - "iab_vendor": null, - "id": "ixi_digital", - "name": "IXI Digital", - "privacy_url": "https://datadrivenmarketing.equifax.com/website-privacy-policy/", - "truste_type": null, - "website_url": null - }, - "ixquick.com": { - "category": "misc", - "company_id": "startpage", - "description": null, - "domains": [ - "ixquick.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "ixquick.com", - "name": "ixquick", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ixquick.com/" - }, - "jetlore": { - "category": "site_analytics", - "company_id": "jetlore", - "description": null, - "domains": [ - "jetlore.com" - ], - "ghostery_id": "2865", - "iab_vendor": null, - "id": "jetlore", - "name": "Jetlore", - "privacy_url": "http://www.jetlore.com/privacy", - "truste_type": null, - "website_url": null - }, - "jetpack": { - "category": "site_analytics", - "company_id": "automattic", - "description": "Jetpack is a pioneering rich media advertising company dedicated to making it fast and easy for publishers and agencies to deliver extraordinary digital advertising experiences across every screen. ", - "domains": [ - "pixel.wp.com", - "stats.wp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "jetpack", - "name": "Jetpack", - "privacy_url": "https://automattic.com/privacy/", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "https://jetpack.com/" - }, - "jimdo.com": { - "category": "hosting", - "company_id": null, - "description": null, - "domains": [ - "jimcdn.com", - "jimdo.com", - "jimstatic.com" - ], - "ghostery_id": "jimdo.com", - "iab_vendor": null, - "id": "jimdo.com", - "name": "jimdo.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "jivochat": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "jivosite.com" - ], - "ghostery_id": "1687", - "iab_vendor": null, - "id": "jivochat", - "name": "JivoChat", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.jivochat.com/" - }, - "jivox": { - "category": "advertising", - "company_id": "jivox", - "description": null, - "domains": [ - "jivox.com" - ], - "ghostery_id": "1690", - "iab_vendor": 294, - "id": "jivox", - "name": "Jivox", - "privacy_url": "http://www.jivox.com/privacy", - "truste_type": null, - "website_url": "http://www.jivox.com/" - }, - "joinhoney": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "joinhoney.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "joinhoney", - "name": "Honey", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.joinhoney.com/" - }, - "jquery": { - "category": "cdn", - "company_id": "js_foundation", - "description": null, - "domains": [ - "cdnjquery.com", - "jquery.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "jquery", - "name": "jQuery", - "privacy_url": "https://js.foundation/about/governance/privacy-policy", - "truste_type": null, - "website_url": "https://jquery.org/" - }, - "jsdelivr": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "jsdelivr.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "jsdelivr", - "name": "jsDelivr", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.jsdelivr.com/" - }, - "jsuol.com.br": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "jsuol.com.br" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "jsuol.com.br", - "name": "jsuol.com.br", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "juggcash": { - "category": "pornvertising", - "company_id": "juggcash", - "description": null, - "domains": [ - "contentabc.com", - "mofos.com" - ], - "ghostery_id": "1148", - "iab_vendor": null, - "id": "juggcash", - "name": "JuggCash", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.juggcash.com" - }, - "juicyads": { - "category": "pornvertising", - "company_id": "juicyads", - "description": null, - "domains": [ - "juicyads.com" - ], - "ghostery_id": "550", - "iab_vendor": null, - "id": "juicyads", - "name": "JuicyAds", - "privacy_url": "http://www.juicyads.com/tos.php", - "truste_type": null, - "website_url": "http://www.juicyads.com/" - }, - "jumptap": { - "category": "advertising", - "company_id": "millenial_media__jumptap_", - "description": null, - "domains": [ - "jumptap.com" - ], - "ghostery_id": "1476", - "iab_vendor": null, - "id": "jumptap", - "name": "Jumptap", - "privacy_url": "http://www.millennialmedia.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.jumptap.com/" - }, - "just_premium": { - "category": "advertising", - "company_id": "just_premium", - "description": null, - "domains": [ - "justpremium.com", - "justpremium.nl" - ], - "ghostery_id": "1786", - "iab_vendor": 62, - "id": "just_premium", - "name": "Just Premium", - "privacy_url": null, - "truste_type": null, - "website_url": "http://justpremium.com/" - }, - "jvc.gg": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "jvc.gg" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "jvc.gg", - "name": "Jeuxvideo CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.jeuxvideo.com/" - }, - "jw_player": { - "category": "audio_video_player", - "company_id": "jw_player", - "description": "JW Player offers an advanced and flexible media player for publishing videos, running video ads, and streaming web content.", - "domains": [ - "d21rhj7n383afu.cloudfront.net", - "jwpcdn.com", - "jwplatform.com", - "jwplayer.com", - "jwpltx.com", - "jwpsrv.com" - ], - "ghostery_id": "2530", - "iab_vendor": null, - "id": "jw_player", - "name": "JW Player", - "privacy_url": "https://www.jwplayer.com/privacy/", - "truste_type": "Service Provider", - "website_url": "https://www.jwplayer.com/" - }, - "kaeufersiegel.de": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "kaeufersiegel.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "kaeufersiegel.de", - "name": "K\u00e4ufersiegel", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.kaeufersiegel.de/" - }, - "kairion.de": { - "category": "advertising", - "company_id": "prosieben_sat1", - "description": null, - "domains": [ - "kairion.de", - "kctag.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "kairion.de", - "name": "kairion", - "privacy_url": null, - "truste_type": null, - "website_url": "https://kairion.de/" - }, - "kaloo.ga": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "kaloo.ga" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "kaloo.ga", - "name": "Kalooga", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.kalooga.com/" - }, - "kaltura": { - "category": "audio_video_player", - "company_id": "kaltura", - "description": null, - "domains": [ - "kaltura.com" - ], - "ghostery_id": "1394", - "iab_vendor": null, - "id": "kaltura", - "name": "Kaltura", - "privacy_url": "http://corp.kaltura.com/privacy-policy", - "truste_type": null, - "website_url": "http://corp.kaltura.com/" - }, - "kameleoon": { - "category": "site_analytics", - "company_id": "kameleoon", - "description": null, - "domains": [ - "kameleoon.com", - "kameleoon.eu" - ], - "ghostery_id": "1938", - "iab_vendor": null, - "id": "kameleoon", - "name": "Kameleoon", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.kameleoon.com/" - }, - "kampyle": { - "category": "site_analytics", - "company_id": "medallia", - "description": null, - "domains": [ - "kampyle.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "kampyle", - "name": "Kampyle", - "privacy_url": "https://www.medallia.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.kampyle.com/" - }, - "kaspersky-labs.com": { - "category": "extensions", - "company_id": "AO Kaspersky Lab", - "description": null, - "domains": [ - "kaspersky-labs.com" - ], - "ghostery_id": "kaspersky-labs.com", - "iab_vendor": null, - "id": "kaspersky-labs.com", - "name": "Kaspersky Labs", - "privacy_url": "https://support.kaspersky.com/general/privacy?_ga=2.82314078.972498666.1539343116-1330083114.1539343116", - "truste_type": null, - "website_url": "https://www.kaspersky.com/" - }, - "kataweb.it": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "kataweb.it" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "kataweb.it", - "name": "KataWeb", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.kataweb.it/" - }, - "keen_io": { - "category": "site_analytics", - "company_id": "keen_io", - "description": null, - "domains": [ - "dc8na2hxrj29i.cloudfront.net", - "keen.io" - ], - "ghostery_id": "1820", - "iab_vendor": null, - "id": "keen_io", - "name": "Keen IO", - "privacy_url": "https://keen.io/privacy-policy?source=footer", - "truste_type": null, - "website_url": "https://keen.io" - }, - "kenshoo": { - "category": "site_analytics", - "company_id": "kenshoo", - "description": null, - "domains": [ - "xg4ken.com" - ], - "ghostery_id": "903", - "iab_vendor": null, - "id": "kenshoo", - "name": "Kenshoo", - "privacy_url": "http://kenshoo.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.kenshoo.com/" - }, - "keywee": { - "category": "site_analytics", - "company_id": null, - "description": "Keywee analyzes content and automaticallyfinds qualified audiences that drive business results. ", - "domains": [ - "keywee.co" - ], - "ghostery_id": "3124", - "iab_vendor": null, - "id": "keywee", - "name": "Keywee", - "privacy_url": "https://keywee.co/privacy-policy", - "truste_type": "Retargeting / Optimization", - "website_url": "https://keywee.co/" - }, - "khzbeucrltin.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "khzbeucrltin.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "khzbeucrltin.com", - "name": "khzbeucrltin.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "king.com": { - "category": "advertising", - "company_id": "king.com", - "description": null, - "domains": [ - "king.com" - ], - "ghostery_id": "2689", - "iab_vendor": null, - "id": "king.com", - "name": "King.com", - "privacy_url": "http://about.king.com/consumer-terms/terms/en#privacy", - "truste_type": null, - "website_url": null - }, - "king_com": { - "category": "misc", - "company_id": "activision_blizzard", - "description": null, - "domains": [ - "midasplayer.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "king_com", - "name": "King.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://king.com/" - }, - "kinja.com": { - "category": "site_analytics", - "company_id": "gizmodo", - "description": null, - "domains": [ - "kinja.com" - ], - "ghostery_id": "3221", - "iab_vendor": null, - "id": "kinja.com", - "name": "Kinja", - "privacy_url": "https://legal-supplemental.kinja.com/privacy-policy-90190742", - "truste_type": null, - "website_url": "https://kinja.com/" - }, - "kinja_static": { - "category": "cdn", - "company_id": "gizmodo", - "description": null, - "domains": [ - "kinja-img.com", - "kinja-static.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "kinja_static", - "name": "Kinja Static", - "privacy_url": "https://legal-supplemental.kinja.com/privacy-policy-90190742", - "truste_type": null, - "website_url": "https://kinja.com/" - }, - "kiosked": { - "category": "advertising", - "company_id": "kiosked", - "description": "Kiosked is the world\u2019s leading in-content advertising platform that drives viewability and relevancy of ads. Kiosked does this by turning publishers content into unique targeted ad placements based on contextual and behavioral data. Kiosked has been selected as one of the world\u2019s best technology companies. ", - "domains": [ - "kiosked.com" - ], - "ghostery_id": "1985", - "iab_vendor": null, - "id": "kiosked", - "name": "Kiosked", - "privacy_url": "http://www.kiosked.com/privacy-policy.html", - "truste_type": "Ad Platform", - "website_url": "http://www.kiosked.com/" - }, - "kissmetrics.com": { - "category": "site_analytics", - "company_id": null, - "description": "Kissmetrics delivers key insights and timely interactions to turn visitors into customers. ", - "domains": [ - "kissmetrics.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "kissmetrics.com", - "name": "Kissmetrics", - "privacy_url": "https://signin.kissmetrics.com/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.kissmetrics.com/" - }, - "klarna.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "klarna.com" - ], - "ghostery_id": "klarna.com", - "iab_vendor": null, - "id": "klarna.com", - "name": "Klarna", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.klarna.com/" - }, - "komoona": { - "category": "advertising", - "company_id": "komoona", - "description": "Komoona is a dynamic yield optimization platform working across all major RTB exchanges and demand sources, to ensure maximum revenue for our publishers.", - "domains": [ - "komoona.com" - ], - "ghostery_id": "1091", - "iab_vendor": null, - "id": "komoona", - "name": "Komoona", - "privacy_url": "https://www.komoona.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "http://www.komoona.com/" - }, - "kontextr": { - "category": "advertising", - "company_id": "kontext", - "description": null, - "domains": [ - "ktxtr.com" - ], - "ghostery_id": "2803", - "iab_vendor": null, - "id": "kontextr", - "name": "Kontextr", - "privacy_url": "http://www.kontextr.com/datenschutzerklaerung/", - "truste_type": null, - "website_url": null - }, - "krux_digital": { - "category": "advertising", - "company_id": "salesforce", - "description": null, - "domains": [ - "krxd.net" - ], - "ghostery_id": "378", - "iab_vendor": null, - "id": "krux_digital", - "name": "Krux Digital", - "privacy_url": "https://www.salesforce.com/eu/company/privacy/", - "truste_type": null, - "website_url": "http://www.krux.com/" - }, - "kupona": { - "category": "advertising", - "company_id": "actu_cci", - "description": null, - "domains": [ - "d31bfnnwekbny6.cloudfront.net", - "kpcustomer.de", - "q-sis.de" - ], - "ghostery_id": "1783", - "iab_vendor": null, - "id": "kupona", - "name": "Kupona", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.kupona-media.de/en/retargeting-and-performance-media-width-kupona" - }, - "kxcdn.com": { - "category": "cdn", - "company_id": null, - "description": "A simple, fast and reliable CDN. Offers ad serving solutions.", - "domains": [ - "kxcdn.com" - ], - "ghostery_id": "kxcdn.com", - "iab_vendor": null, - "id": "kxcdn.com", - "name": "Keycdn", - "privacy_url": "https://www.keycdn.com/privacy", - "truste_type": "Ad Server", - "website_url": "https://www.keycdn.com/" - }, - "ladsp.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "ladsp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ladsp.com", - "name": "ladsp.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "latimes": { - "category": "misc", - "company_id": "latimes", - "description": null, - "domains": [ - "latimes.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "latimes", - "name": "Los Angeles Times", - "privacy_url": "http://www.tronc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.latimes.com/" - }, - "layer-ad.org": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "layer-ad.org" - ], - "ghostery_id": "layer-ad.org", - "iab_vendor": null, - "id": "layer-ad.org", - "name": "Layer-ADS.net", - "privacy_url": null, - "truste_type": null, - "website_url": "http://layer-ads.net/" - }, - "le_monde.fr": { - "category": "misc", - "company_id": "le_monde.fr", - "description": null, - "domains": [ - "lemde.fr" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "le_monde.fr", - "name": "Le Monde.fr", - "privacy_url": "http://www.lemonde.fr/service/donnees_personnelles.html", - "truste_type": null, - "website_url": "http://www.lemonde.fr/" - }, - "leadplace": { - "category": "site_analytics", - "company_id": "leadplace", - "description": null, - "domains": [ - "leadplace.fr" - ], - "ghostery_id": "2320", - "iab_vendor": 244, - "id": "leadplace", - "name": "LeadPlace", - "privacy_url": "https://temelio.com/vie-privee", - "truste_type": null, - "website_url": null - }, - "lengow": { - "category": "advertising", - "company_id": "lengow", - "description": null, - "domains": [ - "lengow.com" - ], - "ghostery_id": "1215", - "iab_vendor": null, - "id": "lengow", - "name": "Lengow", - "privacy_url": "https://www.lengow.com/legal-notice/", - "truste_type": null, - "website_url": "http://www.lengow.com/" - }, - "lenmit.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "lenmit.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "lenmit.com", - "name": "lenmit.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "lentainform.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "lentainform.com" - ], - "ghostery_id": "lentainform.com", - "iab_vendor": null, - "id": "lentainform.com", - "name": "lentainform.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.lentainform.com/" - }, - "lenua.de": { - "category": "advertising", - "company_id": "synatix", - "description": null, - "domains": [ - "lenua.de" - ], - "ghostery_id": "lenua.de", - "iab_vendor": null, - "id": "lenua.de", - "name": "Lenua System", - "privacy_url": null, - "truste_type": null, - "website_url": "http://lenua.de/" - }, - "level3_communications": { - "category": "misc", - "company_id": "level3_communications", - "description": null, - "domains": [ - "footprint.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "level3_communications", - "name": "Level 3 Communications, Inc.", - "privacy_url": "http://www.level3.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.level3.com/en/" - }, - "licensebuttons.net": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "licensebuttons.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "licensebuttons.net", - "name": "licensebuttons.net", - "privacy_url": null, - "truste_type": null, - "website_url": "https://licensebuttons.net/" - }, - "lifestreet_media": { - "category": "advertising", - "company_id": "lifestreet_media", - "description": null, - "domains": [ - "lfstmedia.com" - ], - "ghostery_id": "1149", - "iab_vendor": 67, - "id": "lifestreet_media", - "name": "LifeStreet Media", - "privacy_url": "http://www.lifestreet.com/privacy/", - "truste_type": null, - "website_url": "http://lifestreetmedia.com/" - }, - "ligatus": { - "category": "advertising", - "company_id": "gruner_jahr_ag", - "description": null, - "domains": [ - "content-recommendation.net", - "ligadx.com", - "ligatus.com", - "ligatus.de", - "veeseo.com" - ], - "ghostery_id": "994", - "iab_vendor": 225, - "id": "ligatus", - "name": "Ligatus", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ligatus.com/" - }, - "line_apps": { - "category": "misc", - "company_id": "line", - "description": null, - "domains": [ - "line-apps.com", - "line-scdn.net", - "line.me" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "line_apps", - "name": "LINE Apps", - "privacy_url": "https://terms.line.me/line_rules/?lang=en-US", - "truste_type": null, - "website_url": "https://line.me/en-US/" - }, - "linkedin": { - "category": "misc", - "company_id": "microsoft", - "description": "LinkedIn is a business- and employment-oriented social networking service that operates via websites and mobile apps.", - "domains": [ - "bizo.com", - "bizographics.com", - "licdn.com", - "linkedin.com", - "lynda.com" - ], - "ghostery_id": "c_831", - "iab_vendor": null, - "id": "linkedin", - "name": "LinkedIn", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.linkedin.com/" - }, - "linkpulse": { - "category": "site_analytics", - "company_id": "linkpulse", - "description": null, - "domains": [ - "lp4.io" - ], - "ghostery_id": "1382", - "iab_vendor": null, - "id": "linkpulse", - "name": "Linkpulse", - "privacy_url": "http://www.linkpulse.com/privacy", - "truste_type": null, - "website_url": "http://www.linkpulse.com/" - }, - "linksynergy.com": { - "category": "advertising", - "company_id": "rakuten", - "description": null, - "domains": [ - "linksynergy.com" - ], - "ghostery_id": "396", - "iab_vendor": null, - "id": "linksynergy.com", - "name": "Rakuten LinkShare", - "privacy_url": null, - "truste_type": null, - "website_url": "https://rakutenmarketing.com/affiliate" - }, - "liquidm_technology_gmbh": { - "category": "advertising", - "company_id": "liquidm", - "description": null, - "domains": [ - "lqm.io", - "lqmcdn.com" - ], - "ghostery_id": "", - "iab_vendor": 254, - "id": "liquidm_technology_gmbh", - "name": "LiquidM Technology GmbH", - "privacy_url": "https://liquidm.com/privacy-policy/", - "truste_type": null, - "website_url": "https://liquidm.com/" - }, - "list.ru": { - "category": "social_media", - "company_id": "megafon", - "description": null, - "domains": [ - "list.ru" - ], - "ghostery_id": "1458", - "iab_vendor": null, - "id": "list.ru", - "name": "Rating@Mail.Ru", - "privacy_url": "http://moscow.megafon.ru/download/~federal/politika_konfiden.pdf", - "truste_type": null, - "website_url": "http://list.ru/" - }, - "live_intent": { - "category": "site_analytics", - "company_id": "liveintent", - "description": null, - "domains": [ - "liadm.com" - ], - "ghostery_id": "2747", - "iab_vendor": 148, - "id": "live_intent", - "name": "Live Intent", - "privacy_url": "https://liveintent.com/services-privacy-policy/", - "truste_type": null, - "website_url": null - }, - "liveadexchanger.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "liveadexchanger.com" - ], - "ghostery_id": "liveadexchanger.com", - "iab_vendor": null, - "id": "liveadexchanger.com", - "name": "liveadexchanger.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "livechat": { - "category": "customer_interaction", - "company_id": "livechat", - "description": null, - "domains": [ - "livechatinc.com", - "livechatinc.net" - ], - "ghostery_id": "1618", - "iab_vendor": null, - "id": "livechat", - "name": "LiveChat", - "privacy_url": "http://www.livechatinc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.livechatinc.com" - }, - "livefyre": { - "category": "comments", - "company_id": "livefyre", - "description": null, - "domains": [ - "fyre.co", - "livefyre.com" - ], - "ghostery_id": "1420", - "iab_vendor": null, - "id": "livefyre", - "name": "Livefyre", - "privacy_url": "http://www.livefyre.com/privacy/", - "truste_type": null, - "website_url": "http://www.livefyre.com/" - }, - "liveinternet": { - "category": "site_analytics", - "company_id": "liveinternet", - "description": null, - "domains": [ - "yadro.ru" - ], - "ghostery_id": "237", - "iab_vendor": null, - "id": "liveinternet", - "name": "LiveInternet", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.liveinternet.ru/" - }, - "liveperson": { - "category": "customer_interaction", - "company_id": "liveperson", - "description": null, - "domains": [ - "liveperson.net", - "lpsnmedia.net" - ], - "ghostery_id": "106", - "iab_vendor": null, - "id": "liveperson", - "name": "LivePerson", - "privacy_url": "http://www.liveperson.com/policies/privacy", - "truste_type": null, - "website_url": "http://www.liveperson.com/" - }, - "liveramp": { - "category": "advertising", - "company_id": "acxiom", - "description": null, - "domains": [ - "pippio.com", - "rapleaf.com", - "rlcdn.com" - ], - "ghostery_id": "242", - "iab_vendor": 97, - "id": "liveramp", - "name": "LiveRamp", - "privacy_url": "https://www.acxiom.com/about-us/privacy/", - "truste_type": null, - "website_url": "https://liveramp.com/" - }, - "livesportmedia.eu": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "livesportmedia.eu" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "livesportmedia.eu", - "name": "Livesport Media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.livesportmedia.eu/" - }, - "livetex.ru": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "livetex.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "livetex.ru", - "name": "LiveTex", - "privacy_url": null, - "truste_type": null, - "website_url": "https://livetex.ru/" - }, - "lkqd": { - "category": "advertising", - "company_id": "nexstar", - "description": null, - "domains": [ - "lkqd.net" - ], - "ghostery_id": "2833", - "iab_vendor": 237, - "id": "lkqd", - "name": "LKQD", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.lkqd.com/" - }, - "loadbee.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "loadbee.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "loadbee.com", - "name": "Loadbee", - "privacy_url": null, - "truste_type": null, - "website_url": "https://company.loadbee.com/de/loadbee-home" - }, - "loadercdn.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "loadercdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "loadercdn.com", - "name": "loadercdn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "loadsource.org": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "loadsource.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "loadsource.org", - "name": "loadsource.org", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "lockerz_share": { - "category": "social_media", - "company_id": "lightInthebox", - "description": "The universal sharing platform.", - "domains": [ - "addtoany.com" - ], - "ghostery_id": "54", - "iab_vendor": null, - "id": "lockerz_share", - "name": "AddToAny", - "privacy_url": null, - "truste_type": "Social / Sharing Tools", - "website_url": "http://www.addtoany.com/" - }, - "loggly": { - "category": "site_analytics", - "company_id": "loggly", - "description": null, - "domains": [ - "loggly.com" - ], - "ghostery_id": "1351", - "iab_vendor": null, - "id": "loggly", - "name": "Loggly", - "privacy_url": "https://www.loggly.com/about/privacy-policy/", - "truste_type": null, - "website_url": "http://loggly.com/" - }, - "logsss.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "logsss.com" - ], - "ghostery_id": "logsss.com", - "iab_vendor": null, - "id": "logsss.com", - "name": "logsss.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "loop11": { - "category": "site_analytics", - "company_id": "360i", - "description": null, - "domains": [ - "loop11.com" - ], - "ghostery_id": "2314", - "iab_vendor": null, - "id": "loop11", - "name": "Loop11", - "privacy_url": "https://360i.com/about/privacy/", - "truste_type": null, - "website_url": null - }, - "lotame": { - "category": "advertising", - "company_id": "lotame", - "description": null, - "domains": [ - "crwdcntrl.net" - ], - "ghostery_id": "109", - "iab_vendor": 95, - "id": "lotame", - "name": "Lotame", - "privacy_url": "https://www.lotame.com/about-lotame/privacy/", - "truste_type": null, - "website_url": "http://www.lotame.com/" - }, - "lottex_inc": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "vidcpm.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "lottex_inc", - "name": "vidcpm.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "lucky_orange": { - "category": "site_analytics", - "company_id": null, - "description": "Lucky Orange is a tool that lets you quickly see who is on your site and interact with them in many ways. ", - "domains": [ - "livestatserver.com", - "luckyorange.com", - "luckyorange.net" - ], - "ghostery_id": "1406", - "iab_vendor": null, - "id": "lucky_orange", - "name": "Lucky Orange", - "privacy_url": "https://www.luckyorange.com/privacy.php", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.luckyorange.com/" - }, - "luckypushh.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "luckypushh.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "luckypushh.com", - "name": "luckypushh.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "lytics": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "lytics.io" - ], - "ghostery_id": "2536", - "iab_vendor": null, - "id": "lytics", - "name": "Lytics", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.lytics.com/" - }, - "lyuoaxruaqdo.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "lyuoaxruaqdo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "lyuoaxruaqdo.com", - "name": "lyuoaxruaqdo.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "m-pathy": { - "category": "advertising", - "company_id": "m-pathy", - "description": null, - "domains": [ - "m-pathy.com" - ], - "ghostery_id": "2104", - "iab_vendor": null, - "id": "m-pathy", - "name": "m-pathy", - "privacy_url": "http://www.m-pathy.com/cms/datenschutz", - "truste_type": null, - "website_url": "http://www.m-pathy.com/" - }, - "m._p._newmedia": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "mpnrs.com" - ], - "ghostery_id": "1876", - "iab_vendor": null, - "id": "m._p._newmedia", - "name": "M. P. NEWMEDIA", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.mp-newmedia.com/" - }, - "madeleine.de": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "madeleine.de" - ], - "ghostery_id": "madeleine.de", - "iab_vendor": null, - "id": "madeleine.de", - "name": "madeleine.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "magnetic": { - "category": "advertising", - "company_id": "magnetic", - "description": "Magnetic is a marketing platform that helps provide information about the users around the world. ", - "domains": [ - "d3ezl4ajpp2zy8.cloudfront.net", - "domdex.com", - "domdex.net" - ], - "ghostery_id": "526", - "iab_vendor": null, - "id": "magnetic", - "name": "Magnetic", - "privacy_url": "http://www.magnetic.com/about/privacy/", - "truste_type": "Ad Network", - "website_url": "http://www.magnetic.is" - }, - "magnuum.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "magnuum.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "magnuum.com", - "name": "magnuum.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "mail.ru_group": { - "category": "social_media", - "company_id": "megafon", - "description": null, - "domains": [ - "imgsmail.ru", - "mail.ru", - "mradx.net", - "odnoklassniki.ru", - "ok.ru" - ], - "ghostery_id": "869", - "iab_vendor": null, - "id": "mail.ru_group", - "name": "Mail.Ru Group", - "privacy_url": "http://moscow.megafon.ru/download/~federal/politika_konfiden.pdf", - "truste_type": null, - "website_url": "http://mail.ru/" - }, - "mailchimp": { - "category": "advertising", - "company_id": "rocket_science_group", - "description": null, - "domains": [ - "chimpstatic.com", - "list-manage.com", - "mailchimp.com" - ], - "ghostery_id": "810", - "iab_vendor": null, - "id": "mailchimp", - "name": "MailChimp", - "privacy_url": "https://mailchimp.com/legal/privacy/", - "truste_type": null, - "website_url": "https://mailchimp.com/" - }, - "mailerlite.com": { - "category": "hosting", - "company_id": "mailerlite", - "description": null, - "domains": [ - "mailerlite.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mailerlite.com", - "name": "Mailerlite", - "privacy_url": "https://www.mailerlite.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.mailerlite.com/" - }, - "makeappdev.xyz": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "makeappdev.xyz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "makeappdev.xyz", - "name": "makeappdev.xyz", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "makesource.cool": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "makesource.cool" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "makesource.cool", - "name": "makesource.cool", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "mapandroute.de": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "mapandroute.de" - ], - "ghostery_id": "mapandroute.de", - "iab_vendor": null, - "id": "mapandroute.de", - "name": "Map and Route", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.mapandroute.de/" - }, - "mapbox": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "mapbox.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mapbox", - "name": "Mapbox", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.mapbox.com/" - }, - "marin_search_marketer": { - "category": "advertising", - "company_id": "marin_software", - "description": null, - "domains": [ - "marinsm.com" - ], - "ghostery_id": "239", - "iab_vendor": null, - "id": "marin_search_marketer", - "name": "Marin Search Marketer", - "privacy_url": " http://www.marinsoftware.com/privacy/privacy-central", - "truste_type": null, - "website_url": "http://www.marinsoftware.com/" - }, - "marketgid": { - "category": "advertising", - "company_id": "marketgid_usa", - "description": "Teaser advertising network, which is part of the International Information and Network MIRS", - "domains": [ - "dt00.net", - "dt07.net", - "marketgid.com", - "mgid.com" - ], - "ghostery_id": "364", - "iab_vendor": 358, - "id": "marketgid", - "name": "MarketGid", - "privacy_url": "https://www.mgid.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "http://www.mgid.com/" - }, - "marketo": { - "category": "advertising", - "company_id": "marketo", - "description": "Marketo provides a complete marketing automation software solution for fast-growing small companies and global enterprises alike. ", - "domains": [ - "marketo.com", - "marketo.net", - "mktoresp.com" - ], - "ghostery_id": "159", - "iab_vendor": null, - "id": "marketo", - "name": "Marketo", - "privacy_url": " http://legal.marketo.com/privacy/", - "truste_type": "Service Provider", - "website_url": "http://www.marketo.com/" - }, - "markmonitor": { - "category": "advertising", - "company_id": "markmonitor", - "description": null, - "domains": [ - "9c9media.com", - "caanalytics.com", - "mmstat.com" - ], - "ghostery_id": "1241", - "iab_vendor": null, - "id": "markmonitor", - "name": "MarkMonitor", - "privacy_url": "https://www.markmonitor.com/legal/privacy.php", - "truste_type": null, - "website_url": "https://www.markmonitor.com/" - }, - "marshadow.io": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "marshadow.io" - ], - "ghostery_id": "marshadow.io", - "iab_vendor": null, - "id": "marshadow.io", - "name": "marshadow.io", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "maru-edu": { - "category": "customer_interaction", - "company_id": "maruedr", - "description": null, - "domains": [ - "edigitalsurvey.com" - ], - "ghostery_id": "2688", - "iab_vendor": null, - "id": "maru-edu", - "name": "Maru-EDU", - "privacy_url": "http://public.edigitalresearch.com/privacy", - "truste_type": null, - "website_url": null - }, - "marvellous_machine": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "marvellousmachine.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "marvellous_machine", - "name": "Marvellous Machine", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.marvellousmachine.net/" - }, - "mathjax.org": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "mathjax.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mathjax.org", - "name": "MathJax", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.mathjax.org/" - }, - "maxcdn": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "maxcdn.com", - "netdna-cdn.com", - "netdna-ssl.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "maxcdn", - "name": "MaxCDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.maxcdn.com/" - }, - "maxmind": { - "category": "advertising", - "company_id": "maxmind", - "description": null, - "domains": [ - "maxmind.com" - ], - "ghostery_id": "948", - "iab_vendor": null, - "id": "maxmind", - "name": "MaxMind", - "privacy_url": " https://www.maxmind.com/en/privacy_policy", - "truste_type": null, - "website_url": "http://www.maxmind.com/" - }, - "maxonclick_com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "maxonclick.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "maxonclick_com", - "name": "maxonclick.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "maxpoint_interactive": { - "category": "advertising", - "company_id": "maxpoint_interactive", - "description": null, - "domains": [ - "mxptint.net" - ], - "ghostery_id": "724", - "iab_vendor": null, - "id": "maxpoint_interactive", - "name": "MaxPoint Interactive", - "privacy_url": "http://www.maxpointinteractive.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.maxpointinteractive.com/" - }, - "maxymiser": { - "category": "advertising", - "company_id": "oracle", - "description": null, - "domains": [ - "maxymiser.net" - ], - "ghostery_id": "458", - "iab_vendor": null, - "id": "maxymiser", - "name": "Oracle Maxymiser", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": null, - "website_url": "https://www.oracle.com/marketingcloud/products/testing-and-optimization/index.html" - }, - "mbr_targeting": { - "category": "advertising", - "company_id": "stroer", - "description": null, - "domains": [ - "m6r.eu" - ], - "ghostery_id": "c_2782", - "iab_vendor": 137, - "id": "mbr_targeting", - "name": "mbr targeting", - "privacy_url": "https://www.stroeer.de/fileadmin/user_upload/Datenschutz.pdf", - "truste_type": null, - "website_url": null - }, - "mcafee_secure": { - "category": "essential", - "company_id": "mcafee", - "description": null, - "domains": [ - "scanalert.com", - "ywxi.net" - ], - "ghostery_id": "778", - "iab_vendor": null, - "id": "mcafee_secure", - "name": "McAfee Secure", - "privacy_url": "http://www.mcafee.com/common/privacy/english/docs/mcafee-privacypolicy.pdf", - "truste_type": null, - "website_url": "http://www.mcafeesecure.com/us/" - }, - "media-imdb.com": { - "category": "cdn", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "media-imdb.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "media-imdb.com", - "name": "IMDB CDN", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.imdb.com/" - }, - "media.net": { - "category": "advertising", - "company_id": "media.net", - "description": null, - "domains": [ - "media.net" - ], - "ghostery_id": "1643", - "iab_vendor": 142, - "id": "media.net", - "name": "Media.net", - "privacy_url": "https://www.media.net/en/privacy-policy", - "truste_type": null, - "website_url": "http://www.media.net/" - }, - "media_impact": { - "category": "advertising", - "company_id": "media_impact", - "description": null, - "domains": [ - "mediaimpact.de" - ], - "ghostery_id": "2883", - "iab_vendor": null, - "id": "media_impact", - "name": "Media Impact", - "privacy_url": "https://mediaimpact.de/artikel/-Hinweise-zum-Datenschutz_768445.html", - "truste_type": null, - "website_url": null - }, - "media_innovation_group": { - "category": "advertising", - "company_id": "media_innovation_group", - "description": null, - "domains": [ - "mookie1.com" - ], - "ghostery_id": "439", - "iab_vendor": null, - "id": "media_innovation_group", - "name": "Media Innovation Group", - "privacy_url": "http://www.themig.com/en-us/privacy.html", - "truste_type": null, - "website_url": "http://www.themig.com/" - }, - "medialead": { - "category": "advertising", - "company_id": "the_reach_group", - "description": null, - "domains": [ - "medialead.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "medialead", - "name": "Medialead", - "privacy_url": "https://www.reachgroup.com/en/privacy-statement/", - "truste_type": null, - "website_url": "https://www.medialead.de/" - }, - "mediamath": { - "category": "advertising", - "company_id": "mediamath", - "description": null, - "domains": [ - "mathads.com", - "mathtag.com" - ], - "ghostery_id": "425", - "iab_vendor": 79, - "id": "mediamath", - "name": "MediaMath", - "privacy_url": "http://www.mediamath.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.mediamath.com/" - }, - "mediarithmics.com": { - "category": "advertising", - "company_id": "mediarithmics", - "description": null, - "domains": [ - "mediarithmics.com" - ], - "ghostery_id": "", - "iab_vendor": 184, - "id": "mediarithmics.com", - "name": "Mediarithmics", - "privacy_url": "http://www.mediarithmics.com/en/data-privacy.html", - "truste_type": null, - "website_url": "http://www.mediarithmics.com/en/" - }, - "mediascope": { - "category": "site_analytics", - "company_id": "mediascope", - "description": null, - "domains": [ - "tns-counter.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mediascope", - "name": "Mediascope", - "privacy_url": "https://tns-counter.ru/policy.html", - "truste_type": null, - "website_url": "http://mediascope.net/" - }, - "mediator.media": { - "category": "site_analytics", - "company_id": "mycom_bv", - "description": null, - "domains": [ - "mediator.media" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mediator.media", - "name": "Mediator", - "privacy_url": null, - "truste_type": null, - "website_url": "https://mediator.media/" - }, - "mediav": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "mediav.com" - ], - "ghostery_id": "1244", - "iab_vendor": null, - "id": "mediav", - "name": "MediaV", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.mediav.com/" - }, - "meetrics": { - "category": "advertising", - "company_id": "meetrics", - "description": null, - "domains": [ - "meetrics.net", - "mxcdn.net", - "research.de.com" - ], - "ghostery_id": "709", - "iab_vendor": 152, - "id": "meetrics", - "name": "Meetrics", - "privacy_url": "https://www.meetrics.com/en/data-privacy/", - "truste_type": null, - "website_url": "http://www.meetrics.de/" - }, - "mein-bmi.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "mein-bmi.com" - ], - "ghostery_id": "mein-bmi.com", - "iab_vendor": null, - "id": "mein-bmi.com", - "name": "mein-bmi.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.mein-bmi.com/" - }, - "mercado": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "mercadoclics.com", - "mlstatic.com" - ], - "ghostery_id": "2567", - "iab_vendor": null, - "id": "mercado", - "name": "Mercado-Analytics", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.mercadolivre.com.br/" - }, - "merkle_rkg": { - "category": "site_analytics", - "company_id": "dentsu_aegis_network", - "description": null, - "domains": [ - "rkdms.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "merkle_rkg", - "name": "Merkle RKG", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.merkleinc.com/what-we-do/digital-agency-services/rkg-now-fully-integrated-merkle" - }, - "messenger.com": { - "category": "social_media", - "company_id": "facebook", - "description": null, - "domains": [ - "messenger.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "messenger.com", - "name": "Facebook Messenger", - "privacy_url": "https://www.facebook.com/full_data_use_policy", - "truste_type": null, - "website_url": "https://messenger.com" - }, - "metaffiliation.com": { - "category": "advertising", - "company_id": "kwanko", - "description": null, - "domains": [ - "netaffiliation.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "metaffiliation.com", - "name": "Netaffiliation", - "privacy_url": "https://www.kwanko.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://netaffiliation.com/" - }, - "metapeople": { - "category": "advertising", - "company_id": "metapeople", - "description": null, - "domains": [ - "metalyzer.com", - "mlsat02.de" - ], - "ghostery_id": "1920", - "iab_vendor": null, - "id": "metapeople", - "name": "Metapeople", - "privacy_url": "http://www.metapeople.com/datenschutz/", - "truste_type": null, - "website_url": "http://www.metapeople.com/us/" - }, - "metrigo": { - "category": "advertising", - "company_id": "metrigo", - "description": null, - "domains": [ - "metrigo.com" - ], - "ghostery_id": "1471", - "iab_vendor": null, - "id": "metrigo", - "name": "Metrigo", - "privacy_url": "http://metrigo.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://metrigo.com/" - }, - "microad": { - "category": "advertising", - "company_id": null, - "description": "Ad Platform Business, Ad network business MicroAd, Overseas Business Development, Behavioral targeting ", - "domains": [ - "microad.co.jp", - "microad.jp", - "microad.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "microad", - "name": "MicroAd", - "privacy_url": "https://www.microad.co.jp/privacy/", - "truste_type": "Ad Platform", - "website_url": "https://www.microad.co.jp/" - }, - "microsoft": { - "category": "misc", - "company_id": "microsoft", - "description": null, - "domains": [ - "azurewebsites.net", - "cloudapp.net", - "gfx.ms", - "live.com", - "microsoft.com", - "microsoftonline-p.com", - "microsoftonline.com", - "microsofttranslator.com", - "msecnd.net", - "msedge.net", - "msocdn.com", - "onestore.ms", - "s-microsoft.com", - "trouter.io", - "windows.net" - ], - "ghostery_id": "c_250", - "iab_vendor": null, - "id": "microsoft", - "name": "Microsoft Services", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": "http://www.microsoft.com/" - }, - "mindspark": { - "category": "site_analytics", - "company_id": "iac_apps", - "description": null, - "domains": [ - "imgfarm.com", - "mindspark.com", - "staticimgfarm.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mindspark", - "name": "Mindspark", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.mindspark.com/" - }, - "mirtesen.ru": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "mirtesen.ru" - ], - "ghostery_id": "mirtesen.ru", - "iab_vendor": null, - "id": "mirtesen.ru", - "name": "mirtesen.ru", - "privacy_url": null, - "truste_type": null, - "website_url": "https://mirtesen.ru/" - }, - "mixpanel": { - "category": "site_analytics", - "company_id": "mixpanel", - "description": "Mixpanel is the most advanced analytics platform in the world for mobile & web. ", - "domains": [ - "mixpanel.com", - "mxpnl.com", - "mxpnl.net" - ], - "ghostery_id": "240", - "iab_vendor": null, - "id": "mixpanel", - "name": "Mixpanel", - "privacy_url": "https://mixpanel.com/legal/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://mixpanel.com/" - }, - "mncdn.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "mncdn.com" - ], - "ghostery_id": "mncdn.com", - "iab_vendor": null, - "id": "mncdn.com", - "name": "MediaNova CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.medianova.com/" - }, - "moat": { - "category": "advertising", - "company_id": "oracle", - "description": null, - "domains": [ - "moatads.com", - "moatpixel.com" - ], - "ghostery_id": "1453", - "iab_vendor": null, - "id": "moat", - "name": "Moat", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": null, - "website_url": "http://www.moat.com/" - }, - "mobtrks.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "mobtrks.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "mobtrks.com", - "name": "mobtrks.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "modulepush.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "modulepush.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "modulepush.com", - "name": "modulepush.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "monero_miner": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "devappgrant.space" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "monero_miner", - "name": "Monero Miner", - "privacy_url": null, - "truste_type": null, - "website_url": "http://devappgrant.space/" - }, - "monetate": { - "category": "site_analytics", - "company_id": "monetate", - "description": null, - "domains": [ - "monetate.net" - ], - "ghostery_id": "398", - "iab_vendor": null, - "id": "monetate", - "name": "Monetate", - "privacy_url": "http://www.monetate.com/platform-privacy-policy/?p=platform-policy/", - "truste_type": null, - "website_url": "http://monetate.com" - }, - "monotype_gmbh": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "fonts.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "monotype_gmbh", - "name": "Monotype GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.monotype.com/" - }, - "monotype_imaging": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "fonts.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "monotype_imaging", - "name": "Monotype Imaging Inc.", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.fonts.com/" - }, - "monster_advertising": { - "category": "advertising", - "company_id": "monster_worldwide", - "description": null, - "domains": [ - "monster.com" - ], - "ghostery_id": "1534", - "iab_vendor": null, - "id": "monster_advertising", - "name": "Monster Advertising", - "privacy_url": "http://inside.monster.com/ad-policy/inside2.aspx", - "truste_type": null, - "website_url": "http://www.monster.com/" - }, - "mopinion.com": { - "category": "customer_interaction", - "company_id": "mopinion", - "description": null, - "domains": [ - "mopinion.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mopinion.com", - "name": "Mopinion", - "privacy_url": "https://mopinion.com/privacy/", - "truste_type": null, - "website_url": "https://mopinion.com/" - }, - "mopub": { - "category": "advertising", - "company_id": "twitter", - "description": null, - "domains": [ - "mopub.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mopub", - "name": "MoPub", - "privacy_url": "https://twitter.com/privacy?lang=en", - "truste_type": null, - "website_url": "https://www.mopub.com/" - }, - "mouseflow": { - "category": "site_analytics", - "company_id": "mouseflow", - "description": "Mouseflow is a SaaS-based tool for performing web analytics and real-time user studies on websites.", - "domains": [ - "mouseflow.com" - ], - "ghostery_id": "347", - "iab_vendor": null, - "id": "mouseflow", - "name": "Mouseflow", - "privacy_url": "http://mouseflow.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": "http://mouseflow.com/" - }, - "mov.ad_": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "movad.de", - "movad.net" - ], - "ghostery_id": "c_3421", - "iab_vendor": null, - "id": "mov.ad_", - "name": "Mov.ad ", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "movable_ink": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "micpn.com" - ], - "ghostery_id": "2246", - "iab_vendor": null, - "id": "movable_ink", - "name": "Movable Ink", - "privacy_url": null, - "truste_type": null, - "website_url": "https://movableink.com/" - }, - "moz": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "moz.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "moz", - "name": "Moz", - "privacy_url": null, - "truste_type": null, - "website_url": "https://moz.com/" - }, - "mrpdata": { - "category": "site_analytics", - "company_id": "fifth_story", - "description": null, - "domains": [ - "mrpdata.com", - "mrpdata.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "mrpdata", - "name": "MRP", - "privacy_url": null, - "truste_type": null, - "website_url": "http://mrpdata.com/Account/Login?ReturnUrl=%2F" - }, - "msn": { - "category": "misc", - "company_id": "microsoft", - "description": null, - "domains": [ - "ads.msn.com", - "ads1.msn.com", - "adsyndication.msn.com", - "bat.r.msn.com", - "col.stc.s-msn.com", - "flex.msn.com", - "msn.com", - "s-msn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "msn", - "name": "Microsoft Network", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "mux_inc": { - "category": "hosting", - "company_id": "mux_inc", - "description": null, - "domains": [ - "litix.io" - ], - "ghostery_id": "2620", - "iab_vendor": null, - "id": "mux_inc", - "name": "Mux, Inc.", - "privacy_url": "https://mux.com/privacy", - "truste_type": null, - "website_url": "https://mux.com/" - }, - "mycdn.me": { - "category": "cdn", - "company_id": "megafon", - "description": null, - "domains": [ - "mycdn.me" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "mycdn.me", - "name": "Mail.Ru CDN", - "privacy_url": "http://moscow.megafon.ru/download/~federal/politika_konfiden.pdf", - "truste_type": null, - "website_url": null - }, - "mycliplister.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "mycliplister.com" - ], - "ghostery_id": "mycliplister.com", - "iab_vendor": null, - "id": "mycliplister.com", - "name": "Cliplister", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cliplister.com/" - }, - "myfonts_counter": { - "category": "site_analytics", - "company_id": "myfonts", - "description": null, - "domains": [ - "myfonts.net" - ], - "ghostery_id": "1634", - "iab_vendor": null, - "id": "myfonts_counter", - "name": "MyFonts", - "privacy_url": "https://www.myfonts.com/info/legal/#Privacy", - "truste_type": null, - "website_url": "http://www.myfonts.com/" - }, - "mythings": { - "category": "advertising", - "company_id": "mythings_", - "description": "myThings is a global leader in fully customized performance programmatic, personalizing dynamic creative for leading global brands on web and mobile. ", - "domains": [ - "mythings.com" - ], - "ghostery_id": "524", - "iab_vendor": null, - "id": "mythings", - "name": "myThings", - "privacy_url": "http://www.mythings.com/?page_id=8338", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.mythings.com/" - }, - "nakanohito.jp": { - "category": "site_analytics", - "company_id": "userinsight", - "description": null, - "domains": [ - "nakanohito.jp" - ], - "ghostery_id": "705", - "iab_vendor": null, - "id": "nakanohito.jp", - "name": "Nakanohito", - "privacy_url": "http://ui.userlocal.jp/document/attention/", - "truste_type": null, - "website_url": null - }, - "nanigans": { - "category": "advertising", - "company_id": "nanigans", - "description": "Nanigans advertising automation software powers the world\u2019s leading in-house performance marketing teams. Offered as Software-as-a-Service, Nanigans software features programmatic media buying, predictive revenue optimization, and real-time business intelligence across today\u2019s most valuable channels. ", - "domains": [ - "nanigans.com" - ], - "ghostery_id": "1362", - "iab_vendor": null, - "id": "nanigans", - "name": "Nanigans", - "privacy_url": "http://www.nanigans.com/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "http://www.nanigans.com/" - }, - "nano_interactive": { - "category": "advertising", - "company_id": "nano_interactive", - "description": null, - "domains": [ - "audiencemanager.de" - ], - "ghostery_id": null, - "iab_vendor": 72, - "id": "nano_interactive", - "name": "Nano Interactive", - "privacy_url": "http://www.nanointeractive.com/privacy", - "truste_type": null, - "website_url": "http://www.nanointeractive.com/home/de" - }, - "narrative_io": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "narrative.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "narrative_io", - "name": "Narrative I/O", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.narrative.io/" - }, - "nativeads.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "nativeads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nativeads.com", - "name": "native ads", - "privacy_url": null, - "truste_type": null, - "website_url": "https://nativeads.com/" - }, - "nativo": { - "category": "advertising", - "company_id": "nativo", - "description": null, - "domains": [ - "ntv.io", - "postrelease.com" - ], - "ghostery_id": "1528", - "iab_vendor": 263, - "id": "nativo", - "name": "Nativo", - "privacy_url": "https://www.nativo.com/interest-based-ads", - "truste_type": null, - "website_url": "http://www.nativo.net/" - }, - "navegg_dmp": { - "category": "site_analytics", - "company_id": "navegg", - "description": null, - "domains": [ - "navdmp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "navegg_dmp", - "name": "Navegg DMP", - "privacy_url": "https://www.navegg.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://navdmp.com/" - }, - "naver.com": { - "category": "misc", - "company_id": "naver", - "description": null, - "domains": [ - "naver.com", - "naver.net" - ], - "ghostery_id": "2456", - "iab_vendor": null, - "id": "naver.com", - "name": "Naver", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.naver.com/" - }, - "nbc_news": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "s-nbcnews.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nbc_news", - "name": "NBC News", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.nbcnews.com/" - }, - "nekudo.com": { - "category": "customer_interaction", - "company_id": "nekudo", - "description": null, - "domains": [ - "nekudo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nekudo.com", - "name": "Nekudo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://nekudo.com/" - }, - "neory_": { - "category": "advertising", - "company_id": "neory", - "description": null, - "domains": [ - "ad-srv.net", - "contentspread.net", - "neory-tm.com", - "simptrack.com" - ], - "ghostery_id": "1713", - "iab_vendor": 34, - "id": "neory_", - "name": "NEORY ", - "privacy_url": "https://www.neory.com/privacy.html", - "truste_type": null, - "website_url": "https://www.neory.com/" - }, - "nerfherdersolo_com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "nerfherdersolo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nerfherdersolo_com", - "name": "nerfherdersolo.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "net-metrix": { - "category": "site_analytics", - "company_id": "net-metrix", - "description": null, - "domains": [ - "wemfbox.ch" - ], - "ghostery_id": "1592", - "iab_vendor": null, - "id": "net-metrix", - "name": "NET-Metrix", - "privacy_url": "http://www.net-metrix.ch/ueber-uns/datenschutz", - "truste_type": null, - "website_url": "http://www.net-metrix.ch/" - }, - "netbiscuits": { - "category": "site_analytics", - "company_id": "netbiscuits", - "description": "Netbiscuits is a cloud platform for the development and delivery of web apps across mobile and connected devices. ", - "domains": [ - "netbiscuits.net" - ], - "ghostery_id": "2192", - "iab_vendor": null, - "id": "netbiscuits", - "name": "Netbiscuits", - "privacy_url": "http://www.netbiscuits.com/full-privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.netbiscuits.net/" - }, - "netflix": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "netflix.com", - "nflxext.com", - "nflximg.net", - "nflxso.net", - "nflxvideo.net" - ], - "ghostery_id": "c_2098", - "iab_vendor": null, - "id": "netflix", - "name": "Netflix", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "netletix": { - "category": "advertising", - "company_id": "ip_de", - "description": null, - "domains": [ - "netzathleten-media.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "netletix", - "name": "Netletix", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.netletix.com//" - }, - "netmining": { - "category": "advertising", - "company_id": "netmining", - "description": "Netmining provides intelligent audience targeting, powered by data and shaped by the best analytical minds in the business. ", - "domains": [ - "netmining.com", - "netmng.com" - ], - "ghostery_id": "358", - "iab_vendor": null, - "id": "netmining", - "name": "Netmining", - "privacy_url": "http://www.ignitionone.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.netmining.com/" - }, - "netratings_sitecensus": { - "category": "advertising", - "company_id": "nielsen", - "description": null, - "domains": [ - "glanceguide.com", - "imrworldwide.com", - "vizu.com" - ], - "ghostery_id": "43", - "iab_vendor": null, - "id": "netratings_sitecensus", - "name": "NetRatings SiteCensus", - "privacy_url": "https://www.nielsen.com/us/en/about-us/privacy.html", - "truste_type": null, - "website_url": "http://www.nielsen-online.com/intlpage.html" - }, - "netrk.net": { - "category": "site_analytics", - "company_id": "netzeffekt", - "description": null, - "domains": [ - "netrk.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "netrk.net", - "name": "nfxTrack", - "privacy_url": null, - "truste_type": null, - "website_url": "https://netrk.net/" - }, - "netseer": { - "category": "advertising", - "company_id": "netseer", - "description": null, - "domains": [ - "netseer.com" - ], - "ghostery_id": "608", - "iab_vendor": null, - "id": "netseer", - "name": "NetSeer", - "privacy_url": "http://www.netseer.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.netseer.com/" - }, - "netsprint_audience": { - "category": "site_analytics", - "company_id": "netsprint", - "description": null, - "domains": [ - "nsaudience.pl" - ], - "ghostery_id": null, - "iab_vendor": 160, - "id": "netsprint_audience", - "name": "Netsprint Audience", - "privacy_url": "http://spoldzielnia.nsaudience.pl/opt-out/", - "truste_type": null, - "website_url": "http://audience.netsprint.eu/" - }, - "neustar_adadvisor": { - "category": "advertising", - "company_id": "neustar", - "description": null, - "domains": [ - "adadvisor.net" - ], - "ghostery_id": "443", - "iab_vendor": null, - "id": "neustar_adadvisor", - "name": "Neustar AdAdvisor", - "privacy_url": "https://www.neustar.biz/privacy/privacy_policy", - "truste_type": null, - "website_url": "http://www.targusinfo.com/" - }, - "new_relic": { - "category": "site_analytics", - "company_id": "new_relic", - "description": null, - "domains": [ - "d1ros97qkrwjf5.cloudfront.net", - "newrelic.com", - "nr-data.net" - ], - "ghostery_id": "614", - "iab_vendor": null, - "id": "new_relic", - "name": "New Relic", - "privacy_url": "https://newrelic.com/privacy", - "truste_type": null, - "website_url": "http://newrelic.com/" - }, - "newscgp.com": { - "category": "advertising", - "company_id": "news_corp", - "description": null, - "domains": [ - "newscgp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "newscgp.com", - "name": "News Connect", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "newsupdatedir.info": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "newsupdatedir.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "newsupdatedir.info", - "name": "newsupdatedir.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "newsupdatewe.info": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "newsupdatewe.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "newsupdatewe.info", - "name": "newsupdatewe.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "nexage": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "nexage.com" - ], - "ghostery_id": "1478", - "iab_vendor": null, - "id": "nexage", - "name": "Nexage", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.nexage.com/" - }, - "nexeps.com": { - "category": "advertising", - "company_id": null, - "description": "neXeps is a self-learning system that works completely automatically with full control, evaluation and overview options. ", - "domains": [ - "nexeps.com" - ], - "ghostery_id": "nexeps.com", - "iab_vendor": null, - "id": "nexeps.com", - "name": "neXeps", - "privacy_url": "http://nexeps.com/Datenschutzbestimmungen1.pdf", - "truste_type": "Retargeting / Optimization", - "website_url": "http://nexeps.com/" - }, - "next_performance": { - "category": "advertising", - "company_id": "nextperf", - "description": null, - "domains": [ - "nxtck.com" - ], - "ghostery_id": "706", - "iab_vendor": null, - "id": "next_performance", - "name": "Next Performance", - "privacy_url": "http://www.nextperf.com/privacy/", - "truste_type": null, - "website_url": "http://www.nextperformance.com/" - }, - "nice264.com": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "nice264.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nice264.com", - "name": "Nice264", - "privacy_url": null, - "truste_type": null, - "website_url": "http://nice264.com/" - }, - "ninja_access_analysis": { - "category": "site_analytics", - "company_id": "samurai_factory", - "description": null, - "domains": [ - "cho-chin.com", - "donburako.com", - "hishaku.com", - "shinobi.jp" - ], - "ghostery_id": "712", - "iab_vendor": null, - "id": "ninja_access_analysis", - "name": "Ninja Access Analysis", - "privacy_url": "https://isplaw.samurai-factory.jp/privacy/cookie/", - "truste_type": null, - "website_url": "http://www.ninja.co.jp/analysis/" - }, - "nitropay": { - "category": "advertising", - "company_id": "gg_software", - "description": null, - "domains": [ - "nitropay.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nitropay", - "name": "NitroPay", - "privacy_url": null, - "truste_type": null, - "website_url": "https://nitropay.com/" - }, - "noaa.gov": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "noaa.gov" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "noaa.gov", - "name": "National Oceanic and Atmospheric Administration", - "privacy_url": null, - "truste_type": null, - "website_url": "https://noaa.gov/" - }, - "nonstop_consulting": { - "category": "advertising", - "company_id": "united_digital_group__fka_nonstopconsulting_", - "description": null, - "domains": [ - "trkme.net" - ], - "ghostery_id": "1409", - "iab_vendor": null, - "id": "nonstop_consulting", - "name": "nonstop Consulting", - "privacy_url": "https://www.udg.de/en/privacy-policy/", - "truste_type": null, - "website_url": "http://www.nonstopconsulting.co.uk" - }, - "noop.style": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "noop.style" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "noop.style", - "name": "noop.style", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "nosto.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "nosto.com" - ], - "ghostery_id": "nosto.com", - "iab_vendor": null, - "id": "nosto.com", - "name": "nosto", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.nosto.com/" - }, - "notify": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adleadevent.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "notify", - "name": "Notify", - "privacy_url": null, - "truste_type": null, - "website_url": "http://notify.ag/en/" - }, - "nt.vc": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "nt.vc" - ], - "ghostery_id": "nt.vc", - "iab_vendor": null, - "id": "nt.vc", - "name": "Next Tuesday GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.nexttuesday.de/" - }, - "nugg.ad": { - "category": "advertising", - "company_id": "nugg.ad", - "description": "nugg.ad operates Europe's largest targeting platform and offers the most efficient solution for target group-specific online advertising. ", - "domains": [ - "nuggad.net" - ], - "ghostery_id": "30", - "iab_vendor": null, - "id": "nugg.ad", - "name": "Nugg.Ad", - "privacy_url": "https://www.nugg.ad/en/privacy/general-information.html", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.nugg.ad/" - }, - "nyacampwk.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "nyacampwk.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nyacampwk.com", - "name": "nyacampwk.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "nyetm2mkch.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "nyetm2mkch.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "nyetm2mkch.com", - "name": "nyetm2mkch.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "nyt.com": { - "category": "misc", - "company_id": "the_new_york_times", - "description": null, - "domains": [ - "nyt.com" - ], - "ghostery_id": "1129", - "iab_vendor": null, - "id": "nyt.com", - "name": "The New York Times", - "privacy_url": "https://help.nytimes.com/hc/en-us/articles/115014892108-Privacy-policy", - "truste_type": null, - "website_url": "https://www.nytimes.com/" - }, - "o12zs3u2n.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "o12zs3u2n.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "o12zs3u2n.com", - "name": "o12zs3u2n.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "o2.pl": { - "category": "misc", - "company_id": "o2.pl", - "description": "O2.pl is an Internet platform that allows access to sites, services and content groups Virtual Poland, other entities, and users.", - "domains": [ - "o2.pl" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "o2.pl", - "name": "o2.pl", - "privacy_url": "http://sgcdn.o2.pl.sds.o2.pl/cookies_WPM_v.11.10.2017.pdf", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.o2.pl/" - }, - "o2online.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "o2online.de" - ], - "ghostery_id": "o2online.de", - "iab_vendor": null, - "id": "o2online.de", - "name": "o2online.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.o2online.de/" - }, - "oath_inc": { - "category": "misc", - "company_id": "verizon", - "description": null, - "domains": [ - "oath.com" - ], - "ghostery_id": null, - "iab_vendor": 25, - "id": "oath_inc", - "name": "Oath, Inc.", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "https://www.oath.com/" - }, - "oclasrv.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "oclasrv.com" - ], - "ghostery_id": "oclasrv.com", - "iab_vendor": null, - "id": "oclasrv.com", - "name": "oclasrv.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "octapi.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "octapi.net" - ], - "ghostery_id": "octapi.net", - "iab_vendor": null, - "id": "octapi.net", - "name": "octapi.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "office.com": { - "category": "misc", - "company_id": "microsoft", - "description": null, - "domains": [ - "office.com" - ], - "ghostery_id": "office.com", - "iab_vendor": null, - "id": "office.com", - "name": "office.com", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "office.net": { - "category": "misc", - "company_id": "microsoft", - "description": null, - "domains": [ - "office.net" - ], - "ghostery_id": "office.net", - "iab_vendor": null, - "id": "office.net", - "name": "office.net", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "office365.com": { - "category": "misc", - "company_id": "microsoft", - "description": null, - "domains": [ - "office365.com" - ], - "ghostery_id": "office365.com", - "iab_vendor": null, - "id": "office365.com", - "name": "office365.com", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": null - }, - "oghub.io": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "oghub.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "oghub.io", - "name": "OG Hub", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "olark": { - "category": "customer_interaction", - "company_id": "olark", - "description": null, - "domains": [ - "olark.com" - ], - "ghostery_id": "655", - "iab_vendor": null, - "id": "olark", - "name": "Olark", - "privacy_url": "https://www.olark.com/tos", - "truste_type": null, - "website_url": "http://www.olark.com/" - }, - "olx-st.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "olx-st.com", - "onap.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "olx-st.com", - "name": "OLX", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.olx.com/" - }, - "omarsys.com": { - "category": "advertising", - "company_id": "xcaliber", - "description": null, - "domains": [ - "omarsys.com" - ], - "ghostery_id": "omarsys.com", - "iab_vendor": null, - "id": "omarsys.com", - "name": "Omarsys", - "privacy_url": null, - "truste_type": null, - "website_url": "http://omarsys.com/" - }, - "omniconvert.com": { - "category": "advertising", - "company_id": "omniconvert", - "description": null, - "domains": [ - "omniconvert.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "omniconvert.com", - "name": "Omniconvert", - "privacy_url": "https://www.omniconvert.com/privacy", - "truste_type": null, - "website_url": "https://www.omniconvert.com/" - }, - "omniscienta": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "omnidsp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "omniscienta", - "name": "Omniscienta", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.omniscienta.com/" - }, - "omniture__adobe_analytics_": { - "category": "site_analytics", - "company_id": "adobe", - "description": null, - "domains": [ - "2o7.net", - "du8783wkf05yr.cloudfront.net", - "hitbox.com", - "imageg.net", - "omtrdc.net" - ], - "ghostery_id": "19", - "iab_vendor": null, - "id": "omniture__adobe_analytics_", - "name": "Omniture (Adobe Analytics)", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "http://www.omniture.com/en/" - }, - "oms": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "oms.eu", - "omsnative.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "oms", - "name": "OMS", - "privacy_url": null, - "truste_type": null, - "website_url": "http://oms.eu/" - }, - "onaudience": { - "category": "advertising", - "company_id": "cloud_technologies", - "description": null, - "domains": [ - "behavioralengine.com", - "onaudience.com" - ], - "ghostery_id": "2981", - "iab_vendor": 243, - "id": "onaudience", - "name": "OnAudience", - "privacy_url": "http://onaudience.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.onaudience.com/" - }, - "onesignal": { - "category": "essential", - "company_id": "onesignal", - "description": null, - "domains": [ - "onesignal.com", - "os.tc" - ], - "ghostery_id": "2498", - "iab_vendor": null, - "id": "onesignal", - "name": "OneSignal", - "privacy_url": "https://onesignal.com/privacy_policy", - "truste_type": null, - "website_url": "https://onesignal.com/" - }, - "onet.pl": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "ocdn.eu", - "onet.pl" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "onet.pl", - "name": "onet", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.onet.pl/" - }, - "onetrust": { - "category": "essential", - "company_id": "onetrust", - "description": null, - "domains": [ - "onetrust.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "onetrust", - "name": "OneTrust", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.onetrust.com/" - }, - "onfocus.io": { - "category": "advertising", - "company_id": "onfocus", - "description": null, - "domains": [ - "fogl1onf.com", - "onfocus.io" - ], - "ghostery_id": "3071", - "iab_vendor": null, - "id": "onfocus.io", - "name": "OnFocus", - "privacy_url": null, - "truste_type": null, - "website_url": "http://onfocus.io/" - }, - "onthe.io": { - "category": "site_analytics", - "company_id": "onthe.io", - "description": null, - "domains": [ - "onthe.io" - ], - "ghostery_id": "2629", - "iab_vendor": null, - "id": "onthe.io", - "name": "OnThe.io", - "privacy_url": "https://onthe.io/pp", - "truste_type": null, - "website_url": null - }, - "ooyala.com": { - "category": "audio_video_player", - "company_id": "telstra", - "description": null, - "domains": [ - "ooyala.com" - ], - "ghostery_id": null, - "iab_vendor": 438, - "id": "ooyala.com", - "name": "Ooyala", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ooyala.com/" - }, - "openload": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "oloadcdn.net", - "openload.co" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "openload", - "name": "Openload", - "privacy_url": null, - "truste_type": null, - "website_url": "https://openload.co/" - }, - "openstat": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "openstat.net" - ], - "ghostery_id": "210", - "iab_vendor": null, - "id": "openstat", - "name": "OpenStat", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.openstat.ru/" - }, - "openx": { - "category": "advertising", - "company_id": "openx", - "description": null, - "domains": [ - "odnxs.net", - "openx.net", - "openx.org", - "openxenterprise.com", - "servedbyopenx.com" - ], - "ghostery_id": "32", - "iab_vendor": 69, - "id": "openx", - "name": "OpenX", - "privacy_url": "https://www.openx.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "http://www.openx.com" - }, - "opinary": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "opinary.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "opinary", - "name": "Opinary", - "privacy_url": null, - "truste_type": null, - "website_url": "http://opinary.com/" - }, - "opta.net": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "opta.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "opta.net", - "name": "Opta", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.optasports.de/" - }, - "optanaon": { - "category": "essential", - "company_id": null, - "description": null, - "domains": [ - "cookielaw.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "optanaon", - "name": "Optanaon by OneTrust", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.cookielaw.org/" - }, - "optimatic": { - "category": "audio_video_player", - "company_id": "optimatic", - "description": null, - "domains": [ - "optimatic.com" - ], - "ghostery_id": "2360", - "iab_vendor": null, - "id": "optimatic", - "name": "Optimatic", - "privacy_url": "http://www.optimatic.com/wp-content/uploads/2016/11/Privacy_Policy11-16.pdf", - "truste_type": null, - "website_url": null - }, - "optimicdn.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "optimicdn.com" - ], - "ghostery_id": "optimicdn.com", - "iab_vendor": null, - "id": "optimicdn.com", - "name": "OptimiCDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://en.optimicdn.com/" - }, - "optimizely": { - "category": "site_analytics", - "company_id": "optimizely", - "description": "Optimizely is an experimentation platform, enabling businesses to deliver continuous experimentation and personalization across websites, mobile apps and connected devices.", - "domains": [ - "optimizely.com" - ], - "ghostery_id": "c_881", - "iab_vendor": null, - "id": "optimizely", - "name": "Optimizely", - "privacy_url": "https://www.optimizely.com/privacy/", - "truste_type": "Website Tools", - "website_url": "https://www.optimizely.com/" - }, - "optimonk": { - "category": "site_analytics", - "company_id": "optimonk", - "description": null, - "domains": [ - "optimonk.com" - ], - "ghostery_id": "2422", - "iab_vendor": null, - "id": "optimonk", - "name": "Optimonk", - "privacy_url": "https://www.optimonk.com/privacy_policy", - "truste_type": null, - "website_url": null - }, - "optinmonster": { - "category": "site_analytics", - "company_id": "optinmonster", - "description": null, - "domains": [ - "mstrlytcs.com", - "optmnstr.com", - "optmstr.com", - "optnmstr.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "optinmonster", - "name": "OptinMonster", - "privacy_url": "https://optinmonster.com/privacy/", - "truste_type": null, - "website_url": "https://optinmonster.com/" - }, - "optinproject.com": { - "category": "advertising", - "company_id": "optincollect", - "description": null, - "domains": [ - "optincollect.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "optinproject.com", - "name": "OptinProject", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.optincollect.com/en" - }, - "optomaton": { - "category": "advertising", - "company_id": "ve", - "description": null, - "domains": [ - "volvelle.tech" - ], - "ghostery_id": null, - "iab_vendor": 349, - "id": "optomaton", - "name": "Optomaton", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.optomaton.com/" - }, - "ora.tv": { - "category": "advertising", - "company_id": "ora.tv", - "description": null, - "domains": [ - "ora.tv" - ], - "ghostery_id": "2846", - "iab_vendor": null, - "id": "ora.tv", - "name": "Ora.TV", - "privacy_url": "http://www.ora.tv/privacy", - "truste_type": null, - "website_url": "http://www.ora.tv/" - }, - "oracle_rightnow": { - "category": "misc", - "company_id": "oracle", - "description": null, - "domains": [ - "rightnowtech.com", - "rnengage.com" - ], - "ghostery_id": "c_1170", - "iab_vendor": null, - "id": "oracle_rightnow", - "name": "Oracle RightNow", - "privacy_url": "https://www.oracle.com/legal/privacy/index.html", - "truste_type": null, - "website_url": null - }, - "orange": { - "category": "advertising", - "company_id": "orange_mobile", - "description": null, - "domains": [ - "orange.fr", - "orangeads.fr" - ], - "ghostery_id": "1743", - "iab_vendor": null, - "id": "orange", - "name": "Orange", - "privacy_url": "http://web.orange.co.uk/documents/ice/privacy/orange_privacy_and_cookie_policy_for_mobile_20101206.pdf", - "truste_type": null, - "website_url": "http://www.orange.co.uk/" - }, - "orange_france": { - "category": "misc", - "company_id": "orange_france", - "description": null, - "domains": [ - "wanadoo.fr" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "orange_france", - "name": "Orange France", - "privacy_url": "http://c.orange.fr/donnees-personnelles.html", - "truste_type": null, - "website_url": "https://www.orange.fr/" - }, - "orc_international": { - "category": "advertising", - "company_id": "engine_group", - "description": null, - "domains": [ - "emxdgt.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "orc_international", - "name": "ORC International", - "privacy_url": null, - "truste_type": null, - "website_url": "https://orcinternational.com/" - }, - "othersearch.info": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "othersearch.info" - ], - "ghostery_id": "othersearch.info", - "iab_vendor": null, - "id": "othersearch.info", - "name": "FlowSurf", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "otm-r.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "otm-r.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "otm-r.com", - "name": "OTM", - "privacy_url": null, - "truste_type": null, - "website_url": "http://otm-r.com/" - }, - "otto.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "otto.de", - "ottogroup.media" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "otto.de", - "name": "Otto Group", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "outbrain": { - "category": "misc", - "company_id": "outbrain", - "description": null, - "domains": [ - "outbrain.com", - "outbrainimg.com" - ], - "ghostery_id": "c_134", - "iab_vendor": 164, - "id": "outbrain", - "name": "Outbrain", - "privacy_url": "https://www.outbrain.com/legal/", - "truste_type": null, - "website_url": "http://www.outbrain.com/" - }, - "overheat.it": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "overheat.it" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "overheat.it", - "name": "overheat", - "privacy_url": null, - "truste_type": null, - "website_url": "https://overheat.io/" - }, - "owa": { - "category": "site_analytics", - "company_id": "the_austrian_web_analysis__owa_", - "description": null, - "domains": [ - "oewabox.at" - ], - "ghostery_id": "331", - "iab_vendor": null, - "id": "owa", - "name": "OWA", - "privacy_url": "http://www.oewa.at/impressum", - "truste_type": null, - "website_url": "http://oewa.at/" - }, - "owneriq": { - "category": "advertising", - "company_id": "owneriq", - "description": "OwnerIQ provides online advertising solutions and marketing channels for brands, retailers, and manufacturers.", - "domains": [ - "owneriq.net" - ], - "ghostery_id": "359", - "iab_vendor": null, - "id": "owneriq", - "name": "OwnerIQ", - "privacy_url": "http://www.owneriq.com/privacy-policy", - "truste_type": "Data Management Platform (DMP)", - "website_url": "http://www.owneriq.com/" - }, - "ownpage": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "ownpage.fr" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ownpage", - "name": "Ownpage", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ownpage.fr/index.en.html" - }, - "owox.com": { - "category": "site_analytics", - "company_id": "owox_inc", - "description": null, - "domains": [ - "owox.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "owox.com", - "name": "OWOX", - "privacy_url": "https://www.owox.com/policies/privacy/", - "truste_type": null, - "website_url": "https://www.owox.com/" - }, - "oxomi.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "oxomi.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "oxomi.com", - "name": "Oxomi", - "privacy_url": null, - "truste_type": null, - "website_url": "https://oxomi.com/" - }, - "pageanalytics.space": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pageanalytics.space" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pageanalytics.space", - "name": "pageanalytics.space", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pagefair": { - "category": "customer_interaction", - "company_id": "pagefair", - "description": null, - "domains": [ - "blockmetrics.com", - "pagefair.com", - "pagefair.net" - ], - "ghostery_id": "1628", - "iab_vendor": null, - "id": "pagefair", - "name": "PageFair", - "privacy_url": "https://pagefair.com/privacy/", - "truste_type": null, - "website_url": "https://pagefair.com/" - }, - "pardot": { - "category": "site_analytics", - "company_id": "pardot", - "description": null, - "domains": [ - "pardot.com" - ], - "ghostery_id": "241", - "iab_vendor": null, - "id": "pardot", - "name": "Pardot", - "privacy_url": "http://www.pardot.com/company/legal/privacy-policy.html", - "truste_type": null, - "website_url": "http://www.pardot.com/" - }, - "parsely": { - "category": "site_analytics", - "company_id": "parse.ly", - "description": null, - "domains": [ - "d1z2jf7jlzjs58.cloudfront.net", - "parsely.com" - ], - "ghostery_id": "2613", - "iab_vendor": null, - "id": "parsely", - "name": "Parsely", - "privacy_url": "http://www.parsely.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "paypal": { - "category": "customer_interaction", - "company_id": "ebay", - "description": null, - "domains": [ - "paypal.com", - "paypalobjects.com" - ], - "ghostery_id": "c_2595", - "iab_vendor": null, - "id": "paypal", - "name": "PayPal", - "privacy_url": "https://www.ebay.com/help/policies/member-behaviour-policies/user-privacy-notice-privacy-policy?id=4260", - "truste_type": null, - "website_url": "https://www.paypal.com" - }, - "pcvark.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pcvark.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pcvark.com", - "name": "pcvark.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://pcvark.com/" - }, - "peer5.com": { - "category": "cdn", - "company_id": "peer5", - "description": null, - "domains": [ - "peer5.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "peer5.com", - "name": "Peer5", - "privacy_url": "https://www.peer5.com/privacy.html", - "truste_type": null, - "website_url": "https://www.peer5.com/" - }, - "peerius": { - "category": "customer_interaction", - "company_id": "peerius", - "description": null, - "domains": [ - "peerius.com" - ], - "ghostery_id": "668", - "iab_vendor": null, - "id": "peerius", - "name": "Peerius", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.peerius.com/" - }, - "pendo.io": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "pendo.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pendo.io", - "name": "pendo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.pendo.io/" - }, - "pepper.com": { - "category": "advertising", - "company_id": "6minutes", - "description": null, - "domains": [ - "pepper.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pepper.com", - "name": "Pepper", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.pepper.com/" - }, - "perfdrive.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "perfdrive.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "perfdrive.com", - "name": "perfdrive.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "perfect_audience": { - "category": "advertising", - "company_id": "perfect_audience", - "description": "The easiest way to retarget across the web, Facebook, and Twitter.", - "domains": [ - "perfectaudience.com", - "prfct.co" - ], - "ghostery_id": "1403", - "iab_vendor": null, - "id": "perfect_audience", - "name": "Perfect Audience", - "privacy_url": "https://www.perfectaudience.com/privacy/", - "truste_type": "Retargeting / Optimization", - "website_url": "https://www.perfectaudience.com/" - }, - "perfect_market": { - "category": "advertising", - "company_id": "perfect_market", - "description": null, - "domains": [ - "perfectmarket.com" - ], - "ghostery_id": "1691", - "iab_vendor": null, - "id": "perfect_market", - "name": "Perfect Market", - "privacy_url": "http://perfectmarket.com/privacy-policy/", - "truste_type": null, - "website_url": "http://perfectmarket.com/" - }, - "perform_group": { - "category": "essential", - "company_id": "perform_group", - "description": null, - "domains": [ - "performgroup.com" - ], - "ghostery_id": "1255", - "iab_vendor": 323, - "id": "perform_group", - "name": "Perform Group", - "privacy_url": "http://www.performgroup.com/media-privacy-notice", - "truste_type": null, - "website_url": "http://www.performgroup.co.uk/" - }, - "performio": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "performax.cz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "performio", - "name": "Performio.cz", - "privacy_url": null, - "truste_type": null, - "website_url": "http://performio.cz/" - }, - "perimeterx.net": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "perimeterx.net" - ], - "ghostery_id": "perimeterx.net", - "iab_vendor": null, - "id": "perimeterx.net", - "name": "Perimeterx", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.perimeterx.com/" - }, - "permutive": { - "category": "advertising", - "company_id": "permutive", - "description": null, - "domains": [ - "permutive.com" - ], - "ghostery_id": null, - "iab_vendor": 360, - "id": "permutive", - "name": "Permutive", - "privacy_url": "https://permutive.com/privacy", - "truste_type": null, - "website_url": "http://permutive.com/" - }, - "persgroep": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "persgroep.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "persgroep", - "name": "De Persgroep", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.persgroep.be/" - }, - "petametrics": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "petametrics.com" - ], - "ghostery_id": "2103", - "iab_vendor": null, - "id": "petametrics", - "name": "LiftIgniter", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.liftigniter.com/" - }, - "piguiqproxy.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "piguiqproxy.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "piguiqproxy.com", - "name": "piguiqproxy.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pingdom": { - "category": "site_analytics", - "company_id": "pingdom", - "description": null, - "domains": [ - "pingdom.net" - ], - "ghostery_id": "1526", - "iab_vendor": null, - "id": "pingdom", - "name": "Pingdom", - "privacy_url": "https://www.pingdom.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "https://www.pingdom.com/" - }, - "pinterest": { - "category": "social_media", - "company_id": "pinterest", - "description": null, - "domains": [ - "pinimg.com", - "pinterest.com" - ], - "ghostery_id": "868", - "iab_vendor": null, - "id": "pinterest", - "name": "Pinterest", - "privacy_url": "http://pinterest.com/about/privacy/", - "truste_type": null, - "website_url": "http://pinterest.com/" - }, - "pixalate": { - "category": "advertising", - "company_id": "pixalate", - "description": null, - "domains": [ - "adrta.com" - ], - "ghostery_id": "2368", - "iab_vendor": 384, - "id": "pixalate", - "name": "Pixalate", - "privacy_url": "http://pixalate.com/privacypolicy/", - "truste_type": null, - "website_url": null - }, - "pizzaandads_com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pizzaandads.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pizzaandads_com", - "name": "pizzaandads.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pladform.ru": { - "category": "advertising", - "company_id": "pladform", - "description": null, - "domains": [ - "pladform.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pladform.ru", - "name": "Pladform", - "privacy_url": null, - "truste_type": null, - "website_url": "https://distribution.pladform.ru/" - }, - "platform360": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "pfrm.co" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "platform360", - "name": "Platform360", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.platform360.co/#home" - }, - "platformone": { - "category": "advertising", - "company_id": "daconsortium", - "description": "Platform One develops and offers platforms that lead innovations of digital advertisement and provide new values to advertisers, advertising companies and publishers. ", - "domains": [ - "impact-ad.jp" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "platformone", - "name": "Platform One", - "privacy_url": "https://www.platform-one.co.jp/data/", - "truste_type": "Ad Exchange", - "website_url": "https://www.platform-one.co.jp/" - }, - "playbuzz.com": { - "category": "site_analytics", - "company_id": "playbuzz", - "description": null, - "domains": [ - "playbuzz.com" - ], - "ghostery_id": "2469", - "iab_vendor": 444, - "id": "playbuzz.com", - "name": "Playbuzz", - "privacy_url": "https://www.playbuzz.com/PrivacyPolicy", - "truste_type": null, - "website_url": "https://www.playbuzz.com/" - }, - "plista": { - "category": "advertising", - "company_id": "plista", - "description": null, - "domains": [ - "plista.com" - ], - "ghostery_id": "710", - "iab_vendor": 177, - "id": "plista", - "name": "Plista", - "privacy_url": "https://www.plista.com/about/privacy/", - "truste_type": null, - "website_url": "http://www.plista.com" - }, - "pluso.ru": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "pluso.ru" - ], - "ghostery_id": "1982", - "iab_vendor": null, - "id": "pluso.ru", - "name": "Pluso", - "privacy_url": null, - "truste_type": null, - "website_url": "https://share.pluso.ru/" - }, - "pmddby.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "pmddby.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pmddby.com", - "name": "pmddby.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pnamic.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "pnamic.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pnamic.com", - "name": "pnamic.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "po.st": { - "category": "social_media", - "company_id": "rythmone", - "description": "The only social sharing tool that generates revenue for your website", - "domains": [ - "po.st" - ], - "ghostery_id": "1081", - "iab_vendor": null, - "id": "po.st", - "name": "Po.st", - "privacy_url": "https://www.rhythmone.com/privacy-policy", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.po.st/" - }, - "poirreleast.club": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "poirreleast.club" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "poirreleast.club", - "name": "poirreleast.club", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "polar.me": { - "category": "advertising", - "company_id": "polar_inc", - "description": null, - "domains": [ - "mediavoice.com" - ], - "ghostery_id": "2111", - "iab_vendor": 297, - "id": "polar.me", - "name": "Polar", - "privacy_url": null, - "truste_type": null, - "website_url": "https://polar.me/" - }, - "polldaddy": { - "category": "customer_interaction", - "company_id": "polldaddy", - "description": null, - "domains": [ - "polldaddy.com" - ], - "ghostery_id": "607", - "iab_vendor": null, - "id": "polldaddy", - "name": "Polldaddy", - "privacy_url": "http://polldaddy.com/privacy/", - "truste_type": null, - "website_url": "http://polldaddy.com/" - }, - "polyfill.io": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "polyfill.io" - ], - "ghostery_id": "polyfill.io", - "iab_vendor": null, - "id": "polyfill.io", - "name": "Polyfill.io", - "privacy_url": null, - "truste_type": null, - "website_url": "https://polyfill.io/" - }, - "popads": { - "category": "advertising", - "company_id": "popads", - "description": "PopAds is a paying advertising network specialized in popunders on the Internet.", - "domains": [ - "popads.net", - "popadscdn.net" - ], - "ghostery_id": "838", - "iab_vendor": null, - "id": "popads", - "name": "PopAds", - "privacy_url": "https://www.popads.net/privacy-policy.html", - "truste_type": "Ad Network", - "website_url": "https://www.popads.net/" - }, - "popcash": { - "category": "advertising", - "company_id": "popcash_network", - "description": null, - "domains": [ - "popcash.net" - ], - "ghostery_id": "1941", - "iab_vendor": null, - "id": "popcash", - "name": "Popcash", - "privacy_url": "http://popcash.net/privacy-policy", - "truste_type": null, - "website_url": "http://popcash.net/" - }, - "popin.cc": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "popin.cc" - ], - "ghostery_id": "2047", - "iab_vendor": null, - "id": "popin.cc", - "name": "popIn", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.popin.cc/" - }, - "pornhub": { - "category": "pornvertising", - "company_id": "pornhub", - "description": null, - "domains": [ - "phncdn.com", - "pornhub.com" - ], - "ghostery_id": "c_m9", - "iab_vendor": null, - "id": "pornhub", - "name": "PornHub", - "privacy_url": "https://www.pornhub.com/information#privacy", - "truste_type": null, - "website_url": "https://www.pornhub.com/" - }, - "post_affiliate_pro": { - "category": "advertising", - "company_id": "qualityunit", - "description": null, - "domains": [ - "postaffiliatepro.com" - ], - "ghostery_id": "1411", - "iab_vendor": null, - "id": "post_affiliate_pro", - "name": "Post Affiliate Pro", - "privacy_url": "https://www.qualityunit.com/privacy-policy-quality-unit/", - "truste_type": null, - "website_url": "http://www.qualityunit.com/" - }, - "powerlinks": { - "category": "advertising", - "company_id": "powerlinks", - "description": null, - "domains": [ - "powerlinks.com" - ], - "ghostery_id": "1300", - "iab_vendor": null, - "id": "powerlinks", - "name": "PowerLinks", - "privacy_url": "http://www.powerlinks.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.powerlinks.com/" - }, - "powr.io": { - "category": "site_analytics", - "company_id": "powr", - "description": null, - "domains": [ - "powr.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "powr.io", - "name": "POWr", - "privacy_url": "https://www.powr.io/privacy", - "truste_type": null, - "website_url": "https://www.powr.io/" - }, - "prebid": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "prebid.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "prebid", - "name": "Prebid", - "privacy_url": null, - "truste_type": null, - "website_url": "http://prebid.org/" - }, - "prismamediadigital.com": { - "category": "advertising", - "company_id": "prisma_media_digital", - "description": null, - "domains": [ - "pmdrecrute.com" - ], - "ghostery_id": "1223", - "iab_vendor": null, - "id": "prismamediadigital.com", - "name": "Prisma Media Digital", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.pmdrecrute.com/" - }, - "privy.com": { - "category": "site_analytics", - "company_id": "privy", - "description": "Privy's email list growth platform enables retail marketers to rapidly grow their lists and track online or offline sales. ", - "domains": [ - "privy.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "privy.com", - "name": "Privy", - "privacy_url": "https://privy.com/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "https://privy.com/" - }, - "profitshare": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "profitshare.ro" - ], - "ghostery_id": "2633", - "iab_vendor": null, - "id": "profitshare", - "name": "Profitshare", - "privacy_url": null, - "truste_type": null, - "website_url": "https://profitshare.ro/" - }, - "programattik": { - "category": "advertising", - "company_id": "ttnet", - "description": "Programattik is an advertising platform based in Turkey. ", - "domains": [ - "programattik.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "programattik", - "name": "Programattik", - "privacy_url": "http://www.programattik.com/gizlilik-politikasi.aspx", - "truste_type": "Ad Platform", - "website_url": "http://www.programattik.com/" - }, - "propeller_ads": { - "category": "advertising", - "company_id": "propeller_ads", - "description": null, - "domains": [ - "oclaserver.com", - "onclasrv.com", - "onclickads.net", - "onclkds.com", - "propellerads.com", - "propellerpops.com" - ], - "ghostery_id": "1702", - "iab_vendor": null, - "id": "propeller_ads", - "name": "Propeller Ads", - "privacy_url": "http://www.propellerads.com/privacy", - "truste_type": null, - "website_url": "http://www.propellerads.com/" - }, - "propermedia": { - "category": "site_analytics", - "company_id": "propermedia", - "description": null, - "domains": [ - "proper.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "propermedia", - "name": "Proper Media", - "privacy_url": "https://proper.io/privacypolicy", - "truste_type": null, - "website_url": "https://proper.io/" - }, - "propvideo_net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "propvideo.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "propvideo_net", - "name": "propvideo.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "proxistore.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "proxistore.com" - ], - "ghostery_id": "", - "iab_vendor": 418, - "id": "proxistore.com", - "name": "Proxistore", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.proxistore.com/" - }, - "pscp.tv": { - "category": "social_media", - "company_id": "periscope", - "description": null, - "domains": [ - "pscp.tv" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pscp.tv", - "name": "Periscope", - "privacy_url": "https://www.pscp.tv/privacy", - "truste_type": null, - "website_url": "https://www.pscp.tv/" - }, - "pstatic.net": { - "category": "cdn", - "company_id": "naver", - "description": null, - "domains": [ - "pstatic.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pstatic.net", - "name": "Naver CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.naver.com/" - }, - "psyma": { - "category": "advertising", - "company_id": "psyma", - "description": null, - "domains": [ - "psyma.com" - ], - "ghostery_id": "1850", - "iab_vendor": null, - "id": "psyma", - "name": "Psyma", - "privacy_url": "http://www.psyma.com/data-protection/", - "truste_type": null, - "website_url": "http://www.psyma.com/" - }, - "pub.network": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "pub.network" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pub.network", - "name": "pub.network", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pubmatic": { - "category": "advertising", - "company_id": "pubmatic", - "description": null, - "domains": [ - "pubmatic.com" - ], - "ghostery_id": "333", - "iab_vendor": 76, - "id": "pubmatic", - "name": "PubMatic", - "privacy_url": "https://pubmatic.com/legal/privacy-policy/", - "truste_type": null, - "website_url": "http://www.pubmatic.com/" - }, - "pubnub.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "pubnub.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "pubnub.com", - "name": "PubNub", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.pubnub.com/" - }, - "pulpix.com": { - "category": "advertising", - "company_id": "adyoulike", - "description": null, - "domains": [ - "pulpix.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "pulpix.com", - "name": "Pulpix", - "privacy_url": "https://www.adyoulike.com/privacy_policy.php", - "truste_type": null, - "website_url": "https://www.pulpix.com/" - }, - "pulsepoint": { - "category": "advertising", - "company_id": "pulsepoint_ad_exchange", - "description": null, - "domains": [ - "contextweb.com", - "pulsepoint.com" - ], - "ghostery_id": "302", - "iab_vendor": 81, - "id": "pulsepoint", - "name": "PulsePoint", - "privacy_url": "https://www.pulsepoint.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.contextweb.com/" - }, - "purch": { - "category": "advertising", - "company_id": "purch", - "description": null, - "domains": [ - "purch.com", - "servebom.com" - ], - "ghostery_id": null, - "iab_vendor": 35, - "id": "purch", - "name": "Purch", - "privacy_url": "http://www.purch.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.purch.com/" - }, - "puserving.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "puserving.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "puserving.com", - "name": "puserving.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "push.world": { - "category": "customer_interaction", - "company_id": "push.world", - "description": null, - "domains": [ - "push.world" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "push.world", - "name": "Push.world", - "privacy_url": "https://push.world/en/privacy", - "truste_type": null, - "website_url": "https://push.world/en" - }, - "pushame.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pushame.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pushame.com", - "name": "pushame.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pushcrew": { - "category": "customer_interaction", - "company_id": "pushcrew", - "description": null, - "domains": [ - "pushcrew.com" - ], - "ghostery_id": "2572", - "iab_vendor": null, - "id": "pushcrew", - "name": "Pushcrew", - "privacy_url": "https://pushcrew.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "pusher.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "pusher.com", - "pusherapp.com" - ], - "ghostery_id": "pusher.com", - "iab_vendor": null, - "id": "pusher.com", - "name": "Pusher", - "privacy_url": null, - "truste_type": null, - "website_url": "https://pusher.com/" - }, - "pushnative.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pushnative.com" - ], - "ghostery_id": "pushnative.com", - "iab_vendor": null, - "id": "pushnative.com", - "name": "pushnative.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pushno.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pushno.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pushno.com", - "name": "pushno.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pushwhy.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pushwhy.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pushwhy.com", - "name": "pushwhy.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "pushwoosh.com": { - "category": "customer_interaction", - "company_id": "pushwoosh", - "description": null, - "domains": [ - "pushwoosh.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pushwoosh.com", - "name": "Pushwoosh", - "privacy_url": "https://www.pushwoosh.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.pushwoosh.com/" - }, - "pvclouds.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "pvclouds.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "pvclouds.com", - "name": "pvclouds.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "q_division": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "q-divisioncdn.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "q_division", - "name": "Q-Division", - "privacy_url": null, - "truste_type": null, - "website_url": "https://q-division.de/" - }, - "qq.com": { - "category": "misc", - "company_id": "qq.com", - "description": null, - "domains": [ - "qq.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "qq.com", - "name": "qq.com", - "privacy_url": "http://www.qq.com/privacy.htm", - "truste_type": null, - "website_url": "http://www.qq.com/" - }, - "qualaroo": { - "category": "site_analytics", - "company_id": null, - "description": "A realtime feedback platform for companies that want to learn more about their customers and prospects.", - "domains": [ - "qualaroo.com" - ], - "ghostery_id": "c_2450", - "iab_vendor": null, - "id": "qualaroo", - "name": "Qualaroo", - "privacy_url": "https://qualaroo.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": null - }, - "qualtrics": { - "category": "site_analytics", - "company_id": "qualtrics", - "description": "Qualtrics is the world's leading insight technology provider. That's the classy way of saying we help you get the data and insight you need to make better decisions.", - "domains": [ - "qualtrics.com" - ], - "ghostery_id": "1531", - "iab_vendor": null, - "id": "qualtrics", - "name": "Qualtrics", - "privacy_url": "http://www.qualtrics.com/privacy-statement/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.qualtrics.com/" - }, - "quantcast": { - "category": "advertising", - "company_id": "quantcast", - "description": null, - "domains": [ - "quantcast.com", - "quantserve.com" - ], - "ghostery_id": "16", - "iab_vendor": 11, - "id": "quantcast", - "name": "Quantcast", - "privacy_url": "https://www.quantcast.com/privacy/", - "truste_type": null, - "website_url": "http://www.quantcast.com/" - }, - "quantcount": { - "category": "site_analytics", - "company_id": "quantcast", - "description": null, - "domains": [ - "quantcount.com" - ], - "ghostery_id": "2828", - "iab_vendor": null, - "id": "quantcount", - "name": "Quantcount", - "privacy_url": "https://www.quantcast.com/privacy/", - "truste_type": null, - "website_url": null - }, - "quantum_metric": { - "category": "site_analytics", - "company_id": "quantum_metric", - "description": null, - "domains": [ - "quantummetric.com" - ], - "ghostery_id": "2807", - "iab_vendor": null, - "id": "quantum_metric", - "name": "Quantum Metric", - "privacy_url": "https://www.quantummetric.com/legal/privacy/", - "truste_type": null, - "website_url": "https://www.quantummetric.com/" - }, - "quartic.pl": { - "category": "site_analytics", - "company_id": "quarticon", - "description": null, - "domains": [ - "quarticon.com" - ], - "ghostery_id": "2132", - "iab_vendor": null, - "id": "quartic.pl", - "name": "Quartic", - "privacy_url": "https://www.quarticon.com/privacy-statement/", - "truste_type": null, - "website_url": "https://www.quarticon.com/" - }, - "qubit": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "d3c3cq33003psk.cloudfront.net", - "qubit.com" - ], - "ghostery_id": "764", - "iab_vendor": null, - "id": "qubit", - "name": "Qubit Opentag", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.qubit.com/" - }, - "queue-it": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "queue-it.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "queue-it", - "name": "Queue-it", - "privacy_url": null, - "truste_type": null, - "website_url": "https://queue-it.com/" - }, - "quisma": { - "category": "advertising", - "company_id": "quisma", - "description": null, - "domains": [ - "qservz.com", - "quisma.com" - ], - "ghostery_id": "537", - "iab_vendor": null, - "id": "quisma", - "name": "Quisma", - "privacy_url": "http://privacy.quisma.com/uk/privacy-policy/quisma-technologies/", - "truste_type": null, - "website_url": "http://www.quisma.com/en/" - }, - "quora.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "quora.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "quora.com", - "name": "Quora", - "privacy_url": null, - "truste_type": null, - "website_url": "https://quora.com/" - }, - "r_advertising": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "ads-digitalkeys.com" - ], - "ghostery_id": "1805", - "iab_vendor": 442, - "id": "r_advertising", - "name": "R-Advertising", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.r-advertising.com/" - }, - "rackcdn.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "rackcdn.com" - ], - "ghostery_id": "rackcdn.com", - "iab_vendor": null, - "id": "rackcdn.com", - "name": "Rackspace", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.rackspace.com/" - }, - "radiumone": { - "category": "advertising", - "company_id": "rythmone", - "description": "RadiumOne builds software that automates media buying, making big data actionable for digital marketers. RadiumOne uses programmatic advertising to connect brands to their next customers by incorporating valuable first-party data about behaviors, actions and interests demonstrated by consumers across web and mobile touch points. Using these insights and intelligence, RadiumOne helps marketers activate customer engagement in real-time with relevant and personalized offers, messages, content and ads across devices, locations and screens. Based in San Francisco, RadiumOne has offices across the US, Europe and Australia. To learn more about RadiumOne, please visit http://radiumone.com.", - "domains": [ - "gwallet.com", - "r1-cdn.net" - ], - "ghostery_id": "492", - "iab_vendor": null, - "id": "radiumone", - "name": "RadiumOne", - "privacy_url": "https://www.rhythmone.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "http://www.radiumone.com/index.html" - }, - "rakuten_display": { - "category": "advertising", - "company_id": "rakuten", - "description": null, - "domains": [ - "mediaforge.com", - "rmtag.com" - ], - "ghostery_id": "364", - "iab_vendor": 60, - "id": "rakuten_display", - "name": "Rakuten Display", - "privacy_url": null, - "truste_type": null, - "website_url": "https://rakutenmarketing.com/display" - }, - "rakuten_globalmarket": { - "category": "misc", - "company_id": "rakuten", - "description": null, - "domains": [ - "rakuten.co.jp" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "rakuten_globalmarket", - "name": "Rakuten Global Market", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.rakuten.co.jp/" - }, - "rambler": { - "category": "site_analytics", - "company_id": " a&nn_investments ", - "description": null, - "domains": [ - "rambler.ru", - "top100.ru" - ], - "ghostery_id": "c_672", - "iab_vendor": null, - "id": "rambler", - "name": "Rambler&Co", - "privacy_url": null, - "truste_type": null, - "website_url": "https://top100.rambler.ru/" - }, - "rawgit": { - "category": "cdn", - "company_id": null, - "description": "RawGit serves raw files directly from GitHub with proper content-type headers. ", - "domains": [ - "rawgit.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "rawgit", - "name": "RawGit", - "privacy_url": "https://rawgit.com/", - "truste_type": "Website Tools", - "website_url": "http://rawgit.com/" - }, - "raygun": { - "category": "advertising", - "company_id": "raygun", - "description": null, - "domains": [ - "raygun.io" - ], - "ghostery_id": "2373", - "iab_vendor": null, - "id": "raygun", - "name": "Raygun", - "privacy_url": "https://raygun.com/privacy", - "truste_type": null, - "website_url": null - }, - "rcs.it": { - "category": "misc", - "company_id": "rcs", - "description": null, - "domains": [ - "rcsmediagroup.it" - ], - "ghostery_id": "1535", - "iab_vendor": null, - "id": "rcs.it", - "name": "RCS", - "privacy_url": "http://www.rcsmediagroup.it/pagine/informativa-privacy-e-cookie-policy/", - "truste_type": null, - "website_url": "http://www.rcsmediagroup.it/" - }, - "readspeaker.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "readspeaker.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "readspeaker.com", - "name": "ReadSpeaker", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.readspeaker.com/" - }, - "realperson.de": { - "category": "customer_interaction", - "company_id": "optimise_it", - "description": null, - "domains": [ - "realperson.de" - ], - "ghostery_id": "realperson.de", - "iab_vendor": null, - "id": "realperson.de", - "name": "Realperson Chat", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.optimise-it.de/" - }, - "realytics": { - "category": "site_analytics", - "company_id": "realytics", - "description": null, - "domains": [ - "dcniko1cv0rz.cloudfront.net" - ], - "ghostery_id": "2649", - "iab_vendor": null, - "id": "realytics", - "name": "Realytics", - "privacy_url": "https://www.realytics.io/platform-privacy-policy/", - "truste_type": null, - "website_url": null - }, - "realytics.io": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "realytics.io" - ], - "ghostery_id": "2649", - "iab_vendor": null, - "id": "realytics.io", - "name": "realytics.io", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.realytics.io/" - }, - "recettes.net": { - "category": "misc", - "company_id": "recettes.net", - "description": null, - "domains": [ - "recettes.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "recettes.net", - "name": "Recettes.net", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.recettes.net/" - }, - "recreativ": { - "category": "advertising", - "company_id": "recreativ", - "description": null, - "domains": [ - "recreativ.ru" - ], - "ghostery_id": "1315", - "iab_vendor": null, - "id": "recreativ", - "name": "Recreativ", - "privacy_url": "https://recreativ.ru/site/policy", - "truste_type": null, - "website_url": "http://recreativ.ru/" - }, - "redblue_de": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "redblue.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "redblue_de", - "name": "redblue", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.redblue.de/" - }, - "redcdn.pl": { - "category": "cdn", - "company_id": "atende_software", - "description": null, - "domains": [ - "atendesoftware.pl" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "redcdn.pl", - "name": "redGalaxy CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.atendesoftware.pl/" - }, - "reddit": { - "category": "social_media", - "company_id": "reddit", - "description": "A platform for online communities to submit links, create content, and have discussions about whatever interests them", - "domains": [ - "redd.it", - "reddit-image.s3.amazonaws.com", - "reddit.com", - "redditmedia.com", - "redditstatic.com" - ], - "ghostery_id": "1094", - "iab_vendor": null, - "id": "reddit", - "name": "Reddit", - "privacy_url": "http://www.reddit.com/help/privacypolicy", - "truste_type": "Social / Sharing Tools", - "website_url": "http://reddit.com" - }, - "redtube.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "rdtcdn.com", - "redtube.com" - ], - "ghostery_id": "redtube.com", - "iab_vendor": null, - "id": "redtube.com", - "name": "redtube.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "reed_business_information": { - "category": "site_analytics", - "company_id": "andera_partners", - "description": null, - "domains": [ - "reedbusiness.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "reed_business_information", - "name": "Reed Business Information", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.reedbusiness.com/" - }, - "reembed.com": { - "category": "audio_video_player", - "company_id": "reembed", - "description": null, - "domains": [ - "reembed.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "reembed.com", - "name": "reEmbed", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.reembed.com/" - }, - "reevoo.com": { - "category": "site_analytics", - "company_id": "reevoo", - "description": null, - "domains": [ - "reevoo.com" - ], - "ghostery_id": "2222", - "iab_vendor": null, - "id": "reevoo.com", - "name": "Reevoo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.reevoo.com/en/" - }, - "refined_labs": { - "category": "advertising", - "company_id": "refined_labs", - "description": null, - "domains": [ - "refinedads.com" - ], - "ghostery_id": "1175", - "iab_vendor": null, - "id": "refined_labs", - "name": "Refined Labs", - "privacy_url": " https://www.refinedlabs.com/datenschutz-website", - "truste_type": null, - "website_url": "http://www.refinedlabs.com" - }, - "relap": { - "category": "advertising", - "company_id": null, - "description": "Relap.io \u2014 is a recommendation engine integrated into a website.", - "domains": [ - "relap.io" - ], - "ghostery_id": "3023", - "iab_vendor": null, - "id": "relap", - "name": "Relap", - "privacy_url": "https://relap.io/", - "truste_type": "Ad Platform", - "website_url": "https://relap.io/" - }, - "relevant4.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "relevant4.com" - ], - "ghostery_id": "relevant4.com", - "iab_vendor": null, - "id": "relevant4.com", - "name": "relevant4 GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.relevant4.com/" - }, - "remintrex": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "remintrex.com" - ], - "ghostery_id": "remintrex.com", - "iab_vendor": null, - "id": "remintrex", - "name": "Remintrex", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.remintrex.com/" - }, - "remove.video": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "remove.video" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "remove.video", - "name": "remove.video", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "republer.com": { - "category": "site_analytics", - "company_id": "republer", - "description": null, - "domains": [ - "republer.com" - ], - "ghostery_id": "3017", - "iab_vendor": null, - "id": "republer.com", - "name": "Republer", - "privacy_url": "http://republer.com/privacy.html", - "truste_type": null, - "website_url": "http://republer.com/" - }, - "research_now": { - "category": "advertising", - "company_id": "research_now", - "description": null, - "domains": [ - "researchnow.com" - ], - "ghostery_id": "1727", - "iab_vendor": 125, - "id": "research_now", - "name": "Research Now", - "privacy_url": "https://www.valuedopinions.co.uk/privacy", - "truste_type": null, - "website_url": "http://www.researchnow.com/" - }, - "resultspage.com": { - "category": "site_analytics", - "company_id": "sli_system", - "description": null, - "domains": [ - "sli-system.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "resultspage.com", - "name": "SLI Systems", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.sli-systems.com/" - }, - "retailrocket.net": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "retailrocket.net", - "retailrocket.ru" - ], - "ghostery_id": "2270", - "iab_vendor": null, - "id": "retailrocket.net", - "name": "Retail Rocket", - "privacy_url": null, - "truste_type": null, - "website_url": "https://retailrocket.net/" - }, - "reuters_media": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "reutersmedia.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "reuters_media", - "name": "Reuters media", - "privacy_url": null, - "truste_type": null, - "website_url": "https://reuters.com" - }, - "revcontent": { - "category": "advertising", - "company_id": "revcontent", - "description": null, - "domains": [ - "revcontent.com" - ], - "ghostery_id": "2195", - "iab_vendor": 203, - "id": "revcontent", - "name": "RevContent", - "privacy_url": "https://faq.revcontent.com/customer/en/portal/articles/2703838-revcontent-s-privacy-and-cookie-policy", - "truste_type": null, - "website_url": "https://www.revcontent.com/" - }, - "revenue_hits": { - "category": "advertising", - "company_id": "intango", - "description": null, - "domains": [ - "clksite.com", - "imageshack.host" - ], - "ghostery_id": "1065", - "iab_vendor": null, - "id": "revenue_hits", - "name": "RevenueHits", - "privacy_url": "https://intango.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.revenuehits.com/" - }, - "rhythmone_beacon": { - "category": "advertising", - "company_id": "rythmone", - "description": "RhythmOne (formerly Burst Media) is a leading provider of advertising representation, services and technology to web publishers and online media companies. RhythmOne enables advertisers to reach finely segmented audiences across mobile and desktop devices. RhythmOne also offers RhythmXchange, a programmatically enabled platform that connects advertisers with web publishers by automating the buying and selling of online ads. RhythmOne firmly believes the privacy of web users must be protected. For more information, please visit RhythmOne's privacy policy.", - "domains": [ - "1rx.io" - ], - "ghostery_id": "2844", - "iab_vendor": 36, - "id": "rhythmone_beacon", - "name": "Rhythmone Beacon", - "privacy_url": "https://www.rhythmone.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": null - }, - "ria.ru": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "ria.ru" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "ria.ru", - "name": "ria.ru", - "privacy_url": null, - "truste_type": null, - "website_url": "https://ria.ru/" - }, - "richrelevance": { - "category": "advertising", - "company_id": "richrelevance", - "description": "RichRelevance is the global leader in omnichannel personalization and is used by more than 200 multinational companies to deliver the most relevant and innovative customer experiences across web, mobile and in store. ", - "domains": [ - "ics0.com", - "richrelevance.com" - ], - "ghostery_id": "224", - "iab_vendor": null, - "id": "richrelevance", - "name": "RichRelevance", - "privacy_url": "http://www.richrelevance.com/privacy", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.richrelevance.com/" - }, - "ringier.ch": { - "category": "site_analytics", - "company_id": "ringier", - "description": null, - "domains": [ - "ringier.ch" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ringier.ch", - "name": "Ringier", - "privacy_url": "http://ringier.ch/en/data-privacy", - "truste_type": null, - "website_url": "http://ringier.ch/en" - }, - "riskfield.com": { - "category": "customer_interaction", - "company_id": "riskfield", - "description": null, - "domains": [ - "riskfield.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "riskfield.com", - "name": "Riskfield", - "privacy_url": "https://www.riskified.com/privacy/", - "truste_type": null, - "website_url": "https://www.riskified.com/" - }, - "rncdn3.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "rncdn3.com" - ], - "ghostery_id": "rncdn3.com", - "iab_vendor": null, - "id": "rncdn3.com", - "name": "Reflected Networks", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.rncdn3.com/" - }, - "roblox": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "rbxcdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "roblox", - "name": "Roblox", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.roblox.com/" - }, - "rockerbox": { - "category": "site_analytics", - "company_id": "rockerbox", - "description": null, - "domains": [ - "getrockerbox.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "rockerbox", - "name": "Rockerbox", - "privacy_url": "https://www.rockerbox.com/privacy", - "truste_type": null, - "website_url": "https://www.rockerbox.com/privacy" - }, - "rocket_fuel": { - "category": "advertising", - "company_id": "sizmek", - "description": null, - "domains": [ - "rfihub.com", - "rfihub.net", - "ru4.com", - "xplusone.com" - ], - "ghostery_id": "192", - "iab_vendor": null, - "id": "rocket_fuel", - "name": "Rocket Fuel", - "privacy_url": "https://www.sizmek.com/privacy-policy/", - "truste_type": null, - "website_url": "http://rocketfuelinc.com/" - }, - "rollbar": { - "category": "site_analytics", - "company_id": "rollbar", - "description": null, - "domains": [ - "d37gvrvc0wt4s1.cloudfront.net" - ], - "ghostery_id": "1828", - "iab_vendor": null, - "id": "rollbar", - "name": "Rollbar", - "privacy_url": "http://www.rollbar.com/privacy", - "truste_type": null, - "website_url": "http://www.rollbar.com/" - }, - "roq.ad": { - "category": "advertising", - "company_id": "roq.ad", - "description": null, - "domains": [ - "rqtrk.eu" - ], - "ghostery_id": "c_m8", - "iab_vendor": 4, - "id": "roq.ad", - "name": "Roq.ad", - "privacy_url": "https://www.roq.ad/privacy-policy", - "truste_type": null, - "website_url": "https://www.roq.ad/" - }, - "routenplaner-karten.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "routenplaner-karten.com" - ], - "ghostery_id": "routenplaner-karten.com", - "iab_vendor": null, - "id": "routenplaner-karten.com", - "name": "Routenplaner Karten", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.routenplaner-karten.com/" - }, - "rtb_house": { - "category": "advertising", - "company_id": "rtb_house", - "description": null, - "domains": [ - "creativecdn.com" - ], - "ghostery_id": "1880", - "iab_vendor": 16, - "id": "rtb_house", - "name": "RTB House", - "privacy_url": "https://www.rtbhouse.com/privacy/", - "truste_type": null, - "website_url": "http://en.adpilot.com/" - }, - "rtblab": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "rvty.net" - ], - "ghostery_id": "1196", - "iab_vendor": null, - "id": "rtblab", - "name": "RTBmarkt", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.rtbmarkt.de/en/home/" - }, - "rtbsuperhub.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "rtbsuperhub.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "rtbsuperhub.com", - "name": "rtbsuperhub.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "rtl_group": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "rtl.de", - "static-fra.de", - "technical-service.net" - ], - "ghostery_id": "c_2991", - "iab_vendor": null, - "id": "rtl_group", - "name": "RTL Group", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "rtmark.net": { - "category": "advertising", - "company_id": "big_wall_vision", - "description": null, - "domains": [ - "rtmark.net" - ], - "ghostery_id": "rtmark.net", - "iab_vendor": null, - "id": "rtmark.net", - "name": "Advertising Technologies Ltd", - "privacy_url": null, - "truste_type": null, - "website_url": "http://rtmark.net/" - }, - "rubicon": { - "category": "advertising", - "company_id": "rubicon_project", - "description": null, - "domains": [ - "dpclk.com", - "mobsmith.com", - "nearbyad.com", - "rubiconproject.com" - ], - "ghostery_id": "60", - "iab_vendor": 52, - "id": "rubicon", - "name": "Rubicon", - "privacy_url": "http://rubiconproject.com/rubicon-project-yield-optimization-privacy-policy/", - "truste_type": null, - "website_url": "http://rubiconproject.com/" - }, - "run": { - "category": "advertising", - "company_id": "run", - "description": null, - "domains": [ - "runadtag.com", - "rundsp.com" - ], - "ghostery_id": "1947", - "iab_vendor": null, - "id": "run", - "name": "RUN", - "privacy_url": "http://www.runads.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.rundsp.com/" - }, - "runative": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "un-syndicate.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "runative", - "name": "Runative", - "privacy_url": null, - "truste_type": null, - "website_url": "https://runative.com/" - }, - "runmewivel.com": { - "category": "hosting", - "company_id": null, - "description": null, - "domains": [ - "runmewivel.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "runmewivel.com", - "name": "runmewivel.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "rythmxchange": { - "category": "audio_video_player", - "company_id": "rythmone", - "description": null, - "domains": [ - "rhythmxchange.com" - ], - "ghostery_id": "2323", - "iab_vendor": null, - "id": "rythmxchange", - "name": "Rythmxchange", - "privacy_url": "https://www.rhythmone.com/privacy-policy", - "truste_type": null, - "website_url": null - }, - "s24_com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "s24.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "s24_com", - "name": "Shopping24 internet group", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.s24.com/" - }, - "s3xified.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "s3xified.com" - ], - "ghostery_id": "s3xified.com", - "iab_vendor": null, - "id": "s3xified.com", - "name": "s3xified.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sailthru_horizon": { - "category": "advertising", - "company_id": "sailthru", - "description": null, - "domains": [ - "sail-horizon.com", - "sail-personalize.com", - "sailthru.com" - ], - "ghostery_id": "983", - "iab_vendor": null, - "id": "sailthru_horizon", - "name": "Sailthru Horizon", - "privacy_url": "http://www.sailthru.com/legal/#privacy-statement", - "truste_type": null, - "website_url": "https://www.sailthru.com" - }, - "salecycle": { - "category": "advertising", - "company_id": "salecycle", - "description": null, - "domains": [ - "d16fk4ms6rqz1v.cloudfront.net", - "salecycle.com" - ], - "ghostery_id": "1130", - "iab_vendor": null, - "id": "salecycle", - "name": "SaleCycle", - "privacy_url": "http://www.salecycle.com/cookie-policy/", - "truste_type": null, - "website_url": "http://www.salecycle.com/" - }, - "salesforce.com": { - "category": "site_analytics", - "company_id": "salesforce", - "description": null, - "domains": [ - "force.com", - "salesforce.com" - ], - "ghostery_id": "62", - "iab_vendor": null, - "id": "salesforce.com", - "name": "Salesforce", - "privacy_url": "https://www.salesforce.com/eu/company/privacy/", - "truste_type": null, - "website_url": "https://www.salesforce.com/eu/" - }, - "salesforce_live_agent": { - "category": "customer_interaction", - "company_id": "salesforce", - "description": null, - "domains": [ - "liveagentforsalesforce.com", - "salesforceliveagent.com" - ], - "ghostery_id": "1063", - "iab_vendor": null, - "id": "salesforce_live_agent", - "name": "Salesforce Live Agent", - "privacy_url": "https://www.salesforce.com/eu/company/privacy/", - "truste_type": null, - "website_url": "http://www.salesforce.com/" - }, - "salesmanago.pl": { - "category": "advertising", - "company_id": "sales_manago", - "description": null, - "domains": [ - "salesmanago.com" - ], - "ghostery_id": "2403", - "iab_vendor": null, - "id": "salesmanago.pl", - "name": "SALESmanago", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.salesmanago.com/" - }, - "samba.tv": { - "category": "advertising", - "company_id": "samba_tv", - "description": null, - "domains": [ - "samba.tv" - ], - "ghostery_id": "2845", - "iab_vendor": 351, - "id": "samba.tv", - "name": "Samba TV", - "privacy_url": "https://samba.tv/legal/privacy-policy-2-28-2018/", - "truste_type": null, - "website_url": "https://samba.tv/" - }, - "sanoma.fi": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "ilsemedia.nl", - "sanoma.fi" - ], - "ghostery_id": "995", - "iab_vendor": null, - "id": "sanoma.fi", - "name": "Sanoma", - "privacy_url": null, - "truste_type": null, - "website_url": "https://sanoma.com/" - }, - "sap_xm": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "sap-xm.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sap_xm", - "name": "SAP Exchange Media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://sapexchange.media/" - }, - "sape.ru": { - "category": "site_analytics", - "company_id": "sape", - "description": null, - "domains": [ - "sape.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sape.ru", - "name": "Sape", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sas": { - "category": "site_analytics", - "company_id": "sas", - "description": null, - "domains": [ - "aimatch.com", - "sas.com" - ], - "ghostery_id": "1407", - "iab_vendor": null, - "id": "sas", - "name": "SAS", - "privacy_url": "http://www.sas.com/en_us/legal/privacy.html", - "truste_type": null, - "website_url": "http://www.sas.com/" - }, - "scarabresearch": { - "category": "site_analytics", - "company_id": "emarsys", - "description": null, - "domains": [ - "scarabresearch.com" - ], - "ghostery_id": "scarabresearch.com", - "iab_vendor": null, - "id": "scarabresearch", - "name": "Scarab Research", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.scarabresearch.com/" - }, - "scene7.com": { - "category": "advertising", - "company_id": "adobe", - "description": null, - "domains": [ - "scene7.com" - ], - "ghostery_id": "scene7.com", - "iab_vendor": 264, - "id": "scene7.com", - "name": "Adobe Dynamic Media (Scene7)", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": null - }, - "schibsted": { - "category": "misc", - "company_id": "schibsted_asa", - "description": null, - "domains": [ - "schibsted.com", - "schibsted.io" - ], - "ghostery_id": null, - "iab_vendor": 310, - "id": "schibsted", - "name": "Schibsted Media Group", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.schibsted.com/" - }, - "schneevonmorgen.com": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "schneevonmorgen.com", - "svonm.com" - ], - "ghostery_id": "schneevonmorgen.com", - "iab_vendor": null, - "id": "schneevonmorgen.com", - "name": "Schnee von Morgen", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.schneevonmorgen.com/" - }, - "scoota": { - "category": "advertising", - "company_id": "rockabox", - "description": null, - "domains": [ - "rockabox.co" - ], - "ghostery_id": null, - "iab_vendor": 308, - "id": "scoota", - "name": "Scoota", - "privacy_url": "http://scoota.com/privacy-policy", - "truste_type": null, - "website_url": "http://scoota.com/" - }, - "scorecard_research_beacon": { - "category": "advertising", - "company_id": "comscore", - "description": null, - "domains": [ - "comscore.com", - "scorecardresearch.com", - "scoreresearch.com", - "scrsrch.com", - "securestudies.com" - ], - "ghostery_id": "187", - "iab_vendor": null, - "id": "scorecard_research_beacon", - "name": "ScoreCard Research", - "privacy_url": "https://www.comscore.com/About-comScore/Privacy-Policy", - "truste_type": null, - "website_url": "https://www.scorecardresearch.com/" - }, - "scribblelive": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "scribblelive.com" - ], - "ghostery_id": "c_3436", - "iab_vendor": null, - "id": "scribblelive", - "name": "ScribbleLive", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "scroll": { - "category": "essential", - "company_id": "scroll", - "description": null, - "domains": [ - "scroll.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "scroll", - "name": "Scroll", - "privacy_url": null, - "truste_type": null, - "website_url": "https://scroll.com/" - }, - "seeding_alliance": { - "category": "advertising", - "company_id": "stroer", - "description": null, - "domains": [ - "nativendo.de" - ], - "ghostery_id": null, - "iab_vendor": 371, - "id": "seeding_alliance", - "name": "Seeding Alliance", - "privacy_url": "https://www.stroeer.de/fileadmin/user_upload/Datenschutz.pdf", - "truste_type": null, - "website_url": "http://seeding-alliance.de" - }, - "seedtag.com": { - "category": "advertising", - "company_id": "seedtag", - "description": null, - "domains": [ - "seedtag.com" - ], - "ghostery_id": null, - "iab_vendor": 157, - "id": "seedtag.com", - "name": "Seedtag", - "privacy_url": "https://www.seedtag.com/en/privacy-policy/", - "truste_type": null, - "website_url": "https://www.seedtag.com/en/" - }, - "segment": { - "category": "site_analytics", - "company_id": "segment", - "description": "Segment is one place to collect customer data and send it to your tools for analytics, marketing automation, and raw data access with SQL. Implement all of your event tracking with Segment\u2019s single API instead of wrangling a new API for every new tool or database. Segment's integrations let you send your data to hundreds of tools and databases.", - "domains": [ - "d2dq2ahtl5zl1z.cloudfront.net", - "d47xnnr8b1rki.cloudfront.net", - "segment.com", - "segment.io" - ], - "ghostery_id": "933", - "iab_vendor": null, - "id": "segment", - "name": "Segment", - "privacy_url": "https://segment.com/docs/legal/privacy/", - "truste_type": "Attribution / Analytics", - "website_url": "https://segment.io/" - }, - "segmento": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "rutarget.ru" - ], - "ghostery_id": "1231", - "iab_vendor": null, - "id": "segmento", - "name": "Segmento", - "privacy_url": null, - "truste_type": null, - "website_url": "https://segmento.ru/en" - }, - "sekindo": { - "category": "advertising", - "company_id": "sekindo", - "description": null, - "domains": [ - "sekindo.com" - ], - "ghostery_id": "1174", - "iab_vendor": null, - "id": "sekindo", - "name": "Sekindo", - "privacy_url": "http://www.sekindo.com/help/privacy.php", - "truste_type": null, - "website_url": "http://www.sekindo.com/" - }, - "sellpoints": { - "category": "advertising", - "company_id": "conversion_point", - "description": null, - "domains": [ - "sellpoint.net", - "sellpoints.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sellpoints", - "name": "Sellpoints", - "privacy_url": "https://www.conversionpoint.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.sellpoints.com/" - }, - "semantiqo.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "semantiqo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "semantiqo.com", - "name": "Semantiqo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://semantiqo.com/" - }, - "semasio": { - "category": "advertising", - "company_id": "semasio", - "description": null, - "domains": [ - "semasio.net" - ], - "ghostery_id": "1195", - "iab_vendor": 84, - "id": "semasio", - "name": "Semasio", - "privacy_url": "http://www.semasio.com/privacy-policy/", - "truste_type": null, - "website_url": "http://semasio.com/" - }, - "semknox.com": { - "category": "essential", - "company_id": null, - "description": null, - "domains": [ - "semknox.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "semknox.com", - "name": "SEMKNOX GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "https://semknox.com/" - }, - "sendpulse.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "sendpulse.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sendpulse.com", - "name": "SendPulse", - "privacy_url": null, - "truste_type": null, - "website_url": "https://sendpulse.com/" - }, - "sentifi.com": { - "category": "site_analytics", - "company_id": "sentifi", - "description": null, - "domains": [ - "sentifi.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sentifi.com", - "name": "Sentifi", - "privacy_url": "https://sentifi.com/page/privacy/", - "truste_type": null, - "website_url": "https://sentifi.com/" - }, - "sentry": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "ravenjs.com", - "sentry.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sentry", - "name": "Sentry", - "privacy_url": null, - "truste_type": null, - "website_url": "https://sentry.io/" - }, - "sessioncam": { - "category": "site_analytics", - "company_id": "sessioncam", - "description": null, - "domains": [ - "d2oh4tlt9mrke9.cloudfront.net", - "sessioncam.com" - ], - "ghostery_id": "1379", - "iab_vendor": null, - "id": "sessioncam", - "name": "SessionCam", - "privacy_url": "http://www.sessioncam.com/privacy-policy-cookies/", - "truste_type": null, - "website_url": "http://www.sessioncam.com/" - }, - "sevenone_media": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "71i.de" - ], - "ghostery_id": "c_m11", - "iab_vendor": null, - "id": "sevenone_media", - "name": "SevenOne Media", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sexadnetwork": { - "category": "pornvertising", - "company_id": "sexadnetwork", - "description": null, - "domains": [ - "sexad.net" - ], - "ghostery_id": "1071", - "iab_vendor": null, - "id": "sexadnetwork", - "name": "SexAdNetwork", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.sexadnetwork.com/" - }, - "sexypartners.net": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "sexypartners.net" - ], - "ghostery_id": "sexypartners.net", - "iab_vendor": null, - "id": "sexypartners.net", - "name": "sexypartners.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "seznam": { - "category": "site_analytics", - "company_id": "seznam", - "description": null, - "domains": [ - "imedia.cz", - "szn.cz" - ], - "ghostery_id": "2707", - "iab_vendor": null, - "id": "seznam", - "name": "Seznam", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "shareaholic": { - "category": "advertising", - "company_id": "shareaholic", - "description": "Shareaholic is a content discovery, amplification and engagement platform that helps marketers and publishers promote their content.", - "domains": [ - "dtym7iokkjlif.cloudfront.net", - "shareaholic.com" - ], - "ghostery_id": "1421", - "iab_vendor": null, - "id": "shareaholic", - "name": "Shareaholic", - "privacy_url": "https://www.shareaholic.com/privacy/", - "truste_type": "Social / Sharing Tools", - "website_url": "hhttps://www.shareaholic.com/" - }, - "sharepoint": { - "category": "customer_interaction", - "company_id": "microsoft", - "description": null, - "domains": [ - "sharepointonline.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sharepoint", - "name": "Microsoft SharePoint", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": "https://products.office.com/en-us/sharepoint/sharepoint-online-collaboration-software" - }, - "sharethis": { - "category": "advertising", - "company_id": "sharethis", - "description": null, - "domains": [ - "sharethis.com" - ], - "ghostery_id": "52", - "iab_vendor": 33, - "id": "sharethis", - "name": "ShareThis", - "privacy_url": "http://www.sharethis.com/privacy/", - "truste_type": null, - "website_url": "http://sharethis.com/" - }, - "sharethrough": { - "category": "advertising", - "company_id": "sharethrough", - "description": null, - "domains": [ - "shareth.ru", - "sharethrough.com" - ], - "ghostery_id": "1368", - "iab_vendor": 80, - "id": "sharethrough", - "name": "ShareThrough", - "privacy_url": "https://platform-cdn.sharethrough.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.sharethrough.com/" - }, - "sheego.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "sheego.de" - ], - "ghostery_id": "sheego.de", - "iab_vendor": null, - "id": "sheego.de", - "name": "sheego.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "shopauskunft.de": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "shopauskunft.de" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "shopauskunft.de", - "name": "ShopAuskunft.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://shopauskunft.de/" - }, - "shopgate.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "shopgate.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "shopgate.com", - "name": "Shopgate", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.shopgate.com/" - }, - "shopify_stats": { - "category": "advertising", - "company_id": "shopify", - "description": null, - "domains": [ - "shopify.com" - ], - "ghostery_id": "1272", - "iab_vendor": null, - "id": "shopify_stats", - "name": "Shopify Stats", - "privacy_url": "http://www.shopify.com/legal/privacy", - "truste_type": null, - "website_url": "http://www.shopify.com/" - }, - "shopifycdn.com": { - "category": "cdn", - "company_id": "shopify", - "description": null, - "domains": [ - "shopifycdn.com" - ], - "ghostery_id": "3064", - "iab_vendor": null, - "id": "shopifycdn.com", - "name": "Shopify CDN", - "privacy_url": "http://www.shopify.com/legal/privacy", - "truste_type": null, - "website_url": "https://www.shopify.com/" - }, - "shopifycloud.com": { - "category": "customer_interaction", - "company_id": "shopify", - "description": null, - "domains": [ - "shopifycloud.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "shopifycloud.com", - "name": "Shopify Cloud", - "privacy_url": "http://www.shopify.com/legal/privacy", - "truste_type": null, - "website_url": "https://www.shopify.com/" - }, - "shopping_com": { - "category": "advertising", - "company_id": "ebay_partner_network", - "description": null, - "domains": [ - "shoppingshadow.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "shopping_com", - "name": "Shopping.com", - "privacy_url": "https://partnernetwork.ebay.com/en/legal#privacy-policy", - "truste_type": null, - "website_url": null - }, - "shopzilla": { - "category": "advertising", - "company_id": "symphony_technology_group", - "description": null, - "domains": [ - "shopzilla.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "shopzilla", - "name": "Shopzilla", - "privacy_url": "http://www.stgpartners.com/terms-of-use/", - "truste_type": null, - "website_url": "http://www.shopzilla.com/" - }, - "shortnews": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "shortnews.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "shortnews", - "name": "ShortNews.de", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.shortnews.de/#" - }, - "shutterstock": { - "category": "misc", - "company_id": "shutterstock_inc", - "description": null, - "domains": [ - "shutterstock.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "shutterstock", - "name": "Shutterstock", - "privacy_url": "https://www.shutterstock.com/privacy", - "truste_type": null, - "website_url": "https://www.shutterstock.com/" - }, - "siblesectiveal.club": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "siblesectiveal.club" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "siblesectiveal.club", - "name": "siblesectiveal.club", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sift_science": { - "category": "site_analytics", - "company_id": "sift_science", - "description": null, - "domains": [ - "dtlilztwypawv.cloudfront.net", - "siftscience.com" - ], - "ghostery_id": "1637", - "iab_vendor": null, - "id": "sift_science", - "name": "Sift Science", - "privacy_url": "https://siftscience.com/service-privacy", - "truste_type": null, - "website_url": "https://siftscience.com/" - }, - "signal": { - "category": "essential", - "company_id": "signal_digital", - "description": "OneSignal is a complete push notification solution for mobile apps.", - "domains": [ - "btstatic.com", - "signal.co", - "thebrighttag.com" - ], - "ghostery_id": "508", - "iab_vendor": 261, - "id": "signal", - "name": "Signal", - "privacy_url": "https://www.signal.co/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "https://www.signal.co/" - }, - "similardeals.net": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "similardeals.net" - ], - "ghostery_id": "similardeals.net", - "iab_vendor": null, - "id": "similardeals.net", - "name": "SimilarDeals", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.similardeals.net/" - }, - "simpli.fi": { - "category": "advertising", - "company_id": "simpli.fi", - "description": null, - "domains": [ - "simpli.fi" - ], - "ghostery_id": "486", - "iab_vendor": 73, - "id": "simpli.fi", - "name": "Simpli.fi", - "privacy_url": "https://www.simpli.fi/site-privacy-policy2/", - "truste_type": null, - "website_url": "http://www.simpli.fi" - }, - "sina_cdn": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "sinaimg.cn" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sina_cdn", - "name": "Sina CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.sina.com.cn/" - }, - "sirdata": { - "category": "site_analytics", - "company_id": "sirdata", - "description": "Sirdata is a self-service, third party data-collecting platform that specializes in the collection of behavioural data, predictive targeting and selling of audience segments. ", - "domains": [ - "sddan.com" - ], - "ghostery_id": "2659", - "iab_vendor": 53, - "id": "sirdata", - "name": "Sirdata", - "privacy_url": "https://www.sirdata.com/privacy/", - "truste_type": "Ad Exchange", - "website_url": null - }, - "site24x7": { - "category": "site_analytics", - "company_id": "zoho_corp", - "description": null, - "domains": [ - "site24x7rum.com", - "site24x7rum.eu" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "site24x7", - "name": "Site24x7", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.site24x7.com/" - }, - "siteimprove": { - "category": "site_analytics", - "company_id": "siteimprove", - "description": null, - "domains": [ - "siteimprove.com" - ], - "ghostery_id": "966", - "iab_vendor": null, - "id": "siteimprove", - "name": "Siteimprove", - "privacy_url": "http://siteimprove.com/privacy-policy/", - "truste_type": null, - "website_url": "http://siteimprove.com" - }, - "siteimprove_analytics": { - "category": "site_analytics", - "company_id": "siteimprove", - "description": null, - "domains": [ - "siteimproveanalytics.com" - ], - "ghostery_id": "2452", - "iab_vendor": null, - "id": "siteimprove_analytics", - "name": "SiteImprove Analytics", - "privacy_url": "http://siteimprove.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "sitelabweb.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "sitelabweb.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sitelabweb.com", - "name": "sitelabweb.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sitescout": { - "category": "advertising", - "company_id": "sitescout", - "description": null, - "domains": [ - "sitescout.com" - ], - "ghostery_id": "860", - "iab_vendor": null, - "id": "sitescout", - "name": "SiteScout", - "privacy_url": "http://www.sitescout.com/privacy/", - "truste_type": null, - "website_url": "http://www.sitescout.com" - }, - "sixt-neuwagen.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "sixt-neuwagen.de" - ], - "ghostery_id": "sixt-neuwagen.de", - "iab_vendor": null, - "id": "sixt-neuwagen.de", - "name": "sixt-neuwagen.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sizmek": { - "category": "advertising", - "company_id": "sizmek", - "description": null, - "domains": [ - "serving-sys.com" - ], - "ghostery_id": "316", - "iab_vendor": 68, - "id": "sizmek", - "name": "Sizmek", - "privacy_url": "https://www.sizmek.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.mediamind.com/" - }, - "skadtec.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "skadtec.com" - ], - "ghostery_id": "skadtec.com", - "iab_vendor": null, - "id": "skadtec.com", - "name": "GP One GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.gp-one.com/" - }, - "skimlinks": { - "category": "advertising", - "company_id": "skimlinks", - "description": null, - "domains": [ - "redirectingat.com", - "skimlinks.com", - "skimresources.com" - ], - "ghostery_id": "375", - "iab_vendor": null, - "id": "skimlinks", - "name": "SkimLinks", - "privacy_url": "http://skimlinks.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.skimlinks.com/" - }, - "skype": { - "category": "customer_interaction", - "company_id": "microsoft", - "description": null, - "domains": [ - "skype.com", - "skypeassets.com" - ], - "ghostery_id": "1991", - "iab_vendor": null, - "id": "skype", - "name": "Skype", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": "http://www.skype.com" - }, - "skyscnr.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "skyscnr.com" - ], - "ghostery_id": "skyscnr.com", - "iab_vendor": null, - "id": "skyscnr.com", - "name": "Skyscanner CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.skyscanner.net/" - }, - "smaato": { - "category": "advertising", - "company_id": "spearhead", - "description": null, - "domains": [ - "smaato.net" - ], - "ghostery_id": "1647", - "iab_vendor": 82, - "id": "smaato", - "name": "Smaato", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.smaato.com/" - }, - "smart_adserver": { - "category": "advertising", - "company_id": "smart_adserver", - "description": "Smart AdServer technology enables publishers to maximize yield in both premium and programmatic without spending on third party vendors. ", - "domains": [ - "sascdn.com", - "smartadserver.com", - "styria-digital.com", - "yoc-adserver.com" - ], - "ghostery_id": "502", - "iab_vendor": 45, - "id": "smart_adserver", - "name": "SMART AdServer", - "privacy_url": "http://smartadserver.com/company/privacy-policy/", - "truste_type": "Ad Server", - "website_url": "" - }, - "smartclick.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "smartclick.net" - ], - "ghostery_id": "smartclick.net", - "iab_vendor": null, - "id": "smartclick.net", - "name": "SmartClick", - "privacy_url": null, - "truste_type": null, - "website_url": "http://smartclick.net/" - }, - "smartclip": { - "category": "advertising", - "company_id": "smartclip", - "description": null, - "domains": [ - "smartclip.net" - ], - "ghostery_id": "2347", - "iab_vendor": 115, - "id": "smartclip", - "name": "SmartClip", - "privacy_url": "http://privacy-portal.smartclip.net/", - "truste_type": null, - "website_url": null - }, - "smarter_travel": { - "category": "advertising", - "company_id": "iac_apps", - "description": null, - "domains": [ - "smartertravel.com", - "travelsmarter.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "smarter_travel", - "name": "Smarter Travel Media", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.smartertravel.com/" - }, - "smartlink.cool": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "smartlink.cool" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "smartlink.cool", - "name": "smartlink.cool", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "smartlook": { - "category": "customer_interaction", - "company_id": "smartlook", - "description": null, - "domains": [ - "getsmartlook.com", - "smartlook.com" - ], - "ghostery_id": "2638", - "iab_vendor": null, - "id": "smartlook", - "name": "Smartlook", - "privacy_url": "https://www.smartlook.com/privacy", - "truste_type": null, - "website_url": null - }, - "smartstream.tv": { - "category": "advertising", - "company_id": "smartstream", - "description": null, - "domains": [ - "smartstream.tv" - ], - "ghostery_id": "", - "iab_vendor": 134, - "id": "smartstream.tv", - "name": "SmartStream.TV", - "privacy_url": "https://www.smartstream.tv/en/privacy", - "truste_type": null, - "website_url": "https://www.smartstream.tv/en" - }, - "smartsupp_chat": { - "category": "customer_interaction", - "company_id": "smartsuppp", - "description": null, - "domains": [ - "smartsuppchat.com" - ], - "ghostery_id": "2778", - "iab_vendor": null, - "id": "smartsupp_chat", - "name": "Smartsupp Chat", - "privacy_url": "https://www.smartsupp.com/privacy", - "truste_type": null, - "website_url": null - }, - "smi2.ru": { - "category": "essential", - "company_id": null, - "description": null, - "domains": [ - "smi2.net", - "smi2.ru", - "stat.media" - ], - "ghostery_id": "smi2.ru", - "iab_vendor": null, - "id": "smi2.ru", - "name": "smi2.ru", - "privacy_url": null, - "truste_type": null, - "website_url": "https://smi2.net/" - }, - "smyte": { - "category": "site_analytics", - "company_id": "smyte", - "description": null, - "domains": [ - "smyte.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "smyte", - "name": "Smyte", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.smyte.com/" - }, - "snacktv": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "snacktv.de" - ], - "ghostery_id": "2519", - "iab_vendor": null, - "id": "snacktv", - "name": "SnackTV", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "snap_engage": { - "category": "customer_interaction", - "company_id": "snap_engage", - "description": null, - "domains": [ - "snapengage.com" - ], - "ghostery_id": "2294", - "iab_vendor": null, - "id": "snap_engage", - "name": "Snap Engage", - "privacy_url": "https://snapengage.com/privacy-policy", - "truste_type": null, - "website_url": null - }, - "snapchat": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "sc-static.net", - "snapchat.com" - ], - "ghostery_id": "3132", - "iab_vendor": null, - "id": "snapchat", - "name": "Snapchat For Business", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.snapchat.com/" - }, - "snigelweb": { - "category": "advertising", - "company_id": "snigelweb_inc", - "description": null, - "domains": [ - "h-bid.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "snigelweb", - "name": "SnigelWeb, Inc.", - "privacy_url": "http://www.snigelweb.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.snigelweb.com/" - }, - "snowplow": { - "category": "site_analytics", - "company_id": "snowplow", - "description": null, - "domains": [ - "d346whrrklhco7.cloudfront.net", - "d78fikflryjgj.cloudfront.net", - "dc8xl0ndzn2cb.cloudfront.net", - "playwire.com", - "snplow.net" - ], - "ghostery_id": "2671", - "iab_vendor": null, - "id": "snowplow", - "name": "Snowplow", - "privacy_url": "https://snowplowanalytics.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "soasta_mpulse": { - "category": "site_analytics", - "company_id": "akamai", - "description": null, - "domains": [ - "go-mpulse.net", - "mpstat.us" - ], - "ghostery_id": "1610", - "iab_vendor": null, - "id": "soasta_mpulse", - "name": "SOASTA mPulse", - "privacy_url": "https://www.akamai.com/us/en/privacy-policies/", - "truste_type": null, - "website_url": "http://www.soasta.com/" - }, - "social_miner": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "soclminer.com.br" - ], - "ghostery_id": "2760", - "iab_vendor": null, - "id": "social_miner", - "name": "Social Miner", - "privacy_url": null, - "truste_type": null, - "website_url": "https://socialminer.com/" - }, - "sociaplus.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "sociaplus.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sociaplus.com", - "name": "SociaPlus", - "privacy_url": null, - "truste_type": null, - "website_url": "https://sociaplus.com/" - }, - "sociomantic": { - "category": "advertising", - "company_id": "sociomantic_labs_gmbh", - "description": null, - "domains": [ - "sociomantic.com" - ], - "ghostery_id": "849", - "iab_vendor": null, - "id": "sociomantic", - "name": "Sociomantic", - "privacy_url": "https://www.sociomantic.com/privacy/en/", - "truste_type": null, - "website_url": "http://www.sociomantic.com/" - }, - "sojern": { - "category": "advertising", - "company_id": "sojern", - "description": null, - "domains": [ - "sojern.com" - ], - "ghostery_id": "1698", - "iab_vendor": 295, - "id": "sojern", - "name": "Sojern", - "privacy_url": "https://www.sojern.com/privacy/product-privacy-policy/", - "truste_type": null, - "website_url": "http://www.sojern.com/" - }, - "solads.media": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "solads.media" - ], - "ghostery_id": "solads.media", - "iab_vendor": null, - "id": "solads.media", - "name": "solads.media", - "privacy_url": null, - "truste_type": null, - "website_url": "http://solads.media/" - }, - "somoaudience": { - "category": "advertising", - "company_id": "somoaudience", - "description": null, - "domains": [ - "mobileadtrading.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "somoaudience", - "name": "SoMo Audience", - "privacy_url": "https://somoaudience.com/legal/", - "truste_type": null, - "website_url": "https://somoaudience.com/" - }, - "sonobi": { - "category": "advertising", - "company_id": "sonobi", - "description": null, - "domains": [ - "sonobi.com" - ], - "ghostery_id": "917", - "iab_vendor": 104, - "id": "sonobi", - "name": "Sonobi", - "privacy_url": "http://sonobi.com/privacy-policy/", - "truste_type": null, - "website_url": "http://sonobi.com/" - }, - "sophus3": { - "category": "advertising", - "company_id": "sophus3", - "description": null, - "domains": [ - "sophus3.com" - ], - "ghostery_id": "714", - "iab_vendor": null, - "id": "sophus3", - "name": "Sophus3", - "privacy_url": "http://www.sophus3.com/services-privacy-policy/", - "truste_type": null, - "website_url": "http://www.sophus3.com/ " - }, - "sortable": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "deployads.com" - ], - "ghostery_id": null, - "iab_vendor": 145, - "id": "sortable", - "name": "Sortable", - "privacy_url": null, - "truste_type": null, - "website_url": "https://sortable.com/" - }, - "soundcloud": { - "category": "audio_video_player", - "company_id": "soundcloud", - "description": "SoundCloud is the world's leading social sound platform where anyone can create sounds and share them everywhere.", - "domains": [ - "sndcdn.com", - "soundcloud.com" - ], - "ghostery_id": "1068", - "iab_vendor": null, - "id": "soundcloud", - "name": "SoundCloud", - "privacy_url": "http://soundcloud.com/pages/privacy", - "truste_type": "Social / Sharing Tools", - "website_url": "http://soundcloud.com/" - }, - "sourcepoint": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "decenthat.com", - "summerhamster.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sourcepoint", - "name": "Sourcepoint", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.sourcepoint.com/" - }, - "sovrn": { - "category": "advertising", - "company_id": "sovrn", - "description": null, - "domains": [ - "d3pkae9owd2lcf.cloudfront.net", - "lijit.com" - ], - "ghostery_id": "18", - "iab_vendor": 13, - "id": "sovrn", - "name": "sovrn", - "privacy_url": "https://www.sovrn.com/sovrn-privacy/", - "truste_type": null, - "website_url": "https://www.sovrn.com/" - }, - "sovrn_onetag": { - "category": "advertising", - "company_id": "sovrn", - "description": null, - "domains": [ - "s-onetag.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "sovrn_onetag", - "name": "Sovrn OneTag", - "privacy_url": "https://www.sovrn.com/sovrn-privacy/", - "truste_type": null, - "website_url": "https://community.sovrn.com/s/article/OneTag-Implementation-Guide?language=en_US" - }, - "sovrn_viewability_solutions": { - "category": "advertising", - "company_id": "sovrn", - "description": null, - "domains": [ - "onscroll.com" - ], - "ghostery_id": "1763", - "iab_vendor": null, - "id": "sovrn_viewability_solutions", - "name": "Sovrn Viewability Solutions", - "privacy_url": "https://www.sovrn.com/sovrn-privacy/", - "truste_type": null, - "website_url": "https://www.sovrn.com/meridian/onscroll-viewability/" - }, - "sparkasse.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "sparkasse.de" - ], - "ghostery_id": "sparkasse.de", - "iab_vendor": null, - "id": "sparkasse.de", - "name": "sparkasse.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "speedcurve": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "speedcurve.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "speedcurve", - "name": "SpeedCurve", - "privacy_url": null, - "truste_type": null, - "website_url": "https://speedcurve.com/" - }, - "spongecell": { - "category": "advertising", - "company_id": "spongecell", - "description": "Spongecell technology empowers brands and agencies to quickly create amazing dynamic ad experiences that are interactive, dynamically personalized and able to run anywhere across the web.", - "domains": [ - "spongecell.com" - ], - "ghostery_id": "528", - "iab_vendor": null, - "id": "spongecell", - "name": "Spongecell", - "privacy_url": "http://www.spongecell.com/privacy-policy", - "truste_type": "Ad Network", - "website_url": "http://www.spongecell.com/" - }, - "spot.im": { - "category": "social_media", - "company_id": "spot.im", - "description": null, - "domains": [ - "spot.im" - ], - "ghostery_id": "2194", - "iab_vendor": 280, - "id": "spot.im", - "name": "Spot.IM", - "privacy_url": "http://spot.im/privacy", - "truste_type": null, - "website_url": "https://www.spot.im/" - }, - "spoteffect": { - "category": "site_analytics", - "company_id": "spoteffect", - "description": null, - "domains": [ - "spoteffects.net" - ], - "ghostery_id": "2783", - "iab_vendor": null, - "id": "spoteffect", - "name": "Spoteffect", - "privacy_url": "http://www.spoteffects.com/footer/imprint/#c920", - "truste_type": null, - "website_url": null - }, - "spotify": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "scdn.co", - "spotify.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "spotify", - "name": "Spotify", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.spotify.com/" - }, - "spotscenered.info": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "spotscenered.info" - ], - "ghostery_id": "spotscenered.info", - "iab_vendor": null, - "id": "spotscenered.info", - "name": "spotscenered.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "spotxchange": { - "category": "advertising", - "company_id": "rtl_group", - "description": null, - "domains": [ - "spotx.tv", - "spotxcdn.com", - "spotxchange.com" - ], - "ghostery_id": "503", - "iab_vendor": 165, - "id": "spotxchange", - "name": "SpotXchange", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.spotxchange.com/" - }, - "spoutable": { - "category": "advertising", - "company_id": null, - "description": "Spoutable is a technology company reinventing web monetization through its suite of highly engaging, and often incremental, advertising placements. ", - "domains": [ - "spoutable.com" - ], - "ghostery_id": "2472", - "iab_vendor": null, - "id": "spoutable", - "name": "Spoutable", - "privacy_url": "http://spoutable.com/privacy", - "truste_type": "Ad Network", - "website_url": "http://spoutable.com/" - }, - "springserve": { - "category": "advertising", - "company_id": "springserve", - "description": null, - "domains": [ - "springserve.com" - ], - "ghostery_id": "2754", - "iab_vendor": 293, - "id": "springserve", - "name": "SpringServe", - "privacy_url": "https://springserve.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "squarespace.com": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "squarespace.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "squarespace.com", - "name": "Squarespace", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.squarespace.com/" - }, - "srvtrck.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "srvtrck.com" - ], - "ghostery_id": "srvtrck.com", - "iab_vendor": null, - "id": "srvtrck.com", - "name": "srvtrck.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "srvvtrk.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "srvvtrk.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "srvvtrk.com", - "name": "srvvtrk.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "sstatic.net": { - "category": "cdn", - "company_id": null, - "description": "Stack Exchange is a growing network of individual communities, each dedicated to serving experts in a specific field. We build libraries of high-quality questions and answers, focused on each community's area of expertise. From programmers sharing answers on parsing HTML, to researchers seeking solutions to combinatorial problems, to photographers exposing lighting techniques, our communities are built by and for those best able to define them: the experts and enthusiasts. ", - "domains": [ - "sstatic.net" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "sstatic.net", - "name": "Stack Exchange", - "privacy_url": "https://stackexchange.com/legal/privacy-policy", - "truste_type": "Publisher Related", - "website_url": "https://sstatic.net/" - }, - "st-hatena": { - "category": "social_media", - "company_id": "hatena_jp", - "description": null, - "domains": [ - "hatena.ne.jp", - "st-hatena.com" - ], - "ghostery_id": "1532", - "iab_vendor": null, - "id": "st-hatena", - "name": "St-Hatena", - "privacy_url": "http://www.hatena.ne.jp/rule/privacypolicy", - "truste_type": null, - "website_url": "http://www.hatena.ne.jp/" - }, - "stackadapt": { - "category": "advertising", - "company_id": "stackadapt", - "description": "StackAdapt is an omnichannel advertising platform that helps brands accelerate customer acquisition by reaching relevant audiences through native, display, and video advertising.", - "domains": [ - "stackadapt.com" - ], - "ghostery_id": "2774", - "iab_vendor": 238, - "id": "stackadapt", - "name": "StackAdapt", - "privacy_url": "http://www.stackadapt.com/privacy", - "truste_type": "Ad Platform", - "website_url": null - }, - "stackpathdns.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "stackpathdns.com" - ], - "ghostery_id": "stackpathdns.com", - "iab_vendor": null, - "id": "stackpathdns.com", - "name": "StackPath", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.stackpath.com/" - }, - "stailamedia_com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "stailamedia.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "stailamedia_com", - "name": "stailamedia.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://stailamedia.com/" - }, - "stalluva.pro": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "stalluva.pro" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "stalluva.pro", - "name": "stalluva.pro", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "startapp": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "startappservice.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "startapp", - "name": "StartApp", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.startapp.com/" - }, - "statcounter": { - "category": "site_analytics", - "company_id": "statcounter", - "description": null, - "domains": [ - "statcounter.com" - ], - "ghostery_id": "22", - "iab_vendor": null, - "id": "statcounter", - "name": "Statcounter", - "privacy_url": "http://statcounter.com/about/legal/#privacy", - "truste_type": null, - "website_url": "http://www.statcounter.com/" - }, - "stathat": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "stathat.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "stathat", - "name": "StatHat", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.stathat.com/" - }, - "statsy.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "statsy.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "statsy.net", - "name": "statsy.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "statuspage.io": { - "category": "customer_interaction", - "company_id": "atlassian", - "description": null, - "domains": [ - "statuspage.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "statuspage.io", - "name": "Statuspage", - "privacy_url": "https://www.atlassian.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.statuspage.io/" - }, - "stayfriends.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "stayfriends.de" - ], - "ghostery_id": "stayfriends.de", - "iab_vendor": null, - "id": "stayfriends.de", - "name": "stayfriends.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.stayfriends.de/" - }, - "steelhouse": { - "category": "advertising", - "company_id": "steelhouse", - "description": "SteelHouse (www.SteelHouse.com) provides digital marketing services to our clients as the pioneer in the emerging field of Behavioral Commerce. We enable retailers to provide the right offer to their shoppers at the right time when they are online. We never know personal information or store anything confidential. At the end of the day, we're consumers just like you and respect your privacy.", - "domains": [ - "steelhousemedia.com" - ], - "ghostery_id": "476", - "iab_vendor": 230, - "id": "steelhouse", - "name": "Steel House Media", - "privacy_url": "https://steelhouse.com/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": "https://steelhouse.com/" - }, - "steepto.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "steepto.com" - ], - "ghostery_id": "steepto.com", - "iab_vendor": null, - "id": "steepto.com", - "name": "Steepto", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.steepto.com/" - }, - "stepstone.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "stepstone.com" - ], - "ghostery_id": "stepstone.com", - "iab_vendor": null, - "id": "stepstone.com", - "name": "StepStone", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.stepstone.com/" - }, - "stickyads": { - "category": "advertising", - "company_id": "comcast", - "description": null, - "domains": [ - "stickyadstv.com" - ], - "ghostery_id": "2348", - "iab_vendor": null, - "id": "stickyads", - "name": "StickyAds", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "storify": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "storify.com" - ], - "ghostery_id": "2581", - "iab_vendor": null, - "id": "storify", - "name": "Storify", - "privacy_url": null, - "truste_type": null, - "website_url": "https://storify.com/" - }, - "storygize": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "storygize.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "storygize", - "name": "Storygize", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.storygize.com/" - }, - "streamrail.com": { - "category": "audio_video_player", - "company_id": "ironsource", - "description": null, - "domains": [ - "streamrail.com", - "streamrail.net" - ], - "ghostery_id": "streamrail.com", - "iab_vendor": null, - "id": "streamrail.com", - "name": "StreamRail", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.streamrail.com/" - }, - "stride": { - "category": "site_analytics", - "company_id": "stride_software", - "description": null, - "domains": [ - "cdn.stridespark.com", - "tracking.stridespark.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "stride", - "name": "Stride", - "privacy_url": "https://www.getstride.com/security", - "truste_type": null, - "website_url": "https://www.getstride.com/" - }, - "stripchat.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "stripcdn.com", - "stripchat.com" - ], - "ghostery_id": "stripchat.com", - "iab_vendor": null, - "id": "stripchat.com", - "name": "stripchat.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "stripe.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "stripe.com", - "stripe.network" - ], - "ghostery_id": "3007", - "iab_vendor": null, - "id": "stripe.com", - "name": "Stripe", - "privacy_url": null, - "truste_type": null, - "website_url": "https://stripe.com/" - }, - "stripst.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "stripst.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "stripst.com", - "name": "stripst.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "stroer_digital_media": { - "category": "advertising", - "company_id": "stroer", - "description": null, - "domains": [ - "interactivemedia.net", - "stroeerdigitalgroup.de", - "stroeerdigitalmedia.de", - "stroeerdp.de", - "stroeermediabrands.de" - ], - "ghostery_id": "2960", - "iab_vendor": 136, - "id": "stroer_digital_media", - "name": "Stroer Digital Media", - "privacy_url": "https://www.stroeer.de/fileadmin/user_upload/Datenschutz.pdf", - "truste_type": null, - "website_url": null - }, - "strossle": { - "category": "advertising", - "company_id": "strossle", - "description": null, - "domains": [ - "sprinklecontent.com", - "strossle.it" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "strossle", - "name": "Strossle", - "privacy_url": "https://strossle.com/privacy-policy/", - "truste_type": null, - "website_url": "https://strossle.com/" - }, - "stumbleupon_widgets": { - "category": "social_media", - "company_id": "stumbleupon", - "description": null, - "domains": [ - "stumble-upon.com", - "stumbleupon.com", - "su.pr" - ], - "ghostery_id": "701", - "iab_vendor": null, - "id": "stumbleupon_widgets", - "name": "StumbleUpon Widgets", - "privacy_url": "http://www.stumbleupon.com/privacy/", - "truste_type": null, - "website_url": "http://www.stumbleupon.com/" - }, - "sublime_skinz": { - "category": "advertising", - "company_id": "sublime_skinz", - "description": "Sublime Skinz is an ad tech company specializing in the distribution and optimisation of high impact, non intrusive skin-based advertising ", - "domains": [ - "ayads.co" - ], - "ghostery_id": "2962", - "iab_vendor": 114, - "id": "sublime_skinz", - "name": "Sublime Skinz", - "privacy_url": "http://ayads.co/privacy.php", - "truste_type": "Ad Network", - "website_url": "https://sublimeskinz.com/home" - }, - "sumologic.com": { - "category": "site_analytics", - "company_id": null, - "description": "Sumo Logic is a secure, cloud-native, machine data analytics service, delivering real-time, continuous intelligence from structured, semi-structured and unstructured data across the entire application lifecycle and stack.", - "domains": [ - "sumologic.com" - ], - "ghostery_id": "sumologic.com", - "iab_vendor": null, - "id": "sumologic.com", - "name": "Sumologic", - "privacy_url": "https://www.sumologic.com/privacy-statement/", - "truste_type": "Attribution / Analytics", - "website_url": "https://www.sumologic.com/" - }, - "sumome": { - "category": "site_analytics", - "company_id": "sumome", - "description": null, - "domains": [ - "sumo.com", - "sumome.com" - ], - "ghostery_id": "2177", - "iab_vendor": null, - "id": "sumome", - "name": "SumoMe", - "privacy_url": "https://help.sumo.com/hc/en-us/articles/218958727-Privacy-Policy", - "truste_type": null, - "website_url": "http://sumome.com/" - }, - "sundaysky": { - "category": "advertising", - "company_id": "sundaysky", - "description": "SundaySky is a proprietary SmartVideo technology platform that combines the power of video with personalized storytelling at scale to foster long-term customer relationships.", - "domains": [ - "sundaysky.com" - ], - "ghostery_id": "1530", - "iab_vendor": null, - "id": "sundaysky", - "name": "SundaySky", - "privacy_url": " https://sundaysky.com/privacy-policy/", - "truste_type": "Publisher Related", - "website_url": "http://www.sundaysky.com/" - }, - "superfastcdn.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "superfastcdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "superfastcdn.com", - "name": "superfastcdn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "supership": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "socdm.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "supership", - "name": "Supership", - "privacy_url": null, - "truste_type": null, - "website_url": "https://supership.jp/en/" - }, - "swiftype": { - "category": "cdn", - "company_id": "elastic", - "description": null, - "domains": [ - "swiftypecdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "swiftype", - "name": "Swiftype", - "privacy_url": "https://www.elastic.co/de/legal/privacy-statement", - "truste_type": null, - "website_url": "https://swiftype.com/" - }, - "swisscom": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "swisscom.ch" - ], - "ghostery_id": "c_3749", - "iab_vendor": null, - "id": "swisscom", - "name": "Swisscom", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "switch_concepts": { - "category": "advertising", - "company_id": "switch_concepts", - "description": null, - "domains": [ - "myswitchads.com", - "switchadhub.com", - "switchads.com", - "switchafrica.com" - ], - "ghostery_id": "1343", - "iab_vendor": 197, - "id": "switch_concepts", - "name": "Switch Concepts", - "privacy_url": "https://www.switchconcepts.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.switchconcepts.co.uk/" - }, - "symantec": { - "category": "essential", - "company_id": "symantec__norton_secured_seal_", - "description": null, - "domains": [ - "norton.com", - "symantec.com", - "thawte.com", - "verisign.com" - ], - "ghostery_id": "2305", - "iab_vendor": null, - "id": "symantec", - "name": "Symantec (Norton Secured Seal)", - "privacy_url": "https://www.symantec.com/privacy/", - "truste_type": null, - "website_url": null - }, - "t-mobile": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "sdp-campaign.de", - "t-online.de", - "telekom-dienste.de", - "telekom.com", - "telekom.de", - "toi.de" - ], - "ghostery_id": "c_923", - "iab_vendor": null, - "id": "t-mobile", - "name": "Deutsche Telekom", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "t8cdn.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "t8cdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "t8cdn.com", - "name": "t8cdn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "tableteducation.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "tableteducation.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tableteducation.com", - "name": "tableteducation.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "taboola": { - "category": "advertising", - "company_id": "taboola", - "description": null, - "domains": [ - "basebanner.com", - "taboola.com", - "taboolasyndication.com" - ], - "ghostery_id": "951", - "iab_vendor": 42, - "id": "taboola", - "name": "Taboola", - "privacy_url": "https://www.taboola.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.taboola.com" - }, - "tag_commander": { - "category": "essential", - "company_id": "tag_commander", - "description": null, - "domains": [ - "commander1.com", - "tagcommander.com" - ], - "ghostery_id": "1586", - "iab_vendor": null, - "id": "tag_commander", - "name": "Tag Commander", - "privacy_url": "https://www.commandersact.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.tagcommander.com/" - }, - "tagman": { - "category": "essential", - "company_id": "tagman", - "description": null, - "domains": [ - "levexis.com" - ], - "ghostery_id": "457", - "iab_vendor": null, - "id": "tagman", - "name": "TagMan", - "privacy_url": "http://www.ensighten.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.tagman.com/" - }, - "tail_target": { - "category": "site_analytics", - "company_id": "tail.digital", - "description": null, - "domains": [ - "tailtarget.com" - ], - "ghostery_id": "2101", - "iab_vendor": null, - "id": "tail_target", - "name": "Tail", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.tail.digital/" - }, - "tamedia.ch": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "tamedia.ch" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tamedia.ch", - "name": "Tamedia", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.tamedia.ch/" - }, - "taobao": { - "category": "advertising", - "company_id": "alibaba", - "description": null, - "domains": [ - "alipcsec.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "taobao", - "name": "Taobao", - "privacy_url": null, - "truste_type": null, - "website_url": "https://world.taobao.com/" - }, - "tapad": { - "category": "advertising", - "company_id": "telenor", - "description": null, - "domains": [ - "tapad.com" - ], - "ghostery_id": "1176", - "iab_vendor": 89, - "id": "tapad", - "name": "Tapad", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.tapad.com/ " - }, - "tawk": { - "category": "customer_interaction", - "company_id": "tawk", - "description": null, - "domains": [ - "tawk.to" - ], - "ghostery_id": "2417", - "iab_vendor": null, - "id": "tawk", - "name": "Tawk", - "privacy_url": "https://www.tawk.to/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "tchibo_de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "tchibo-content.de", - "tchibo.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tchibo_de", - "name": "tchibo.de", - "privacy_url": null, - "truste_type": null, - "website_url": "http://tchibo.de/" - }, - "tdsrmbl_net": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "tdsrmbl.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tdsrmbl_net", - "name": "tdsrmbl.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "teads": { - "category": "advertising", - "company_id": "teads", - "description": "Platform for video advertising innovations", - "domains": [ - "teads.tv" - ], - "ghostery_id": "1494", - "iab_vendor": 132, - "id": "teads", - "name": "Teads", - "privacy_url": "https://teads.tv/privacy-policy/", - "truste_type": "Ad Network", - "website_url": "http://teads.tv/" - }, - "tealium": { - "category": "essential", - "company_id": "tealium", - "description": null, - "domains": [ - "llnwd.net", - "tealium.com", - "tealiumiq.com", - "tiqcdn.com" - ], - "ghostery_id": "505", - "iab_vendor": null, - "id": "tealium", - "name": "Tealium", - "privacy_url": "http://tealium.com/privacy/", - "truste_type": null, - "website_url": "http://www.tealium.com/" - }, - "tensitionschoo.club": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "tensitionschoo.club" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tensitionschoo.club", - "name": "tensitionschoo.club", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "teufel.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "teufel.de" - ], - "ghostery_id": "teufel.de", - "iab_vendor": null, - "id": "teufel.de", - "name": "teufel.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.teufel.de/" - }, - "the_adex": { - "category": "advertising", - "company_id": "prosieben_sat1", - "description": null, - "domains": [ - "theadex.com" - ], - "ghostery_id": "2141", - "iab_vendor": 44, - "id": "the_adex", - "name": "The ADEX", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.theadex.com/" - }, - "the_guardian": { - "category": "misc", - "company_id": "the_guardian", - "description": null, - "domains": [ - "gu-web.net", - "guardianapps.co.uk", - "guim.co.uk" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "the_guardian", - "name": "The Guardian", - "privacy_url": "https://www.theguardian.com/info/privacy", - "truste_type": null, - "website_url": "https://www.theguardian.com/" - }, - "the_reach_group": { - "category": "advertising", - "company_id": "the_reach_group", - "description": null, - "domains": [ - "deepthought.online", - "reachgroup.com", - "redintelligence.net" - ], - "ghostery_id": "1198", - "iab_vendor": 382, - "id": "the_reach_group", - "name": "The Reach Group", - "privacy_url": "https://www.reachgroup.com/en/privacy-statement/", - "truste_type": null, - "website_url": "http://www.redvertisment.com" - }, - "the_sun": { - "category": "misc", - "company_id": "the_sun", - "description": null, - "domains": [ - "thesun.co.uk" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "the_sun", - "name": "The Sun", - "privacy_url": "https://newsprivacy.co.uk/single/", - "truste_type": null, - "website_url": "https://www.thesun.co.uk/" - }, - "the_weather_company": { - "category": "advertising", - "company_id": "ibm", - "description": null, - "domains": [ - "w-x.co", - "weather.com", - "wfxtriggers.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "the_weather_company", - "name": "The Weather Company", - "privacy_url": "https://www.ibm.com/privacy/details/us/en/", - "truste_type": null, - "website_url": "http://www.theweathercompany.com/" - }, - "themoviedb": { - "category": "misc", - "company_id": "themoviedb", - "description": null, - "domains": [ - "tmdb.org" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "themoviedb", - "name": "The Movie DB", - "privacy_url": "https://www.themoviedb.org/privacy-policy", - "truste_type": null, - "website_url": "https://www.themoviedb.org/" - }, - "threatmetrix": { - "category": "site_analytics", - "company_id": "threatmetrix", - "description": null, - "domains": [ - "online-metrix.net" - ], - "ghostery_id": "1060", - "iab_vendor": null, - "id": "threatmetrix", - "name": "ThreatMetrix", - "privacy_url": "http://www.threatmetrix.com/privacy-policy/", - "truste_type": null, - "website_url": "http://threatmetrix.com/" - }, - "tinypass": { - "category": "essential", - "company_id": "piano__previously_tinypass_", - "description": null, - "domains": [ - "npttech.com", - "tinypass.com" - ], - "ghostery_id": "1834", - "iab_vendor": null, - "id": "tinypass", - "name": "Piano", - "privacy_url": "http://www.tinypass.com/privacy/", - "truste_type": null, - "website_url": "https://piano.io/" - }, - "tisoomi": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "tisoomi-services.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tisoomi", - "name": "Tisoomi", - "privacy_url": null, - "truste_type": null, - "website_url": "https://tisoomi-services.com/" - }, - "tns": { - "category": "site_analytics", - "company_id": "wpp", - "description": null, - "domains": [ - "research-int.se", - "sesamestats.com", - "spring-tns.net", - "statistik-gallup.net", - "tns-cs.net", - "tns-gallup.dk" - ], - "ghostery_id": "339", - "iab_vendor": null, - "id": "tns", - "name": "TNS", - "privacy_url": "https://www.wpp.com/Privacy-policy", - "truste_type": null, - "website_url": "http://www.tnsglobal.com/" - }, - "tomnewsupdate.info": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "tomnewsupdate.info" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tomnewsupdate.info", - "name": "tomnewsupdate.info", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "toplist.cz": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "toplist.cz" - ], - "ghostery_id": "toplist.cz", - "iab_vendor": null, - "id": "toplist.cz", - "name": "toplist.cz", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "toponclick_com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "toponclick.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "toponclick_com", - "name": "toponclick.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "toro": { - "category": "advertising", - "company_id": "toro_advertising", - "description": null, - "domains": [ - "toro-tags.com", - "toroadvertising.com", - "toroadvertisingmedia.com" - ], - "ghostery_id": "1984", - "iab_vendor": null, - "id": "toro", - "name": "TORO", - "privacy_url": "http://toroadvertising.com/privacy.php", - "truste_type": null, - "website_url": "http://toroadvertising.com/" - }, - "tororango.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "tororango.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tororango.com", - "name": "tororango.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "touchcommerce": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "inq.com" - ], - "ghostery_id": "243", - "iab_vendor": null, - "id": "touchcommerce", - "name": "Nuance", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.nuance.com/" - }, - "tovarro.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "tovarro.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tovarro.com", - "name": "Tovarro", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.tovarro.com/" - }, - "tp-cdn.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "rialpay.com", - "tp-cdn.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "tp-cdn.com", - "name": "TrialPay", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.trialpay.com/" - }, - "tracc.it": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "kiwe.io", - "tracc.it" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "tracc.it", - "name": "Kiwe.io", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.kiwe.io/" - }, - "trackjs": { - "category": "site_analytics", - "company_id": "trackjs", - "description": "TrackJS was conceived as a tool for JavaScript Error Management in consulting projects. ", - "domains": [ - "d2zah9y47r7bi2.cloudfront.net", - "dl1d2m8ri9v3j.cloudfront.net", - "trackjs.com" - ], - "ghostery_id": "2170", - "iab_vendor": null, - "id": "trackjs", - "name": "TrackJS", - "privacy_url": "https://trackjs.com/privacy/", - "truste_type": "Website Tools", - "website_url": "http://www.trackjs.com/" - }, - "tradedesk": { - "category": "advertising", - "company_id": "the_trade_desk", - "description": null, - "domains": [ - "adsrvr.org" - ], - "ghostery_id": "579", - "iab_vendor": null, - "id": "tradedesk", - "name": "TradeDesk", - "privacy_url": "https://www.thetradedesk.com/general/privacy", - "truste_type": null, - "website_url": "http://www.thetradedesk.com/" - }, - "tradedoubler": { - "category": "advertising", - "company_id": "tradedoubler", - "description": null, - "domains": [ - "tradedoubler.com" - ], - "ghostery_id": "533", - "iab_vendor": 443, - "id": "tradedoubler", - "name": "TradeDoubler", - "privacy_url": "https://www.tradedoubler.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://www.tradedoubler.com/" - }, - "tradelab": { - "category": "advertising", - "company_id": "tradelab", - "description": null, - "domains": [ - "tradelab.fr" - ], - "ghostery_id": "1641", - "iab_vendor": 49, - "id": "tradelab", - "name": "Tradelab", - "privacy_url": "http://tradelab.com/en/privacy/", - "truste_type": null, - "website_url": "http://www.tradelab.fr/" - }, - "tradetracker": { - "category": "advertising", - "company_id": "tradetracker", - "description": null, - "domains": [ - "tradetracker.net" - ], - "ghostery_id": "556", - "iab_vendor": 426, - "id": "tradetracker", - "name": "TradeTracker", - "privacy_url": "https://tradetracker.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.tradetracker.com" - }, - "traffective": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "cdntrf.com", - "traffective.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "traffective", - "name": "Traffective", - "privacy_url": null, - "truste_type": null, - "website_url": "https://traffective.com/" - }, - "traffic_stars": { - "category": "pornvertising", - "company_id": "traffic_stars", - "description": null, - "domains": [ - "trafficstars.com", - "tsyndicate.com" - ], - "ghostery_id": "2817", - "iab_vendor": null, - "id": "traffic_stars", - "name": "Traffic Stars", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "trafficfabrik.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "trafficfabrik.com" - ], - "ghostery_id": "trafficfabrik.com", - "iab_vendor": null, - "id": "trafficfabrik.com", - "name": "Traffic Fabrik", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.trafficfabrik.com/" - }, - "trafficfactory": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "trafficfactory.biz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "trafficfactory", - "name": "Traffic Factory", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.trafficfactory.biz/" - }, - "trafficforce": { - "category": "advertising", - "company_id": "trafficforce", - "description": null, - "domains": [ - "trafficforce.com" - ], - "ghostery_id": "2089", - "iab_vendor": null, - "id": "trafficforce", - "name": "TrafficForce", - "privacy_url": "http://www.trafficforce.com/terms.html", - "truste_type": null, - "website_url": "http://www.trafficforce.com/" - }, - "traffichaus": { - "category": "pornvertising", - "company_id": "traffichaus", - "description": null, - "domains": [ - "traffichaus.com" - ], - "ghostery_id": "1077", - "iab_vendor": null, - "id": "traffichaus", - "name": "TrafficHaus", - "privacy_url": "https://www.traffichaus.com/privacy-policy.php", - "truste_type": null, - "website_url": "http://www.traffichaus.com" - }, - "trafficjunky": { - "category": "pornvertising", - "company_id": "trafficjunky", - "description": null, - "domains": [ - "trafficjunky.net" - ], - "ghostery_id": "1070", - "iab_vendor": null, - "id": "trafficjunky", - "name": "TrafficJunky", - "privacy_url": "http://www.trafficjunky.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.trafficjunky.net/" - }, - "trafmag.com": { - "category": "advertising", - "company_id": null, - "description": "TrafMag is the advertising network that has united the best spaces of Russian spoken Internet, ", - "domains": [ - "trafmag.com" - ], - "ghostery_id": "1858", - "iab_vendor": null, - "id": "trafmag.com", - "name": "TrafMag", - "privacy_url": "http://trafmag.com/policy", - "truste_type": "Ad Network", - "website_url": "https://trafmag.com/" - }, - "travel_audience": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "travelaudience.com" - ], - "ghostery_id": "2944", - "iab_vendor": 423, - "id": "travel_audience", - "name": "Travel Audience", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "trbo": { - "category": "advertising", - "company_id": "trbo", - "description": null, - "domains": [ - "trbo.com" - ], - "ghostery_id": "2106", - "iab_vendor": null, - "id": "trbo", - "name": "trbo", - "privacy_url": "http://www.trbo.com/privacy/?lang=en", - "truste_type": null, - "website_url": "http://www.trbo.com/" - }, - "treasuredata": { - "category": "site_analytics", - "company_id": "arm", - "description": null, - "domains": [ - "treasuredata.com" - ], - "ghostery_id": "2597", - "iab_vendor": null, - "id": "treasuredata", - "name": "Treasure Data", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.treasuredata.com/" - }, - "tremor_video": { - "category": "audio_video_player", - "company_id": null, - "description": null, - "domains": [ - "tremorhub.com", - "tremorvideo.com", - "videohub.tv" - ], - "ghostery_id": "tremorhub.com", - "iab_vendor": null, - "id": "tremor_video", - "name": "Tremor Video", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "tribal_fusion": { - "category": "advertising", - "company_id": "exponential_interactive", - "description": null, - "domains": [ - "exponential.com", - "tribalfusion.com" - ], - "ghostery_id": "84", - "iab_vendor": null, - "id": "tribal_fusion", - "name": "Tribal Fusion", - "privacy_url": "http://exponential.com/privacy", - "truste_type": null, - "website_url": "http://www.tribalfusion.com/" - }, - "tripadvisor": { - "category": "misc", - "company_id": "iac_apps", - "description": null, - "domains": [ - "jscache.com", - "tacdn.com", - "tamgrt.com", - "tripadvisor.co.uk", - "tripadvisor.com", - "tripadvisor.de" - ], - "ghostery_id": "c_1402", - "iab_vendor": null, - "id": "tripadvisor", - "name": "TripAdvisor", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "triplelift": { - "category": "advertising", - "company_id": "triplelift", - "description": null, - "domains": [ - "3lift.com", - "d3iwjrnl4m67rd.cloudfront.net", - "triplelift.com" - ], - "ghostery_id": "1576", - "iab_vendor": 28, - "id": "triplelift", - "name": "TripleLift", - "privacy_url": "https://triplelift.com/privacy/", - "truste_type": null, - "website_url": "http://triplelift.com/" - }, - "trsv3.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "trsv3.com" - ], - "ghostery_id": "trsv3.com", - "iab_vendor": null, - "id": "trsv3.com", - "name": "trsv3.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "trueanthem": { - "category": "advertising", - "company_id": "trueanthem", - "description": "The easiest way to publish your best content at the right time to your social audience. ", - "domains": [ - "tru.am" - ], - "ghostery_id": "1924", - "iab_vendor": null, - "id": "trueanthem", - "name": "True Anthem", - "privacy_url": "https://www.trueanthem.com/privacy/", - "truste_type": "Social / Sharing Tools", - "website_url": "https://www.trueanthem.com/" - }, - "trueffect": { - "category": "advertising", - "company_id": "trueffect", - "description": null, - "domains": [ - "adlegend.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "trueffect", - "name": "Trueffect", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.trueffect.com/" - }, - "truoptik": { - "category": "site_analytics", - "company_id": null, - "description": "Tru Optik empowers brands, media companies and agencies with the ability to target and monetize millennials across all digital channels. ", - "domains": [ - "truoptik.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "truoptik", - "name": "Tru Optik", - "privacy_url": "http://truoptik.com/privacy-policy", - "truste_type": "Ad Platform", - "website_url": "http://truoptik.com/" - }, - "trustarc": { - "category": "essential", - "company_id": "trustarc", - "description": null, - "domains": [ - "trustarc.com", - "truste.com" - ], - "ghostery_id": "c_775", - "iab_vendor": null, - "id": "trustarc", - "name": "TrustArc", - "privacy_url": "https://www.trustarc.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "truste_consent": { - "category": "essential", - "company_id": "trustarc", - "description": null, - "domains": [ - "consent.truste.com" - ], - "ghostery_id": "2813", - "iab_vendor": null, - "id": "truste_consent", - "name": "Truste Consent", - "privacy_url": "https://www.trustarc.com/privacy-policy/", - "truste_type": null, - "website_url": null - }, - "truste_notice": { - "category": "essential", - "company_id": "trustarc", - "description": null, - "domains": [ - "choices-or.truste.com", - "choices.truste.com" - ], - "ghostery_id": "507", - "iab_vendor": null, - "id": "truste_notice", - "name": "TRUSTe Notice", - "privacy_url": "https://www.trustarc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.truste.com/" - }, - "truste_seal": { - "category": "essential", - "company_id": "trustarc", - "description": null, - "domains": [ - "privacy-policy.truste.com" - ], - "ghostery_id": "1582", - "iab_vendor": null, - "id": "truste_seal", - "name": "TRUSTe Seal", - "privacy_url": "https://www.trustarc.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.truste.com/" - }, - "trusted_shops": { - "category": "site_analytics", - "company_id": "trusted_shops", - "description": null, - "domains": [ - "trustedshops.com" - ], - "ghostery_id": "2816", - "iab_vendor": null, - "id": "trusted_shops", - "name": "Trusted Shops", - "privacy_url": "http://business.trustedshops.co.uk/imprint/", - "truste_type": null, - "website_url": null - }, - "trustpilot": { - "category": "customer_interaction", - "company_id": "trustpilot", - "description": null, - "domains": [ - "trustpilot.com" - ], - "ghostery_id": "2280", - "iab_vendor": null, - "id": "trustpilot", - "name": "Trustpilot", - "privacy_url": "http://legal.trustpilot.com/end-user-privacy-terms", - "truste_type": null, - "website_url": null - }, - "trustwave.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "trustwave.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "trustwave.com", - "name": "Trustwave", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.trustwave.com/home/" - }, - "tubecorporate": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "tubecorporate.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tubecorporate", - "name": "Tube Corporate", - "privacy_url": null, - "truste_type": null, - "website_url": "https://tubecorporate.com/" - }, - "tubecup.org": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "tubecup.org" - ], - "ghostery_id": "tubecup.org", - "iab_vendor": null, - "id": "tubecup.org", - "name": "tubecup.org", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "tubemogul": { - "category": "advertising", - "company_id": "tubemogul", - "description": null, - "domains": [ - "tubemogul.com" - ], - "ghostery_id": "736", - "iab_vendor": null, - "id": "tubemogul", - "name": "TubeMogul", - "privacy_url": "https://www.tubemogul.com/compliance/privacy-policy/", - "truste_type": null, - "website_url": "http://tubemogul.com/" - }, - "tumblr_analytics": { - "category": "site_analytics", - "company_id": "verizon", - "description": null, - "domains": [ - "sre-perim.com", - "txmblr.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tumblr_analytics", - "name": "Tumblr Analytics", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": null - }, - "tumblr_buttons": { - "category": "social_media", - "company_id": "verizon", - "description": null, - "domains": [ - "platform.tumblr.com" - ], - "ghostery_id": "1205", - "iab_vendor": null, - "id": "tumblr_buttons", - "name": "Tumblr Buttons", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://www.tumblr.com/" - }, - "turn_inc.": { - "category": "advertising", - "company_id": "singtel", - "description": null, - "domains": [ - "turn.com" - ], - "ghostery_id": "177", - "iab_vendor": null, - "id": "turn_inc.", - "name": "Turn Inc.", - "privacy_url": "https://www.singtel.com/data-protection", - "truste_type": null, - "website_url": "https://www.amobee.com/company/" - }, - "turner": { - "category": "cdn", - "company_id": "turner", - "description": null, - "domains": [ - "turner.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "turner", - "name": "Turner", - "privacy_url": "https://www.turner.com/legal#PrivacyPolicy", - "truste_type": null, - "website_url": "https://www.turner.com/" - }, - "tvsquared.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "tvsquared.com" - ], - "ghostery_id": "tvsquared.com", - "iab_vendor": null, - "id": "tvsquared.com", - "name": "TVSquared", - "privacy_url": null, - "truste_type": null, - "website_url": "http://tvsquared.com/" - }, - "twenga": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "c4tw.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "twenga", - "name": "Twenga Solutions", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.twenga-solutions.com/" - }, - "twiago": { - "category": "advertising", - "company_id": "twiago", - "description": null, - "domains": [ - "twiago.com" - ], - "ghostery_id": "2972", - "iab_vendor": 242, - "id": "twiago", - "name": "Twiago", - "privacy_url": "https://www.twiago.com/datenschutz/", - "truste_type": null, - "website_url": "https://www.twiago.com/" - }, - "twitch.tv": { - "category": "audio_video_player", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "ext-twitch.tv", - "twitch.tv" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "twitch.tv", - "name": "Twitch", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.twitch.tv/" - }, - "twitch_cdn": { - "category": "audio_video_player", - "company_id": "amazon_associates", - "description": null, - "domains": [ - "jtvnw.net", - "ttvnw.net", - "twitchcdn.net", - "twitchsvc.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "twitch_cdn", - "name": "Twitch CDN", - "privacy_url": "http://www.amazon.com/gp/help/customer/display.html?ie=UTF8&nodeId=468496", - "truste_type": null, - "website_url": "https://www.twitch.tv/" - }, - "twitter": { - "category": "social_media", - "company_id": "twitter", - "description": "Twitter is a real-time information network that connects you to the latest stories, ideas, opinions and news about what you find interesting. Simply find the accounts you find most compelling and follow the conversations.", - "domains": [ - "ads-twitter.com", - "t.co", - "twimg.com", - "twitter.com" - ], - "ghostery_id": "c_174", - "iab_vendor": null, - "id": "twitter", - "name": "Twitter", - "privacy_url": "https://twitter.com/privacy?lang=en", - "truste_type": "Social / Sharing Tools", - "website_url": "https://twitter.com" - }, - "twitter_for_business": { - "category": "advertising", - "company_id": "twitter", - "description": null, - "domains": [ - "tellapart.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "twitter_for_business", - "name": "Twitter for Business", - "privacy_url": "https://twitter.com/privacy?lang=en", - "truste_type": null, - "website_url": "https://business.twitter.com/" - }, - "twyn": { - "category": "advertising", - "company_id": "twyn", - "description": null, - "domains": [ - "twyn.com" - ], - "ghostery_id": "887", - "iab_vendor": null, - "id": "twyn", - "name": "Twyn", - "privacy_url": "http://www.twyn.com/datenschutz.html", - "truste_type": null, - "website_url": "http://www.twyn.com" - }, - "txxx.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "txxx.com" - ], - "ghostery_id": "txxx.com", - "iab_vendor": null, - "id": "txxx.com", - "name": "txxx.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://txxx.com" - }, - "tynt": { - "category": "advertising", - "company_id": "33across", - "description": null, - "domains": [ - "tynt.com" - ], - "ghostery_id": "1480", - "iab_vendor": null, - "id": "tynt", - "name": "Tynt", - "privacy_url": "http://www.33across.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.tynt.com/" - }, - "typeform": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "typeform.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "typeform", - "name": "Typeform", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.typeform.com/" - }, - "typekit_by_adobe": { - "category": "essential", - "company_id": "adobe", - "description": null, - "domains": [ - "typekit.com", - "typekit.net" - ], - "ghostery_id": "1154", - "iab_vendor": null, - "id": "typekit_by_adobe", - "name": "Typekit by Adobe", - "privacy_url": "https://www.adobe.com/privacy.html", - "truste_type": null, - "website_url": "https://www.adobe.com/" - }, - "typography.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "typography.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "typography.com", - "name": "Webfonts by Hoefler&Co", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.typography.com/" - }, - "tyroo": { - "category": "social_media", - "company_id": "tyroo", - "description": null, - "domains": [ - "tyroodr.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "tyroo", - "name": "Tyroo", - "privacy_url": "http://www.tyroo.com/privacy-policy", - "truste_type": null, - "website_url": "http://www.tyroo.com/" - }, - "ubersetzung-app.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "ubersetzung-app.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ubersetzung-app.com", - "name": "ubersetzung-app.com", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.ubersetzung-app.com/" - }, - "ucoz.net": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "ucoz.net" - ], - "ghostery_id": "554", - "iab_vendor": null, - "id": "ucoz.net", - "name": "uCoz", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.ucoz.net/" - }, - "umebiggestern.club": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "umebiggestern.club" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "umebiggestern.club", - "name": "umebiggestern.club", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "under-box.com": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "under-box.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "under-box.com", - "name": "under-box.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "undercomputer.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "undercomputer.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "undercomputer.com", - "name": "undercomputer.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "underdog_media": { - "category": "advertising", - "company_id": "underdog_media", - "description": null, - "domains": [ - "udmserve.net" - ], - "ghostery_id": "474", - "iab_vendor": 159, - "id": "underdog_media", - "name": "Underdog Media", - "privacy_url": "https://underdogmedia.com/privacy-policy/", - "truste_type": null, - "website_url": "http://www.underdogmedia.com" - }, - "undertone": { - "category": "advertising", - "company_id": "perion", - "description": null, - "domains": [ - "ads.undertone.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "undertone", - "name": "Undertone", - "privacy_url": "https://www.perion.com/privacy-policy/", - "truste_type": null, - "website_url": "https://www.undertone.com/" - }, - "unister": { - "category": "site_analytics", - "company_id": "unister", - "description": null, - "domains": [ - "unister-adservices.com", - "unister-gmbh.de" - ], - "ghostery_id": "1029", - "iab_vendor": null, - "id": "unister", - "name": "Unister", - "privacy_url": " http://www.unister.de/#datenschutz", - "truste_type": null, - "website_url": "http://www.unister.de/" - }, - "united_digital_group": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "nonstoppartner.net" - ], - "ghostery_id": "c_2403", - "iab_vendor": null, - "id": "united_digital_group", - "name": "United Digital Group", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.udg.de/" - }, - "united_internet_media_gmbh": { - "category": "advertising", - "company_id": "united_internet", - "description": "Our advertising solutions combine exclusive placements with maximum visibility and many proven efficacy. Specially tailored to different usage situations and Devices premium ad formats create unique holistic advertising solutions and enable a high-performance multi-screen advertising. With our recognized leading targeting system we also allow for the first time independent terminals targeting on all screens across via TGP.", - "domains": [ - "tifbs.net", - "ui-portal.de", - "uimserv.net" - ], - "ghostery_id": "c_m4", - "iab_vendor": null, - "id": "united_internet_media_gmbh", - "name": "United Internet Media GmbH", - "privacy_url": "https://www.united-internet-media.de/de/datenschutzhinweis/", - "truste_type": "Retargeting / Optimization", - "website_url": null - }, - "unpkg.com": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "unpkg.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "unpkg.com", - "name": "unpkg", - "privacy_url": null, - "truste_type": null, - "website_url": "https://unpkg.com/#/" - }, - "unruly_media": { - "category": "advertising", - "company_id": "unruly", - "description": null, - "domains": [ - "unrulymedia.com" - ], - "ghostery_id": "1298", - "iab_vendor": 162, - "id": "unruly_media", - "name": "Unruly Media", - "privacy_url": "https://unruly.co/privacy/", - "truste_type": null, - "website_url": "http://www.unrulymedia.com/" - }, - "uppr.de": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "uppr.de" - ], - "ghostery_id": "", - "iab_vendor": 459, - "id": "uppr.de", - "name": "uppr GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "https://uppr.de/" - }, - "upravel.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "upravel.com" - ], - "ghostery_id": "upravel.com", - "iab_vendor": null, - "id": "upravel.com", - "name": "upravel.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "uptolike.com": { - "category": "social_media", - "company_id": null, - "description": null, - "domains": [ - "uptolike.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "uptolike.com", - "name": "Uptolike", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.uptolike.com/" - }, - "urban-media.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "urban-media.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "urban-media.com", - "name": "Urban Media GmbH", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.urban-media.com/" - }, - "urban_airship": { - "category": "site_analytics", - "company_id": "urban_airship", - "description": null, - "domains": [ - "urbanairship.com" - ], - "ghostery_id": "2501", - "iab_vendor": null, - "id": "urban_airship", - "name": "Urban Airship", - "privacy_url": "https://www.urbanairship.com/legal/privacy-policy", - "truste_type": null, - "website_url": "https://www.urbanairship.com/" - }, - "usabilla": { - "category": "customer_interaction", - "company_id": "usabilla", - "description": null, - "domains": [ - "usabilla.com" - ], - "ghostery_id": "1766", - "iab_vendor": null, - "id": "usabilla", - "name": "Usabilla", - "privacy_url": "https://usabilla.com/privacy", - "truste_type": null, - "website_url": "https://usabilla.com/" - }, - "usemax": { - "category": "advertising", - "company_id": "usemax", - "description": null, - "domains": [ - "usemax.de", - "usemaxserver.de" - ], - "ghostery_id": "1414", - "iab_vendor": 212, - "id": "usemax", - "name": "Usemax", - "privacy_url": "http://www.usemax.de/?l=privacy", - "truste_type": null, - "website_url": "http://www.usemax.de" - }, - "usemessages.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "usemessages.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "usemessages.com", - "name": "usemessages.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "userlike.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "dq4irj27fs462.cloudfront.net", - "userlike-cdn-widgets.s3-eu-west-1.amazonaws.com", - "userlike.com" - ], - "ghostery_id": "userlike.com", - "iab_vendor": null, - "id": "userlike.com", - "name": "Userlike", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.userlike.com/" - }, - "userreport": { - "category": "customer_interaction", - "company_id": "userreport", - "description": "Helps you improve your website. Gives you knowledge about gender, age, income and much more about people that visit your website. We measure usability and shows where different kind of visitors click on your website. Lets users voice their ideas on how to improve your website through a feedback forum. ", - "domains": [ - "userreport.com" - ], - "ghostery_id": "950", - "iab_vendor": null, - "id": "userreport", - "name": "UserReport", - "privacy_url": "http://www.userreport.com/general-invitation-privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.userreport.com/" - }, - "uservoice": { - "category": "customer_interaction", - "company_id": "uservoice", - "description": null, - "domains": [ - "uservoice.com" - ], - "ghostery_id": "59", - "iab_vendor": null, - "id": "uservoice", - "name": "UserVoice", - "privacy_url": "https://www.uservoice.com/privacy/", - "truste_type": null, - "website_url": "http://uservoice.com/" - }, - "userzoom.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "userzoom.com" - ], - "ghostery_id": "1219", - "iab_vendor": null, - "id": "userzoom.com", - "name": "UserZoom", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.userzoom.com/" - }, - "uuidksinc.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "uuidksinc.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "uuidksinc.net", - "name": "uuidksinc.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "v12_group": { - "category": "site_analytics", - "company_id": null, - "description": "V12 Group is a marketing services organization that provides expert Consumer data in a variety of applications. Our multi-channel consumer file is one of the largest consumer databases in the direct marketing industry. The database is an aggregated file built from more than 40 compiled and proprietary data sources which combines hundreds of data points to improve targeting. This includes demographic, geographic, lifestyle, interests, and behavioral data. ", - "domains": [ - "v12group.com" - ], - "ghostery_id": "c_665", - "iab_vendor": null, - "id": "v12_group", - "name": "V12 Group", - "privacy_url": "http://www.v12groupinc.com/privacy-policy/", - "truste_type": "Data Provider / Aggregator", - "website_url": null - }, - "vacaneedasap.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "vacaneedasap.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vacaneedasap.com", - "name": "vacaneedasap.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "valiton": { - "category": "advertising", - "company_id": "hubert_burda_media", - "description": null, - "domains": [ - "vinsight.de" - ], - "ghostery_id": "1751", - "iab_vendor": null, - "id": "valiton", - "name": "Valiton", - "privacy_url": "http://www.hubert-burda-media.com/privacy/", - "truste_type": null, - "website_url": "https://www.valiton.com/" - }, - "ve_interactive": { - "category": "advertising", - "company_id": "ve_interactive", - "description": "Ve Interactive is a market conversion-enhancing technology and digital advertising in one integrated platform.", - "domains": [ - "veinteractive.com" - ], - "ghostery_id": "1547", - "iab_vendor": null, - "id": "ve_interactive", - "name": "Ve Interactive", - "privacy_url": "http://www.veinteractive.com/us/about-us/legal-policies/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.veinteractive.com" - }, - "velocecdn.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "velocecdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "velocecdn.com", - "name": "velocecdn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "vendemore": { - "category": "comments", - "company_id": "ratos", - "description": null, - "domains": [ - "vendemore.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vendemore", - "name": "Vendemore", - "privacy_url": "https://www.ratos.se/en/Diverse-sidor/website-policy/", - "truste_type": null, - "website_url": "https://vendemore.com/" - }, - "venturead.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "venturead.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "venturead.com", - "name": "venturead.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "vergic.com": { - "category": "comments", - "company_id": null, - "description": null, - "domains": [ - "vergic.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "vergic.com", - "name": "Vergic", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.vergic.com/" - }, - "vg_wort": { - "category": "site_analytics", - "company_id": "vg_wort", - "description": null, - "domains": [ - "vgwort.de" - ], - "ghostery_id": "711", - "iab_vendor": null, - "id": "vg_wort", - "name": "VG Wort", - "privacy_url": "http://www.vgwort.de/datenschutz.html", - "truste_type": null, - "website_url": "https://tom.vgwort.de/portal/showHelp" - }, - "vi": { - "category": "advertising", - "company_id": "vi", - "description": null, - "domains": [ - "digitaltarget.ru" - ], - "ghostery_id": "2006", - "iab_vendor": null, - "id": "vi", - "name": "Vi", - "privacy_url": "http://www.vi.ru/confedent.aspx", - "truste_type": null, - "website_url": "http://www.vi.ru/" - }, - "vibrant_ads": { - "category": "advertising", - "company_id": "vibrant_media", - "description": null, - "domains": [ - "intellitxt.com" - ], - "ghostery_id": "103", - "iab_vendor": 7, - "id": "vibrant_ads", - "name": "Vibrant Ads", - "privacy_url": "https://www.vibrantmedia.com/en/privacy-policy/", - "truste_type": null, - "website_url": "http://www.vibrantmedia.com/" - }, - "vicomi.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "vicomi.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "vicomi.com", - "name": "Vicomi", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.vicomi.com/" - }, - "vidazoo.com": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "vidazoo.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vidazoo.com", - "name": "Vidazoo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.vidazoo.com/" - }, - "videoadex.com": { - "category": "advertising", - "company_id": "digiteka", - "description": null, - "domains": [ - "videoadex.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "videoadex.com", - "name": "VideoAdX", - "privacy_url": "https://www.ultimedia.com/POLICY.html", - "truste_type": null, - "website_url": "https://www.videoadex.com/" - }, - "videology": { - "category": "advertising", - "company_id": "videology", - "description": null, - "domains": [ - "tidaltv.com" - ], - "ghostery_id": "746", - "iab_vendor": 309, - "id": "videology", - "name": "Videology", - "privacy_url": "https://videologygroup.com/en/privacy-policy", - "truste_type": null, - "website_url": "https://videologygroup.com/" - }, - "videoplayerhub.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "videoplayerhub.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "videoplayerhub.com", - "name": "videoplayerhub.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "videoplaza": { - "category": "advertising", - "company_id": "videoplaza", - "description": null, - "domains": [ - "videoplaza.tv" - ], - "ghostery_id": "1746", - "iab_vendor": null, - "id": "videoplaza", - "name": "Videoplaza", - "privacy_url": "http://www.ooyala.com/websiteprivacy", - "truste_type": null, - "website_url": "http://www.videoplaza.com/" - }, - "vidible": { - "category": "advertising", - "company_id": "verizon", - "description": null, - "domains": [ - "vidible.tv" - ], - "ghostery_id": "2207", - "iab_vendor": null, - "id": "vidible", - "name": "Vidible", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "http://vidible.tv/" - }, - "viglink": { - "category": "advertising", - "company_id": "viglink", - "description": "VigLink is a platform for monetizing content-driven commerce for publishers, bloggers, forums, social networks and apps. ", - "domains": [ - "viglink.com" - ], - "ghostery_id": "350", - "iab_vendor": null, - "id": "viglink", - "name": "VigLink", - "privacy_url": "http://www.viglink.com/legal/privacy", - "truste_type": "Sell Side Platform (SSP)", - "website_url": "http://www.viglink.com" - }, - "vigo": { - "category": "site_analytics", - "company_id": "vigo", - "description": null, - "domains": [ - "vigo.one", - "vigo.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vigo", - "name": "Vigo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://vigo.one/" - }, - "vimeo": { - "category": "audio_video_player", - "company_id": "iac_apps", - "description": null, - "domains": [ - "vimeo.com", - "vimeocdn.com" - ], - "ghostery_id": "2727", - "iab_vendor": null, - "id": "vimeo", - "name": "Vimeo", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "vindico_group": { - "category": "advertising", - "company_id": "vindico_group", - "description": null, - "domains": [ - "vindicosuite.com" - ], - "ghostery_id": "489", - "iab_vendor": null, - "id": "vindico_group", - "name": "Vindico Group", - "privacy_url": "https://www.sizmek.com/privacy-policy/optedin/", - "truste_type": null, - "website_url": "http://www.vindicogroup.com/" - }, - "vinted": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "vinted.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vinted", - "name": "Vinted", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.vinted.com/" - }, - "viralgains": { - "category": "advertising", - "company_id": null, - "description": "ViralGains is a video ad journey platform that enables marketers to engage people with relevant brand stories in the venues and contexts that people most favor.", - "domains": [ - "viralgains.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "viralgains", - "name": "ViralGains", - "privacy_url": "https://www.viralgains.com/privacy-policy", - "truste_type": "Ad Platform", - "website_url": "https://www.viralgains.com/" - }, - "visible_measures": { - "category": "advertising", - "company_id": "visible_measures", - "description": "Visible Measures is a provider of independent third party measurement solutions for Internet video publishers and advertisers. Their services help users measure video content consumption and viral distribution. ", - "domains": [ - "viewablemedia.net", - "visiblemeasures.com" - ], - "ghostery_id": "450", - "iab_vendor": null, - "id": "visible_measures", - "name": "Visible Measures", - "privacy_url": "http://www.visiblemeasures.com/privacy-policy/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.visiblemeasures.com/" - }, - "visual_iq": { - "category": "site_analytics", - "company_id": "visualiq", - "description": "Visual IQ is the world's leading cross channel marketing attribution software company. Our IQ Intelligence Suite of hosted software products reveals cross channel performance insights hidden deep within your marketing data, and provides both executive-level and practitioner-level recommendations to improve your marketing performance. ", - "domains": [ - "myvisualiq.net" - ], - "ghostery_id": "2903", - "iab_vendor": null, - "id": "visual_iq", - "name": "Visual IQ", - "privacy_url": "http://visualiq.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": null - }, - "visual_revenue": { - "category": "site_analytics", - "company_id": "outbrain", - "description": null, - "domains": [ - "visualrevenue.com" - ], - "ghostery_id": "689", - "iab_vendor": null, - "id": "visual_revenue", - "name": "Visual Revenue", - "privacy_url": "https://www.outbrain.com/legal/", - "truste_type": null, - "website_url": "http://visualrevenue.com/" - }, - "visual_website_optimizer": { - "category": "site_analytics", - "company_id": "wingify", - "description": null, - "domains": [ - "d5phz18u4wuww.cloudfront.net", - "visualwebsiteoptimizer.com", - "wingify.com" - ], - "ghostery_id": "257", - "iab_vendor": null, - "id": "visual_website_optimizer", - "name": "Visual Website Optimizer", - "privacy_url": "https://vwo.com/privacy-policy/", - "truste_type": null, - "website_url": "http://visualwebsiteoptimizer.com/" - }, - "visualdna": { - "category": "advertising", - "company_id": "harris_ia", - "description": "VisualDNA combines big data and psychology to reveal more about people and why they do what they do. Our vision is to help people be valued for who they really are. ", - "domains": [ - "vdna-assets.com", - "visualdna.com" - ], - "ghostery_id": "293", - "iab_vendor": null, - "id": "visualdna", - "name": "VisualDNA", - "privacy_url": "http://www.visualdna.com/privacy-policy/", - "truste_type": "Data Provider / Aggregator", - "website_url": "http://www.visualdna.com/" - }, - "visualstudio.com": { - "category": "misc", - "company_id": "microsoft", - "description": null, - "domains": [ - "visualstudio.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "visualstudio.com", - "name": "Visualstudio.com", - "privacy_url": "https://privacy.microsoft.com/en-us/privacystatement/", - "truste_type": null, - "website_url": "https://www.visualstudio.com/" - }, - "vivalu": { - "category": "advertising", - "company_id": "vivalu", - "description": null, - "domains": [ - "vi-tag.net" - ], - "ghostery_id": "2290", - "iab_vendor": null, - "id": "vivalu", - "name": "VIVALU", - "privacy_url": "http://www.vivalu.com/privatsphaere-und-datenschutz", - "truste_type": null, - "website_url": "https://www.vivalu.com/" - }, - "vizury": { - "category": "advertising", - "company_id": "vizury", - "description": "Vizury is a digital marketing company enabling e-commerce and online travel companies to maximize the value of their digital data. ", - "domains": [ - "vizury.com" - ], - "ghostery_id": "1260", - "iab_vendor": null, - "id": "vizury", - "name": "Vizury", - "privacy_url": "http://web.vizury.com/website/in/privacy-policy/", - "truste_type": "Retargeting / Optimization", - "website_url": "http://www.vizury.com/website/" - }, - "vk.com": { - "category": "social_media", - "company_id": "megafon", - "description": null, - "domains": [ - "cdn-vk.com", - "vk-analytics.com", - "vkuservideo.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vk.com", - "name": "Vk.com", - "privacy_url": "http://moscow.megafon.ru/download/~federal/politika_konfiden.pdf", - "truste_type": null, - "website_url": "https://vk.com/" - }, - "vkontakte_widgets": { - "category": "social_media", - "company_id": "megafon", - "description": null, - "domains": [ - "userapi.com", - "vk.com", - "vkontakte.ru" - ], - "ghostery_id": "675", - "iab_vendor": null, - "id": "vkontakte_widgets", - "name": "VKontakte", - "privacy_url": "http://moscow.megafon.ru/download/~federal/politika_konfiden.pdf", - "truste_type": null, - "website_url": "http://vk.com/developers.php" - }, - "vntsm.com": { - "category": "advertising", - "company_id": "venatus", - "description": null, - "domains": [ - "vntsm.com" - ], - "ghostery_id": "1853", - "iab_vendor": 26, - "id": "vntsm.com", - "name": "Venatus Media", - "privacy_url": "https://www.venatusmedia.com/privacy/", - "truste_type": null, - "website_url": "https://www.venatusmedia.com/" - }, - "vodafone.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "vodafone.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vodafone.de", - "name": "vodafone.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "voicefive": { - "category": "site_analytics", - "company_id": "comscore", - "description": "VoiceFive, a comScore, Inc. company, is a leading global market research company that studies and reports on Internet trends and behavior. VoiceFive is routinely commissioned to conduct research on numerous topics of concern to industry leaders in diverse fields, including travel, pharmaceuticals, and publishing.", - "domains": [ - "voicefive.com" - ], - "ghostery_id": "404", - "iab_vendor": null, - "id": "voicefive", - "name": "VoiceFive", - "privacy_url": "https://www.comscore.com/About-comScore/Privacy-Policy", - "truste_type": "Data Provider / Aggregator", - "website_url": "https://www.voicefive.com" - }, - "voluum": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "cwkuki.com", - "voluumtrk3.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "voluum", - "name": "Voluum", - "privacy_url": null, - "truste_type": null, - "website_url": "https://voluum.com/" - }, - "vooxe.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "vooxe.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "vooxe.com", - "name": "vooxe.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.vooxe.com/" - }, - "vorwerk.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "vorwerk.de" - ], - "ghostery_id": "vorwerk.de", - "iab_vendor": null, - "id": "vorwerk.de", - "name": "vorwerk.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://corporate.vorwerk.de/home/" - }, - "vox": { - "category": "customer_interaction", - "company_id": "vox", - "description": null, - "domains": [ - "vox-cdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "vox", - "name": "Vox", - "privacy_url": "https://www.voxmedia.com/pages/privacy-policy", - "truste_type": null, - "website_url": "https://www.voxmedia.com/" - }, - "vtracy.de": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "vtracy.de" - ], - "ghostery_id": "vtracy.de", - "iab_vendor": null, - "id": "vtracy.de", - "name": "vtracy.de", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "walkme.com": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "walkme.com" - ], - "ghostery_id": "3076", - "iab_vendor": null, - "id": "walkme.com", - "name": "Walk Me", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.walkme.com/" - }, - "walmart": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "walmart.com" - ], - "ghostery_id": "c_793", - "iab_vendor": null, - "id": "walmart", - "name": "Walmart", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "wayfair_com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "wayfair.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wayfair_com", - "name": "Wayfair", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.wayfair.com/" - }, - "wdr.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "wdr.de" - ], - "ghostery_id": "wdr.de", - "iab_vendor": null, - "id": "wdr.de", - "name": "wdr.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www1.wdr.de/index.html" - }, - "web.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "web.de", - "webde.de" - ], - "ghostery_id": "web.de", - "iab_vendor": null, - "id": "web.de", - "name": "web.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://web.de/" - }, - "web_wipe_anlaytics": { - "category": "site_analytics", - "company_id": "tensquare", - "description": null, - "domains": [ - "wipe.de" - ], - "ghostery_id": "651", - "iab_vendor": null, - "id": "web_wipe_anlaytics", - "name": "Wipe Analytics", - "privacy_url": "http://www.tensquare.de/cnt/p3p/policy.html?_ga=1.23987706.1560024373.1466454521", - "truste_type": null, - "website_url": "http://tensquare.de" - }, - "webclicks24_com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "webclicks24.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "webclicks24_com", - "name": "webclicks24.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "webclose.net": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "webclose.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "webclose.net", - "name": "webclose.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "webedia": { - "category": "advertising", - "company_id": "fimalac_group", - "description": null, - "domains": [ - "goutee.top", - "mediaathay.org.uk", - "wbdx.fr" - ], - "ghostery_id": null, - "iab_vendor": 171, - "id": "webedia", - "name": "Webedia", - "privacy_url": null, - "truste_type": null, - "website_url": "http://fr.webedia-group.com/" - }, - "webgains": { - "category": "misc", - "company_id": null, - "description": "Webgains was formed in 2004 to create a serious and professional presence in the on-line marketing arena. Their aim is to provide a secure and robust network to track and report on commercial transactions, to act as an easy and hassle-free financial and communication conduit between merchants and affiliates and to provide cutting edge tools to enable affiliates and merchants to manage their programmes simply and effectively. Their management team has over 20 years collective experience in on-line marketing, with much of that specifically in affiliate marketing. The management team believes whole-heartedly in Webgains? core values ", - "domains": [ - "webgains.com" - ], - "ghostery_id": "c_682", - "iab_vendor": null, - "id": "webgains", - "name": "Webgains", - "privacy_url": "http://www.webgains.com/public/privacy/", - "truste_type": "Data Provider / Aggregator", - "website_url": null - }, - "weborama": { - "category": "advertising", - "company_id": "weborama", - "description": "Weborama is an online marketing technology company that offers ad analytics and behavioral targeting services. ", - "domains": [ - "adrcdn.com", - "adrcntr.com", - "weborama.com", - "weborama.fr" - ], - "ghostery_id": "532", - "iab_vendor": 284, - "id": "weborama", - "name": "Weborama", - "privacy_url": "https://weborama.com/privacy_en/", - "truste_type": "Attribution / Analytics", - "website_url": "https://weborama.com/" - }, - "webtrekk": { - "category": "site_analytics", - "company_id": "webtrekk", - "description": "Webtrekk is a customer intelligence platform that allows companies to connect, analyze and activate user and marketing data across all devices. ", - "domains": [ - "d1r27qvpjiaqj3.cloudfront.net", - "mateti.net", - "wbtrk.net", - "wcfbc.net", - "webtrekk-asia.net", - "webtrekk.com", - "webtrekk.net", - "wt-eu02.net", - "wt-safetag.com" - ], - "ghostery_id": "269", - "iab_vendor": null, - "id": "webtrekk", - "name": "Webtrekk", - "privacy_url": "https://www.webtrekk.com/en/legal/opt-out-webtrekk/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.webtrekk.com/" - }, - "webtrends": { - "category": "site_analytics", - "company_id": "webtrends", - "description": "For more than 20 years, Webtrends has helped companies make sense of their customer data to drive digital marketing success. By combining innovative technology with our team of trusted and creative advisors, our solutions are designed to provide actionable insights, increase customer engagement and boost revenue.", - "domains": [ - "webtrends.com", - "webtrendslive.com" - ], - "ghostery_id": "49", - "iab_vendor": null, - "id": "webtrends", - "name": "Webtrends", - "privacy_url": "https://www.webtrends.com/terms-policies/privacy-notice/", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.webtrends.com/" - }, - "westlotto_com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "westlotto.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "westlotto_com", - "name": "westlotto.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://westlotto.com/" - }, - "wetter_com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "wetter.com", - "wettercomassets.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wetter_com", - "name": "Wetter.com", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.wetter.com/" - }, - "whatbroadcast": { - "category": "customer_interaction", - "company_id": "whatsbroadcast", - "description": null, - "domains": [ - "whatsbroadcast.com" - ], - "ghostery_id": "2810", - "iab_vendor": null, - "id": "whatbroadcast", - "name": "Whatbroadcast", - "privacy_url": "https://www.whatsbroadcast.com/privacy/", - "truste_type": null, - "website_url": null - }, - "whos.amung.us": { - "category": "site_analytics", - "company_id": "whos.amung.us", - "description": null, - "domains": [ - "amung.us" - ], - "ghostery_id": "252", - "iab_vendor": null, - "id": "whos.amung.us", - "name": "Whos.amung.us", - "privacy_url": "http://whos.amung.us/legal/privacy/", - "truste_type": null, - "website_url": "http://whos.amung.us/" - }, - "widespace": { - "category": "advertising", - "company_id": "widespace", - "description": null, - "domains": [ - "widespace.com" - ], - "ghostery_id": "1906", - "iab_vendor": 18, - "id": "widespace", - "name": "Widespace", - "privacy_url": "https://www.widespace.com/legal/privacy-policy-notice/", - "truste_type": null, - "website_url": "https://www.widespace.com/" - }, - "wikia-services.com": { - "category": "misc", - "company_id": "wikia", - "description": null, - "domains": [ - "wikia-services.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wikia-services.com", - "name": "Wikia Services", - "privacy_url": "http://www.wikia.com/Privacy_Policy", - "truste_type": null, - "website_url": " http://www.wikia.com/fandom" - }, - "wikia_beacon": { - "category": "site_analytics", - "company_id": "wikia", - "description": null, - "domains": [ - "wikia-beacon.com" - ], - "ghostery_id": "1202", - "iab_vendor": null, - "id": "wikia_beacon", - "name": "Wikia Beacon", - "privacy_url": "http://www.wikia.com/Privacy_Policy", - "truste_type": null, - "website_url": "http://www.wikia.com/" - }, - "wikia_cdn": { - "category": "cdn", - "company_id": "wikia", - "description": null, - "domains": [ - "nocookie.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wikia_cdn", - "name": "Wikia CDN", - "privacy_url": "http://www.wikia.com/Privacy_Policy", - "truste_type": null, - "website_url": null - }, - "wikimedia.org": { - "category": "cdn", - "company_id": "wikimedia_foundation", - "description": null, - "domains": [ - "wikimedia.org", - "wikipedia.org", - "wikiquote.org" - ], - "ghostery_id": "wikimedia.org", - "iab_vendor": null, - "id": "wikimedia.org", - "name": "WikiMedia", - "privacy_url": "https://wikimediafoundation.org/privacy-policy/", - "truste_type": null, - "website_url": "https://wikimediafoundation.org/" - }, - "wirecard": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "wirecard.com", - "wirecard.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wirecard", - "name": "Wirecard", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.wirecard.com/" - }, - "wiredminds": { - "category": "site_analytics", - "company_id": "wiredminds", - "description": null, - "domains": [ - "wiredminds.com", - "wiredminds.de" - ], - "ghostery_id": "510", - "iab_vendor": null, - "id": "wiredminds", - "name": "WiredMinds", - "privacy_url": "https://wiredminds.de/datenschutz/", - "truste_type": null, - "website_url": "http://www.wiredminds.de/" - }, - "wistia": { - "category": "site_analytics", - "company_id": "wistia", - "description": "Wistia is an internet video hosting and analytics company that enables marketers to track and analyze web video viewers.", - "domains": [ - "wistia.com", - "wistia.net" - ], - "ghostery_id": "2336", - "iab_vendor": null, - "id": "wistia", - "name": "Wistia", - "privacy_url": "http://wistia.com/privacy", - "truste_type": "Attribution / Analytics", - "website_url": null - }, - "wix.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "parastorage.com", - "wix.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wix.com", - "name": "Wix", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.wix.com/" - }, - "wixmp": { - "category": "cdn", - "company_id": "wix", - "description": null, - "domains": [ - "wixmp.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wixmp", - "name": "Wix Media Platform", - "privacy_url": "https://www.wix.com/about/privacy", - "truste_type": null, - "website_url": "https://www.wixmp.com/" - }, - "wnzmauurgol.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "wnzmauurgol.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wnzmauurgol.com", - "name": "wnzmauurgol.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "wonderpush": { - "category": "customer_interaction", - "company_id": "wonderpush", - "description": null, - "domains": [ - "wonderpush.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wonderpush", - "name": "WonderPush", - "privacy_url": "https://www.wonderpush.com/policies/privacy", - "truste_type": null, - "website_url": "https://www.wonderpush.com/" - }, - "woopic.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "woopic.com" - ], - "ghostery_id": "woopic.com", - "iab_vendor": null, - "id": "woopic.com", - "name": "woopic.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "wordpress_ads": { - "category": "advertising", - "company_id": "automattic", - "description": null, - "domains": [ - "pubmine.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wordpress_ads", - "name": "Wordpress Ads", - "privacy_url": "https://automattic.com/privacy/", - "truste_type": null, - "website_url": "https://wordpress.com/" - }, - "wordpress_stats": { - "category": "site_analytics", - "company_id": "automattic", - "description": null, - "domains": [ - "w.org", - "wordpress.com", - "wp.com" - ], - "ghostery_id": "24", - "iab_vendor": null, - "id": "wordpress_stats", - "name": "WordPress", - "privacy_url": "https://automattic.com/privacy/", - "truste_type": null, - "website_url": "http://wordpress.org/extend/plugins/stats/" - }, - "worldnaturenet_xyz": { - "category": "extensions", - "company_id": null, - "description": null, - "domains": [ - "worldnaturenet.xyz" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "worldnaturenet_xyz", - "name": "worldnaturenet.xyz", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "wp.pl": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "wp.pl", - "wpimg.pl" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wp.pl", - "name": "wp.pl", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.wp.pl/" - }, - "wp_engine": { - "category": "essential", - "company_id": "wp_engine", - "description": null, - "domains": [ - "wpengine.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wp_engine", - "name": "WP Engine", - "privacy_url": "https://wpengine.com/de/legal/privacy/", - "truste_type": null, - "website_url": "https://wpengine.com/" - }, - "wurfl": { - "category": "site_analytics", - "company_id": "scientiamobile", - "description": null, - "domains": [ - "wurfl.io" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "wurfl", - "name": "WURFL", - "privacy_url": "https://www.scientiamobile.com/privacy-policy/", - "truste_type": null, - "website_url": "https://web.wurfl.io/" - }, - "wwwpromoter": { - "category": "advertising", - "company_id": "wwwpromoter", - "description": null, - "domains": [ - "wwwpromoter.com" - ], - "ghostery_id": "2545", - "iab_vendor": null, - "id": "wwwpromoter", - "name": "WWWPromoter", - "privacy_url": "http://wwwpromoter.com/privacy.html", - "truste_type": null, - "website_url": null - }, - "wysistat.com": { - "category": "site_analytics", - "company_id": "wysistat", - "description": null, - "domains": [ - "wysistat.net" - ], - "ghostery_id": "902", - "iab_vendor": null, - "id": "wysistat.com", - "name": "Wysistat", - "privacy_url": "http://wysistat.net/politique-du-respect-de-la-vie-privee/", - "truste_type": null, - "website_url": "http://wysistat.net/" - }, - "wywy.com": { - "category": "advertising", - "company_id": null, - "description": "Wywy\u2019s mission is to help brands and agencies maximize their TV advertising ROI in a multi-screen world. Serving as the bridge between the TV and online world, helping brands to extend their TV reach online and thereby building a seamless brand story across multiple devices. ", - "domains": [ - "wywy.com", - "wywyuserservice.com" - ], - "ghostery_id": "wywy.com", - "iab_vendor": null, - "id": "wywy.com", - "name": "wywy", - "privacy_url": "http://wywy.com/legal/privacy-policy/", - "truste_type": "Ad Platform", - "website_url": "http://wywy.com/" - }, - "xen-media.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "xen-media.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "xen-media.com", - "name": "xen-media.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "xfreeservice.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "xfreeservice.com" - ], - "ghostery_id": "xfreeservice.com", - "iab_vendor": null, - "id": "xfreeservice.com", - "name": "xfreeservice.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "xhamster": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "xhamster.com", - "xhamsterlive.com", - "xhamsterpremium.com", - "xhcdn.com" - ], - "ghostery_id": "c_m3", - "iab_vendor": null, - "id": "xhamster", - "name": "xHamster", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "xing": { - "category": "site_analytics", - "company_id": "xing", - "description": null, - "domains": [ - "xing-share.com", - "xing.com" - ], - "ghostery_id": "2636", - "iab_vendor": null, - "id": "xing", - "name": "Xing", - "privacy_url": "http://www.xing.com/privacy", - "truste_type": null, - "website_url": null - }, - "xnxx_cdn": { - "category": "cdn", - "company_id": null, - "description": null, - "domains": [ - "xnxx-cdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "xnxx_cdn", - "name": "xnxx CDN", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.xnxx.com" - }, - "xplosion": { - "category": "advertising", - "company_id": "xplosion_interactive", - "description": null, - "domains": [ - "xplosion.de" - ], - "ghostery_id": "892", - "iab_vendor": null, - "id": "xplosion", - "name": "xplosion", - "privacy_url": " https://www.xplosion.de/datenschutz.php", - "truste_type": null, - "website_url": "http://www.xplosion.de/" - }, - "xvideos_com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "xvideos-cdn.com", - "xvideos.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "xvideos_com", - "name": "xvideos.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "xxxlshop.de": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "xxxlshop.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "xxxlshop.de", - "name": "xxxlshop.de", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.xxxlshop.de/" - }, - "xxxlutz": { - "category": "misc", - "company_id": "xxxlutz", - "description": null, - "domains": [ - "xxxlutz.de" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "xxxlutz", - "name": "XXXLutz", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.xxxlutz.de/" - }, - "yabbi": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "adx.com.ru", - "yabbi.me" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yabbi", - "name": "Yabbi", - "privacy_url": null, - "truste_type": null, - "website_url": "https://yabbi.me/" - }, - "yahoo": { - "category": "site_analytics", - "company_id": "verizon", - "description": null, - "domains": [ - "interclick.com", - "tumblr.com", - "yahoo.com", - "yahooapis.com", - "yimg.com" - ], - "ghostery_id": "c_253", - "iab_vendor": null, - "id": "yahoo", - "name": "Yahoo!", - "privacy_url": "https://www.verizon.com/about/privacy/privacy-policy-summary", - "truste_type": null, - "website_url": "https://developer.yahoo.com/analytics/" - }, - "yahoo_japan": { - "category": "misc", - "company_id": null, - "description": "Yahoo! JAPAN Corporation is a Japanese internet company formed as a joint venture between the American internet company Yahoo! and the Japanese internet company SoftBank.", - "domains": [ - "storage-yahoo.jp", - "yahoo.co.jp", - "yahooapis.jp", - "yimg.jp", - "yjtag.jp" - ], - "ghostery_id": "c_2456", - "iab_vendor": null, - "id": "yahoo_japan", - "name": "Yahoo! Japan", - "privacy_url": "https://about.yahoo.co.jp/docs/info/terms/chapter1.html#cf2nd", - "truste_type": "Ad Platform", - "website_url": null - }, - "yandex": { - "category": "advertising", - "company_id": "yandex", - "description": null, - "domains": [ - "d31j93rd8oukbv.cloudfront.net", - "webvisor.org", - "yandex.net", - "yandex.ru", - "yastatic.net" - ], - "ghostery_id": "2686", - "iab_vendor": null, - "id": "yandex", - "name": "Yandex", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": null - }, - "yandex.api": { - "category": "customer_interaction", - "company_id": "yandex", - "description": null, - "domains": [ - "yandex.st" - ], - "ghostery_id": "670", - "iab_vendor": null, - "id": "yandex.api", - "name": "Yandex.API", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": "http://api.yandex.ru/" - }, - "yandex_adexchange": { - "category": "advertising", - "company_id": "yandex", - "description": null, - "domains": [ - "yandexadexchange.net" - ], - "ghostery_id": "2914", - "iab_vendor": null, - "id": "yandex_adexchange", - "name": "Yandex AdExchange", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": null - }, - "yandex_advisor": { - "category": "extensions", - "company_id": "yandex", - "description": null, - "domains": [ - "metabar.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yandex_advisor", - "name": "Yandex.Advisor", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": "https://sovetnik.yandex.ru/" - }, - "yandex_direct": { - "category": "advertising", - "company_id": "yandex", - "description": null, - "domains": [ - "an.yandex.ru", - "awaps.yandex.ru" - ], - "ghostery_id": "1105", - "iab_vendor": null, - "id": "yandex_direct", - "name": "Yandex.Direct", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": "https://direct.yandex.com/" - }, - "yandex_metrika": { - "category": "site_analytics", - "company_id": "yandex", - "description": null, - "domains": [ - "mc.yandex.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yandex_metrika", - "name": "Yandex Metrika", - "privacy_url": "https://yandex.com/legal/privacy/", - "truste_type": null, - "website_url": "https://metrica.yandex.com/" - }, - "yapfiles.ru": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "yapfiles.ru" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yapfiles.ru", - "name": "yapfiles.ru", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.yapfiles.ru/" - }, - "yieldbot": { - "category": "site_analytics", - "company_id": "yieldbot", - "description": null, - "domains": [ - "yldbt.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yieldbot", - "name": "Yieldbot", - "privacy_url": "https://www.yieldbot.com/platform-privacy-policy/", - "truste_type": null, - "website_url": "https://www.yieldbot.com/" - }, - "yieldify": { - "category": "advertising", - "company_id": "yieldify", - "description": "Yieldify is an eCommerce solution that converts visitors into customers. We harness our multi-channel abandonment analytics platform to mould personalised buyer journeys for the modern, always-on consumer. Our expert teams build, manage and measure tailored on-site and email campaigns, across every channel. Our technology creates incremental value for top global brands by optimising their online conversion rates and driving lead generation.", - "domains": [ - "yieldify.com" - ], - "ghostery_id": "1779", - "iab_vendor": null, - "id": "yieldify", - "name": "Yieldify", - "privacy_url": "http://www.yieldify.com/privacy-policy", - "truste_type": "Attribution / Analytics", - "website_url": "http://www.yieldify.com/" - }, - "yieldlab": { - "category": "advertising", - "company_id": "prosieben_sat1", - "description": null, - "domains": [ - "yieldlab.net" - ], - "ghostery_id": "819", - "iab_vendor": 70, - "id": "yieldlab", - "name": "Yieldlab", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.yieldlab.de/" - }, - "yieldlove": { - "category": "advertising", - "company_id": "yieldlove", - "description": null, - "domains": [ - "yieldlove-ad-serving.net", - "yieldlove.com" - ], - "ghostery_id": null, - "iab_vendor": 251, - "id": "yieldlove", - "name": "Yieldlove", - "privacy_url": "http://www.yieldlove.com/cookie-policy", - "truste_type": null, - "website_url": "https://www.yieldlove.com/" - }, - "yieldmo": { - "category": "advertising", - "company_id": "yieldmo", - "description": null, - "domains": [ - "yieldmo.com" - ], - "ghostery_id": null, - "iab_vendor": 173, - "id": "yieldmo", - "name": "Yieldmo", - "privacy_url": "https://www.yieldmo.com/privacy/", - "truste_type": null, - "website_url": "https://www.yieldmo.com/" - }, - "yieldr": { - "category": "site_analytics", - "company_id": null, - "description": null, - "domains": [ - "254a.com" - ], - "ghostery_id": null, - "iab_vendor": 340, - "id": "yieldr", - "name": "Yieldr", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.yieldr.com/" - }, - "ymetrica1.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "ymetrica1.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ymetrica1.com", - "name": "ymetrica1.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "ymzrrizntbhde.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "ymzrrizntbhde.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "ymzrrizntbhde.com", - "name": "ymzrrizntbhde.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "yoochoose.net": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "yoochoose.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yoochoose.net", - "name": "YOOCHOOSE", - "privacy_url": null, - "truste_type": null, - "website_url": "https://yoochoose.com/" - }, - "yotpo": { - "category": "customer_interaction", - "company_id": null, - "description": null, - "domains": [ - "yotpo.com" - ], - "ghostery_id": "1622", - "iab_vendor": null, - "id": "yotpo", - "name": "Yotpo", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.yotpo.com/" - }, - "yottaa": { - "category": "site_analytics", - "company_id": "yottaa", - "description": null, - "domains": [ - "yottaa.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "yottaa", - "name": "Yottaa", - "privacy_url": "https://www.yottaa.com/privacy-legal/", - "truste_type": null, - "website_url": "https://www.yottaa.com/" - }, - "youporn": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "youporn.com", - "ypncdn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "youporn", - "name": "YouPorn", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "youtube": { - "category": "audio_video_player", - "company_id": "google", - "description": "Many websites, such as news sites and blogs, join the Google Display Network, which enables Google to show ads on their sites. Based on your visits to these websites, Google uses an advertising cookie (from DoubleClick) to associate your browser with interest and demographic categories. Google then uses these categories to show interest-based ads on these websites. Google's Ads Preferences Manager lets you edit these categories associated with your browser. Using the Ads Preferences Manager, you can edit the list of inferred interest and demographic categories that Google has associated with your cookie or opt-out of the cookie entirely. All information Google gathers is used in accordance with Google's privacy policy and helps Google improve your online experience. It is not used to identify you personally and Google will not show interest-based ads based on personal information without your permission. We also will not show interest-based ads based on sensitive information or interest categories, such as those based on, race, religion, sexual orientation, health, or sensitive financial categories, without your opt-in consent.", - "domains": [ - "googlevideo.com", - "youtube-nocookie.com", - "youtube.com", - "ytimg.com" - ], - "ghostery_id": "2303", - "iab_vendor": null, - "id": "youtube", - "name": "YouTube", - "privacy_url": "http://www.google.com/intl/en/policies/privacy/", - "truste_type": "Website Tools", - "website_url": "https://www.youtube.com/" - }, - "yume": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "yume.com" - ], - "ghostery_id": "c_281", - "iab_vendor": null, - "id": "yume", - "name": "YuMe", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "yusp": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "gravityrd-services.com" - ], - "ghostery_id": "", - "iab_vendor": null, - "id": "yusp", - "name": "Yusp", - "privacy_url": null, - "truste_type": null, - "website_url": "https://www.yusp.com/" - }, - "zalando_de": { - "category": "misc", - "company_id": "zalando", - "description": null, - "domains": [ - "zalan.do", - "zalando.de", - "ztat.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zalando_de", - "name": "zalando.de", - "privacy_url": "https://en.zalando.de/zalando-privacy-policy/", - "truste_type": null, - "website_url": null - }, - "zanox": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "zanox-affiliate.de", - "zanox.com", - "zanox.ws" - ], - "ghostery_id": "548", - "iab_vendor": null, - "id": "zanox", - "name": "Zanox", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.zanox.com/us/" - }, - "zdassets.com": { - "category": "misc", - "company_id": "zendesk", - "description": null, - "domains": [ - "zdassets.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zdassets.com", - "name": "Zendesk CDN", - "privacy_url": "http://www.zendesk.com/company/privacy", - "truste_type": null, - "website_url": "http://www.zendesk.com/" - }, - "zebestof.com": { - "category": "advertising", - "company_id": "zebestof", - "description": "Zebestof is an independant RTB programmatic platform. ", - "domains": [ - "zebestof.com" - ], - "ghostery_id": null, - "iab_vendor": 234, - "id": "zebestof.com", - "name": "Zebestof", - "privacy_url": "http://www.zebestof.com/en/about-us-2/privacy-en/", - "truste_type": "Demand Side Platform (DSP)", - "website_url": "http://www.zebestof.com/en/home/" - }, - "zedo": { - "category": "advertising", - "company_id": "zedo", - "description": "ZEDO, Inc. is a digital ad solutions company that offers products and services for a publisher's premium, self service, and remnant inventory. Products include ad network optimization, innovative rich media formats for publishers' direct sales teams, full featured ad serving, behavioral targeting data built into the ad server, an exchange-like platform for publishers to sell behavioral and DMA targeted inventory at high CPMs (see: www.zedoadnetwork.com), a self service platform to allow advertisers to buy directly from a publisher, outsourced ad ops and more. These products are integrated into one technology platform for publishers to choose from, or use seamlessly together. ZEDO has been in the internet advertising industry for over 10 years, and is the most successful independent ad server in the US. The company provides innovative solutions that boost revenues for Internet publishers.", - "domains": [ - "zedo.com" - ], - "ghostery_id": "102", - "iab_vendor": null, - "id": "zedo", - "name": "Zedo", - "privacy_url": "http://www.zedo.com/about-zedo/privacy-policy/", - "truste_type": "Ad Server", - "website_url": "http://www.zedo.com/" - }, - "zemanta": { - "category": "customer_interaction", - "company_id": "zemanta", - "description": null, - "domains": [ - "zemanta.com" - ], - "ghostery_id": "213", - "iab_vendor": 210, - "id": "zemanta", - "name": "Zemanta", - "privacy_url": "http://www.zemanta.com/legal/privacy", - "truste_type": null, - "website_url": "http://www.zemanta.com/" - }, - "zencoder": { - "category": "audio_video_player", - "company_id": "zencoder", - "description": null, - "domains": [ - "zencdn.net" - ], - "ghostery_id": "2607", - "iab_vendor": null, - "id": "zencoder", - "name": "Zencoder", - "privacy_url": "https://zencoder.com/en/privacy", - "truste_type": null, - "website_url": null - }, - "zendesk": { - "category": "customer_interaction", - "company_id": "zendesk", - "description": null, - "domains": [ - "zendesk.com" - ], - "ghostery_id": "222", - "iab_vendor": null, - "id": "zendesk", - "name": "Zendesk", - "privacy_url": "http://www.zendesk.com/company/privacy", - "truste_type": null, - "website_url": "http://www.zendesk.com/" - }, - "zergnet": { - "category": "customer_interaction", - "company_id": "zergnet", - "description": null, - "domains": [ - "zergnet.com" - ], - "ghostery_id": "1124", - "iab_vendor": null, - "id": "zergnet", - "name": "ZergNet", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.zergnet.com/info" - }, - "zeusclicks": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "zeusclicks.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zeusclicks", - "name": "ZeusClicks", - "privacy_url": null, - "truste_type": null, - "website_url": "http://zeusclicks.com/" - }, - "ziff_davis": { - "category": "advertising", - "company_id": "ziff_davis", - "description": null, - "domains": [ - "webtest.net", - "zdbb.net", - "ziffdavis.com", - "ziffdavisinternational.com", - "ziffprod.com", - "ziffstatic.com" - ], - "ghostery_id": "1600", - "iab_vendor": 321, - "id": "ziff_davis", - "name": "Ziff Davis", - "privacy_url": "http://www.ziffdavis.com/privacy-policy", - "truste_type": null, - "website_url": "https://www.ziffdavis.com/" - }, - "zimbio.com": { - "category": "misc", - "company_id": null, - "description": null, - "domains": [ - "zimbio.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zimbio.com", - "name": "Zimbio", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.zimbio.com/" - }, - "zmags": { - "category": "social_media", - "company_id": "gores_group", - "description": null, - "domains": [ - "zmags.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zmags", - "name": "Zmags", - "privacy_url": null, - "truste_type": null, - "website_url": "https://zmags.com/" - }, - "zmctrack.net": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "zmctrack.net" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zmctrack.net", - "name": "zmctrack.net", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "zog.link": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "zog.link" - ], - "ghostery_id": "zog.link", - "iab_vendor": null, - "id": "zog.link", - "name": "zog.link", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "zononi.com": { - "category": "pornvertising", - "company_id": null, - "description": null, - "domains": [ - "zononi.com" - ], - "ghostery_id": "zononi.com", - "iab_vendor": null, - "id": "zononi.com", - "name": "zononi.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "zopim": { - "category": "customer_interaction", - "company_id": "zopim", - "description": null, - "domains": [ - "zopim.com" - ], - "ghostery_id": "630", - "iab_vendor": null, - "id": "zopim", - "name": "Zopim", - "privacy_url": "https://www.zendesk.com/company/privacy/", - "truste_type": null, - "website_url": "http://www.zopim.com/" - }, - "zukxd6fkxqn.com": { - "category": "unknown", - "company_id": null, - "description": null, - "domains": [ - "zukxd6fkxqn.com" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zukxd6fkxqn.com", - "name": "zukxd6fkxqn.com", - "privacy_url": null, - "truste_type": null, - "website_url": null - }, - "zypmedia": { - "category": "advertising", - "company_id": null, - "description": null, - "domains": [ - "extend.tv" - ], - "ghostery_id": null, - "iab_vendor": null, - "id": "zypmedia", - "name": "ZypMedia", - "privacy_url": null, - "truste_type": null, - "website_url": "http://www.zypmedia.com/" - } - } -} \ No newline at end of file +{"mmtro.com":"1000mercis","creative-serving.com":"Platform161","1822direkt.de":"unknown","1dmp.io":"unknown","opecloud.com":"1plusX AG","1and1.com":"unknown","1und1.de":"unknown","uicdn.com":"unknown","website-start.de":"unknown","24-ads.com":"unknown","247-inc.net":"unknown","d1af033869koo7.cloudfront.net":"unknown","24smi.net":"unknown","24smi.org":"unknown","33across.com":"33Across","4cdn.org":"unknown","4finance.com":"unknown","7tv.de":"unknown","94j7afz2nr.xyz":"unknown","a3cloud.net":"unknown","aaxads.com":"unknown","abtasty.com":"AB Tasty","d1447tq2m68ekg.cloudfront.net":"AB Tasty","ablida.de":"unknown","ablida.net":"unknown","accengage.net":"Accengage","acestream.net":"unknown","acint.net":"Acint","acpm.fr":"unknown","acquia.com":"unknown","ziyu.net":"ACRWEB","active-agent.com":"Active Agent AG","acuityplatform.com":"Acuityads Inc.","acxiom.com":"Acxiom","ad-blocker.org":"unknown","ad-delivery.net":"unknown","ad4mat.ar":"ad4mat","ad4mat.at":"ad4mat","ad4mat.be":"ad4mat","ad4mat.bg":"ad4mat","ad4mat.br":"ad4mat","ad4mat.ch":"ad4mat","ad4mat.co.uk":"ad4mat","ad4mat.cz":"ad4mat","ad4mat.de":"ad4mat","ad4mat.dk":"ad4mat","ad4mat.es":"ad4mat","ad4mat.fi":"ad4mat","ad4mat.fr":"ad4mat","ad4mat.gr":"ad4mat","ad4mat.hu":"ad4mat","ad4mat.it":"ad4mat","ad4mat.mx":"ad4mat","ad4mat.net":"ad4mat","ad4mat.nl":"ad4mat","ad4mat.no":"ad4mat","ad4mat.pl":"ad4mat","ad4mat.ro":"ad4mat","ad4mat.ru":"ad4mat","ad4mat.se":"ad4mat","ad4mat.tr":"ad4mat","ad6.fr":"ad6media","ad6media.co.uk":"ad6media","ad6media.com":"ad6media","ad6media.es":"ad6media","ad6media.fr":"ad6media","adlightning.com":"Ad Lightning","adspirit.de":"AdSpirit GmbH","adspirit.net":"AdSpirit GmbH","adac.de":"unknown","adrtx.net":"Arvato Bertelsmann","adalliance.io":"unknown","adalyser.com":"OneSoon Ltd","adap.tv":"Verizon","yieldoptimizer.com":"ADARA MEDIA UNLIMITED","adbetclickin.pink":"unknown","adbetnet.com":"unknown","adblade.com":"Adblade","adbrn.com":"unknown","adc-serv.net":"unknown","adc-srv.net":"unknown","adclear.net":"AdClear GmbH","yagiay.com":"unknown","addthis.com":"Oracle","addthiscdn.com":"Oracle","addthisedge.com":"Oracle","ipredictive.com":"Adelphic LLC","adform.net":"Adform A/S","adformdsp.net":"Adform A/S","seadform.net":"Adform A/S","adfox.ru":"Yandex","adwolf.ru":"Yandex","adgear.com":"Samsung","adgrx.com":"Samsung","adglare.net":"unknown","adsafety.net":"Admans","smartadcheck.de":"adgoal","smartredirect.de":"adgoal","adguard.com":"unknown","afy11.net":"Cox Enterprises","adition.com":"ProSiebenSat.1 Media","adjust.com":"Adjust GmbH","netsprint.eu":"Netsprint SA","adlabs.ru":"unknown","clickiocdn.com":"unknown","luxup.ru":"unknown","mixmarket.biz":"unknown","adlooxtracking.com":"Adloox SA","adx1.com":"unknown","admantx.com":"Expert System, SpA","adizio.com":"Admedo Ltd","admedo.com":"Admedo Ltd","admeira.ch":"unknown","admaym.com":"AdMeta","atemda.com":"AdMeta","admitad.com":"Admitad","admixer.net":"unknown","admized.com":"unknown","admo.tv":"unknown","adnet.biz":"adNET.de","adnet.de":"adNET.de","adnetworkperformance.com":"unknown","adnium.com":"unknown","heias.com":"ADNOLOGIES GmbH","adobe.com":"Adobe","demdex.net":"Adobe","everestjs.net":"Adobe","everesttech.net":"Adobe","adobedtm.com":"Adobe","adobelogin.com":"Adobe","adobetag.com":"Adobe","adocean.pl":"AdOcean","adomik.com":"unknown","adotmob.com":"A.Mob","adpilot.at":"unknown","erne.co":"unknown","adrecover.com":"AdPushUp, Inc.","adriver.ru":"Ad River","adroll.com":"AdRoll Inc","adrom.net":"unknown","txt.eu":"unknown","adsbookie.com":"unknown","adscale.de":"Ströer SSP GmbH","adsco.re":"unknown","adskeeper.co.uk":"Adskeeper","adsnative.com":"AdsNative","adsniper.ru":"unknown","o333o.com":"AdSpyglass","ad-stir.com":"United Inc.","adswizz.com":"unknown","adtech.de":"Verizon","adtechus.com":"Verizon","adtelligence.de":"unknown","adentifi.com":"AdTheorent, Inc","adthink.com":"unknown","audienceinsights.net":"unknown","adtiger.de":"AdTiger","adtng.com":"unknown","adtr02.com":"unknown","adtriba.com":"unknown","adtrue.com":"AdTrue","awempire.com":"Adult Webmaster Empire","dditscdn.com":"Adult Webmaster Empire","livejasmin.com":"Adult Webmaster Empire","adup-tech.com":"unknown","ahcdn.com":"unknown","pix-cdn.org":"unknown","adventori.com":"ADventori SAS","adverserve.net":"adverServe","adverticum.net":"Adverticum Zrt.","adsdk.com":"Verizon","advertising.com":"Verizon","aol.com":"Verizon","atwola.com":"Verizon","pictela.net":"Verizon","advertserve.com":"unknown","advolution.de":"Advolution","adwebster.com":"adwebster","adworx.at":"unknown","adworxs.net":"unknown","adxpansion.com":"AdXpansion","adxprtz.com":"unknown","adyoulike.com":"ADYOULIKE SA","omnitagjs.com":"ADYOULIKE SA","adzerk.net":"Adzerk","aemediatraffic.com":"unknown","hprofits.com":"unknown","affectv.com":"Affectv Ltd","banner-rotation.com":"Axel Springer Group","webmasterplan.com":"Axel Springer Group","affimax.de":"AffiMax","afgr2.com":"unknown","aftv-serving.bid":"unknown","agkn.com":"Neustar ","aidata.io":"unknown","muscache.com":"unknown","musthird.com":"unknown","airpr.com":"AirPR Inc.","abmr.net":"Akamai Technologies","akamai.net":"Akamai Technologies","akamaihd.net":"Akamai Technologies","akamaized.net":"Akamai Technologies","akstat.io":"Akamai Technologies","edgekey.net":"Akamai Technologies","edgesuite.net":"Akamai Technologies","akamoihd.net":"unknown","akanoo.com":"Akanoo","aldi-international.com":"unknown","alephd.com":"Verizon","alexametrics.com":"Amazon","d31qbv1cthcecs.cloudfront.net":"Amazon","d5nxst8fruw4z.cloudfront.net":"Amazon","algolia.com":"unknown","algolia.net":"unknown","algovid.com":"unknown","alibaba.com":"Alibaba","alicdn.com":"Alibaba","alipay.com":"Alibaba","allegroimg.com":"Allegro","allegrostatic.com":"Allegro","allegrostatic.pl":"Allegro","ngacm.com":"Allegro","ngastatic.com":"Allegro","allo-pages.fr":"Links Lab","amazon.ca":"Amazon","amazon.co.jp":"Amazon","amazon.co.uk":"Amazon","amazon.com":"Amazon","amazon.de":"Amazon","amazon.es":"Amazon","amazon.fr":"Amazon","amazon.it":"Amazon","d3io1k5o0zdpqr.cloudfront.net":"Amazon","amazon-adsystem.com":"Amazon","assoc-amazon.ca":"Amazon","assoc-amazon.co.uk":"Amazon","assoc-amazon.com":"Amazon","assoc-amazon.de":"Amazon","assoc-amazon.fr":"Amazon","assoc-amazon.jp":"Amazon","images-amazon.com":"Amazon","media-amazon.com":"Amazon","ssl-images-amazon.com":"Amazon","cloudfront.net":"Amazon","amazonpay.com":"Amazon","payments-amazon.com":"Amazon","aiv-cdn.net":"Amazon","amazonaws.com":"Amazon","amazonwebservices.com":"Amazon","awsstatic.com":"Amazon","amgload.net":"unknown","ad.amgdgt.com":"Singtel","ads.amgdgt.com":"Singtel","amplitude.com":"Amplitude","d24n15hnbwhuhn.cloudfront.net":"Amplitude","ampproject.org":"Google","ancestrycdn.com":"Ancestry","ancoraplatform.com":"Ancora","aniview.com":"unknown","answerscloud.com":"Answers.com","aolcdn.com":"Verizon","apa.at":"Apa","apester.com":"Apester Ltd","apicit.net":"unknown","appcues.com":"unknown","appdynamics.com":"AppDynamics","de8of677fyt0b.cloudfront.net":"AppDynamics","eum-appdynamics.com":"AppDynamics","apple.com":"Apple","adnxs.com":"AppNexus Inc.","adnxs.net":"AppNexus Inc.","appsflyer.com":"AppsFlyer","arcpublishing.com":"unknown","ard.de":"unknown","areyouahuman.com":"distil networks","art19.com":"Art19","artlebedev.ru":"Art.Lebedev Studio","asambeauty.com":"unknown","ask.com":"unknown","aspnetcdn.com":"Microsoft","ati-host.net":"AT Internet","aticdn.net":"AT Internet","xiti.com":"AT Internet","oadts.com":"unknown","adbureau.net":"Facebook","atdmt.com":"Facebook","atlassbx.com":"Facebook","atl-paas.net":"Atlassian","atlassian.com":"Atlassian","atlassian.net":"Atlassian","d12ramskps3070.cloudfront.net":"Atlassian","d1xfq2052q7thw.cloudfront.net":"Atlassian","marketplace.atlassian.com":"Atlassian","atsfi.de":"Axel Springer Group","revsci.net":"AudienceScience","targetingmarketplace.com":"AudienceScience","wunderloop.net":"AudienceScience","audiencesquare.com":"unknown","audtd.com":"unknown","ausgezeichnet.org":"unknown","auth0.com":"Auth0 Inc.","api.autopilothq.com":"AutopilotHQ","autoscout24.com":"Scout 24","autoscout24.net":"Scout 24","avail.net":"Avail","avocet.io":"Avocet Systems Limited","awin.com":"Awin","azureedge.net":"Microsoft","babator.com":"unknown","bahn.de":"unknown","img-bahn.de":"unknown","baidu.com":"Baidu","baidustatic.com":"Baidu","bdimg.com":"Baidu","bdstatic.com":"Baidu","baletingo.com":"unknown","bangdom.com":"unknown","bannerflow.com":"Bannerflow AB","basilic.io":"unknown","t4ft.de":"ProSiebenSat.1 Media","bauernative.com":"Bauer Media","baur.de":"unknown","baynote.net":"Baynote","bazaarvoice.com":"Bazaarvoice","bbci.co.uk":"unknown","bfmio.com":"unknown","beampulse.com":"unknown","bebi.com":"unknown","beeketing.com":"Beeketing","beeline.ru":"unknown","bidr.io":"BeeswaxIO Corporation","belboon.de":"unknown","bemobile.ua":"Bemobile","betterttv.net":"NightDev, LLC","betweendigital.com":"Between Digital","bid.run":"Bid.Run","bidswitch.net":"BIDSWITCH GmbH","exe.bid":"BIDSWITCH GmbH","bttrack.com":"Bidtellect, Inc","bidtheatre.com":"BidTheatre AB","bigcommerce.com":"BigCommerce","bigmir.net":"unknown","bigpoint-payment.com":"unknown","bigpoint.com":"unknown","bigpoint.net":"unknown","bpcdn.net":"unknown","bpsecure.com":"unknown","bildstatic.de":"unknown","bing.com":"Microsoft","bing.net":"Microsoft","virtualearth.net":"Microsoft","bit.ly":"unknown","bitrix.info":"unknown","bitrix.ru":"unknown","blau.de":"unknown","bnmla.com":"engage:BDR (Blink New Media)","blismedia.com":"Blis","blogfoster.com":"Blogfoster GmbH","blogher.com":"Penske Media Corporation ","blogherads.com":"Penske Media Corporation ","blogimg.jp":"LINE Corporation","blogsmithmedia.com":"Verizon","blogblog.com":"Google","blogger.com":"Google","blogspot.com":"Google","brcdn.com":"BloomReach","brsrvr.com":"BloomReach","brtstats.com":"BloomReach","blueconic.net":"unknown","triggeredmail.appspot.com":"unknown","bluecore.com":"unknown","bkrtx.com":"Oracle","bluekai.com":"Oracle","adrevolver.com":"Verizon","bluelithium.com":"Verizon","bluenewsupdate.info":"unknown","btttag.com":"unknown","bodelen.com":"unknown","boltdns.net":"unknown","ml314.com":"Bombora Inc.","bongacams.com":"unknown","bonial.com":"unknown","bonialconnect.com":"unknown","bonialserviceswidget.de":"unknown","booking.com":"unknown","bstatic.com":"unknown","bootstrapcdn.com":"BootstrapCDN","borrango.com":"unknown","boudja.com":"unknown","bounceexchange.com":"Bounce Exchange, Inc","bouncex.com":"unknown","bouncex.net":"unknown","boxever.com":"Boxever","app.link":"Branch Metrics Inc","branch.io":"Branch Metrics Inc","brandmetrics.com":"unknown","brandwire.tv":"unknown","appboycdn.com":"Braze, Inc.","brealtime.com":"unknown","brightcove.com":"Brightcove","brightcove.net":"Brightcove","brightonclick.com":"unknown","btrll.com":"Verizon","brillen.de":"unknown","browser-update.org":"Browser-Update","btncdn.com":"unknown","bluetriangletech.com":"Blue Triangle Technologies Inc","bugherd.com":"Macropod Software Pty Ltd","bugsnag.com":"Bugsnag","d2wy8f7a9ursnm.cloudfront.net":"Bugsnag","bulkhentai.com":"unknown","bumlam.com":"unknown","bunchbox.co":"Bunchbox","bf-ad.net":"Hubert Burda Media","bf-tools.net":"Hubert Burda Media","bstatic.de":"Hubert Burda Media","buysellads.com":"BuySellAds.com","servedby-buysellads.com":"BuySellAds.com","buzzadexchange.com":"unknown","bwbx.io":"unknown","c1exchange.com":"C1 Exchange ","cackle.me":"unknown","caltat.com":"unknown","cam-content.com":"unknown","camakaroda.com":"unknown","canvas.net":"unknown","canvasnetwork.com":"unknown","du11hjcvx0uqb.cloudfront.net":"unknown","kdata.fr":"HighCo","cardlytics.com":"unknown","3gl.net":"Catchpoint Systems","cbsinteractive.com":"CBS Interactive","ccmbg.com":"unknown","cdn-net.com":"unknown","cdn13.com":"unknown","cdn77.com":"unknown","cdn77.org":"unknown","cdnetworks.com":"unknown","cdnetworks.net":"unknown","cdnnetwok.xyz":"unknown","cdnondemand.org":"unknown","cdnsure.com":"unknown","cdnvideo.com":"CDNvideo","cdnwidget.com":"unknown","cedexis-radar.net":"Cedexis","cedexis-test.com":"Cedexis","cedexis.com":"Cedexis","cedexis.fastlylb.net":"Cedexis","cedexis.net":"Cedexis","certona.net":"Certona (Resonance)","res-x.com":"Certona (Resonance)","cptrack.de":"unknown","chaordicsystems.com":"unknown","chartbeat.com":"ChartBeat","chartbeat.net":"ChartBeat","chatango.com":"Chatango","chaturbate.com":"unknown","chefkoch-cdn.de":"unknown","chefkoch.de":"unknown","api.getchute.com":"ESW Capital","media.chute.io":"ESW Capital","iqcontentplatform.de":"unknown","ciuvo.com":"unknown","civicscience.com":"unknown","clcknads.pro":"unknown","pulseradius.com":"ClearPier","clearbit.com":"Clearbit","clearsale.com.br":"unknown","cleverpush.com":"Clever Push","wzrkt.com":"CleverTap","clickintext.net":"ClickInText","clickonometrics.pl":"Clickonometrics","clicktale.com":"ClickTale","clicktale.net":"ClickTale","pantherssl.com":"ClickTale","clicktripz.com":"ClickTripz","getclicky.com":"Clicky","staticstuff.net":"Clicky","cloud-media.fr":"unknown","cloudflare.com":"Cloudflare","cloudflare.net":"Cloudflare","cloudimg.io":"Scaleflex SAS","cloudinary.com":"unknown","cnbc.com":"NBCUniversal, LLC","cnetcontent.com":"CBS Interactive","cnzz.com":"Umeng","umeng.com":"Umeng","codeonclick.com":"unknown","authedmine.com":"unknown","coinhive.com":"unknown","coll1onf.com":"unknown","coll2onf.com":"unknown","combotag.com":"unknown","commercialvalue.org":"unknown","afcyhf.com":"APN News and Media Ltd","anrdoezrs.net":"APN News and Media Ltd","apmebf.com":"APN News and Media Ltd","awltovhc.com":"APN News and Media Ltd","emjcd.com":"APN News and Media Ltd","ftjcfx.com":"APN News and Media Ltd","lduhtrp.net":"APN News and Media Ltd","qksz.net":"APN News and Media Ltd","tkqlhce.com":"APN News and Media Ltd","tqlkg.com":"APN News and Media Ltd","yceml.net":"APN News and Media Ltd","comprigo.com":"unknown","zqtk.net":"comScore, Inc.","conative.de":"unknown","condenast.com":"Condé Nast ","congstar.de":"unknown","connatix.com":"Connatix Native Exchange Inc.","connexity.net":"Connexity","cxt.ms":"Connexity","connextra.com":"Connextra","serverbid.com":"GiftConnect","adrolays.de":"Axel Springer Group","c-i.as":"Axel Springer Group","df-srv.de":"Axel Springer Group","content.ad":"Content.ad","contentexchange.me":"I.R.V.","ctfassets.net":"Contentful GmbH","contentpass.de":"unknown","contentpass.net":"unknown","contentsquare.net":"unknown","continum.net":"unknown","fastclick.net":"Conversant Europe Ltd.","mediaplex.com":"Conversant Europe Ltd.","mplxtms.com":"Conversant Europe Ltd.","convertro.com":"Verizon","d1ivexoxmp59q7.cloudfront.net":"Verizon","conviva.com":"Conviva","cookiebot.com":"unknown","cpmstar.com":"CPMStar","cpx.to":"unknown","cqq5id8n.com":"unknown","cquotient.com":"Salesforce","cetrk.com":"Crazy Egg","crazyegg.com":"Crazy Egg","dnn506yrbagrg.cloudfront.net":"Crazy Egg","createjs.com":"unknown","creativecommons.org":"Creative Commons Corporation","crimsonhexagon.com":"unknown","hexagon-analytics.com":"unknown","ctasnet.com":"Crimtan Holdings Limited","ctnsnet.com":"Crimtan Holdings Limited","ctpsnet.com":"Crimtan Holdings Limited","criteo.com":"Criteo S.A.","criteo.net":"Criteo S.A.","crossengage.io":"CrossEngage","crosspixel.net":"unknown","crsspxl.com":"unknown","crosssell.info":"Econda","curse.com":"Amazon","cursecdn.com":"Amazon","cxense.com":"Cxense ASA","cxo.name":"unknown","da-ads.com":"unknown","dailymail.co.uk":"Dmn Media","dailymotion.com":"Vivendi","dailymotionbus.com":"Vivendi","dm-event.net":"Vivendi","dmcdn.net":"Vivendi","dmxleo.com":"Vivendi","dantrack.net":"Dentsu Aegis Network","datacaciques.com":"unknown","datadome.co":"DataDome","inextaction.net":"Oracle","nexac.com":"Oracle","datamind.ru":"unknown","datatables.net":"unknown","w55c.net":"Dataxu, Inc. ","datds.net":"unknown","pro-market.net":"unknown","davebestdeals.com":"unknown","dawandastatic.com":"unknown","dc-storm.com":"DC Storm","h4k5.com":"DC Storm","stormcontainertag.com":"DC Storm","stormiq.com":"DC Storm","dcbap.com":"unknown","dcmn.com":"unknown","decibelinsight.net":"Decibel Insight","deepintent.com":"unknown","defpush.com":"unknown","deichmann.com":"unknown","adaction.se":"Delta Projects AB","de17a.com":"Delta Projects AB","delvenetworks.com":"Limelight Networks","company-target.com":"unknown","demandbase.com":"unknown","dapxl.com":"unknown","deviantart.net":"unknown","d3von6il1wr7wo.cloudfront.net":"unknown","dianomi.com":"unknown","dianomioffers.co.uk":"unknown","privacy-center.org":"Didomi","digicert.com":"Digicert","digidip.net":"Digidip","wtp101.com":"Digilant Spain, SLU","digioh.com":"unknown","lightboxcdn.com":"unknown","digitalgov.gov":"USA Government","nedstat.com":"Adobe","sitestat.com":"Adobe","adtag.cc":"unknown","adready.com":"Digital Remedy","dwin1.com":"Axel Springer Group","digiteka.net":"DIGITEKA Technologies","ultimedia.com":"DIGITEKA Technologies","digitru.st":"IAB","dimml.io":"unknown","discordapp.com":"unknown","disqus.com":"Disqus","disquscdn.com":"Disqus","disqusads.com":"Disqus","distiltag.com":"distil networks","districtm.ca":"district m inc.","districtm.io":"district m inc.","jsrdn.com":"unknown","div.show":"unknown","and.co.uk":"Daily Mail and General Trust plc","ctret.de":"unknown","awecr.com":"Docler IP","fwbntw.com":"Docler IP","donation-tools.org":"unknown","doofinder.com":"unknown","dotmetrics.net":"unknown","dotomi.com":"Conversant Europe Ltd.","dtmc.com":"Conversant Europe Ltd.","dtmpub.com":"Conversant Europe Ltd.","2mdn.net":"Google","doubleclick.net":"Google","invitemedia.com":"Google","doublepimp.com":"DoublePimp","doublepimpssl.com":"DoublePimp","redcourtside.com":"DoublePimp","xeontopa.com":"DoublePimp","zerezas.com":"DoublePimp","doubleverify.com":"DoubleVerify Inc.​","adsymptotic.com":"Drawbridge","dreamlab.pl":"Onet.pl SA","dropbox.com":"unknown","dropboxstatic.com":"unknown","dsp-rambler.ru":"A&NN Investments ","m6d.com":"Dstillery","media6degrees.com":"Dstillery","dtscout.com":"unknown","dyntrk.com":"unknown","dyntracker.de":"unknown","media01.eu":"unknown","dynamicyield.com":"unknown","dynatrace.com":"Thoma Bravo","dyncdn.me":"unknown","eanalyzer.de":"unknown","early-birds.fr":"unknown","easylist.club":"unknown","classistatic.de":"eBay","ebay-us.com":"eBay","ebay.com":"eBay","ebay.de":"eBay","ebayclassifiedsgroup.com":"eBay","ebaycommercenetwork.com":"eBay","ebaydesc.com":"eBay","ebayimg.com":"eBay","ebayrtm.com":"eBay","ebaystatic.com":"eBay","econda-monitor.de":"Econda","effectivemeasure.net":"Effective Measure","effiliation.com":"Effiliation","ehi-siegel.de":"unknown","ekomi.de":"eKomi","elasticad.net":"Elastic Ad","eloqua.com":"Oracle","en25.com":"Oracle","eluxer.net":"unknown","embed.ly":"Medium","embedly.com":"Medium","emetriq.de":"emetriq GmbH","emsmobile.de":"unknown","engagio.com":"Engagio","adtlgc.com":"unknown","ensighten.com":"Ensighten","email-reflex.com":"unknown","epoq.de":"epoq","eproof.com":"unknown","equitystory.com":"EQS Group","ero-advertising.com":"Ero Advertising","eroadvertising.com":"Ero Advertising","d15qhc0lu1ghnk.cloudfront.net":"Errorception","errorception.com":"Errorception","eshopcomp.com":"unknown","espncdn.com":"The Walt Disney Company","esprit.de":"unknown","cybermonitor.com":"Mediametrie","estat.com":"Mediametrie","etahub.com":"unknown","etracker.com":"etracker GmbH","etracker.de":"etracker GmbH","sedotracker.com":"etracker GmbH","etsystatic.com":"Etsy, Inc.","ew3.io":"Eulerian Technologies","evergage.com":"unknown","betrad.com":"unknown","evidon.com":"unknown","exactag.com":"Exactag GmbH","exelator.com":"Nielsen","exdynsrv.com":"ExoClick","exoclick.com":"ExoClick","exosrv.com":"ExoClick","exoticads.com":"unknown","expedia.com":"IAC (InterActiveCorp)","trvl-px.com":"IAC (InterActiveCorp)","eccmp.com":"Experian Information Solutions, Inc.","express.co.uk":"unknown","extreme-dm.com":"Extreme Digital","eyeota.net":"Eyeota Ptd Ltd","eyereturn.com":"Torstar Corporation ","eyeviewads.com":"Eyeview","f11-ads.com":"unknown","facebook.com":"Facebook","facebook.net":"Facebook","fbcdn.net":"Facebook","fbsbx.com":"Facebook","facetz.net":"DCA (Data-Centric Alliance)","faktor.io":"Faktor B.V.","angsrvr.com":"unknown","fap.to":"unknown","fastly-insights.com":"Fastly","fastly.net":"Fastly","fastlylb.net":"Fastly","fastpic.ru":"FastPic","feedbackify.com":"Feedbackify","feedburner.com":"Google","fidelity-media.com":"Fidelity Media","fiksu.com":"Noosphere","fileserve.xyz":"FileServe","findizer.fr":"unknown","findologic.com":"unknown","firebaseio.com":"Google","firstimpression.io":"First Impression","fitanalytics.com":"Fit Analytics","fivetran.com":"Fivetran","flagcounter.com":"Flag Counter","flashtalking.com":"Flashtalking, Inc.","flattr.com":"Flattr","flickr.com":"Verizon","staticflickr.com":"Verizon","lflipboard.com":"Flipboard","flixcdn.com":"unknown","flix360.com":"unknown","flocktory.com":"unknown","flowplayer.org":"FlowPlayer","adingo.jp":"unknown","flx1.com":"FlxOne","flxpxl.com":"FlxOne","fontawesome.com":"unknown","footprintdns.com":"Microsoft","fqtag.com":"Impact","securepaths.com":"Impact","foresee.com":"Answers.com","forter.com":"unknown","fortlachanhecksof.info":"unknown","fout.jp":"unknown","fncstatic.com":"Fox News Network, LLC","foxydeal.com":"unknown","yabidos.com":"unknown","freedom.com":"Freedom Mortgage","freegeoip.net":"unknown","freenet.de":"unknown","freent.de":"unknown","fwmrm.net":"Comcast","d36mpcpuzc4ztk.cloudfront.net":"Freshdesk","freshdesk.com":"Freshdesk","adultfriendfinder.com":"FriendFinder Networks","amigos.com":"FriendFinder Networks","board-books.com":"FriendFinder Networks","cams.com":"FriendFinder Networks","facebookofsex.com":"FriendFinder Networks","getiton.com":"FriendFinder Networks","nostringsattached.com":"FriendFinder Networks","pop6.com":"FriendFinder Networks","streamray.com":"FriendFinder Networks","fstrk.net":"24metrics","fullstory.com":"fullstory","fyber.com":"Fyber ","gamedistribution.com":"unknown","gannett-cdn.com":"unknown","gdmdigital.com":"VE Interactive (Formely GDM Digital)","gemius.pl":"Gemius SA","generaltracking.de":"unknown","gssprt.jp":"unknown","geotrust.com":"GeoTrust","getsitecontrol.com":"GetSiteControl","adhigh.net":"GetIntent","gettyimages.com":"unknown","sensic.net":"GfK Group","gfycat.com":"unknown","videostat.com":"Adknowledge","gigya.com":"Gigya","giphy.com":"unknown","giraff.io":"unknown","github.com":"GitHub, Inc.","githubassets.com":"GitHub, Inc.","githubusercontent.com":"GitHub, Inc.","githubapp.com":"GitHub, Inc.","github.io":"GitHub, Inc.","glganltcs.space":"unknown","globalwebindex.net":"GlobalWebIndex","globalnotifier.com":"unknown","globalsign.com":"unknown","glomex.cloud":"unknown","glomex.com":"unknown","glotgrx.com":"unknown","gmx.net":"unknown","gmxpro.net":"unknown","go.com":"The Walt Disney Company","google.at":"Google","google.be":"Google","google.ca":"Google","google.ch":"Google","google.co.id":"Google","google.co.in":"Google","google.co.jp":"Google","google.co.ma":"Google","google.co.th":"Google","google.co.uk":"Google","google.com":"Google","google.com.ar":"Google","google.com.au":"Google","google.com.br":"Google","google.com.mx":"Google","google.com.tr":"Google","google.com.tw":"Google","google.com.ua":"Google","google.cz":"Google","google.de":"Google","google.dk":"Google","google.dz":"Google","google.es":"Google","google.fi":"Google","google.fr":"Google","google.gr":"Google","google.hu":"Google","google.ie":"Google","google.it":"Google","google.nl":"Google","google.no":"Google","google.pl":"Google","google.pt":"Google","google.ro":"Google","google.rs":"Google","google.ru":"Google","google.se":"Google","google.tn":"Google","googleadservices.com":"Google","google-analytics.com":"Google","appspot.com":"Google","adsensecustomsearchads.com":"Google","fonts.googleapis.com":"Google","ggpht.com":"Google","1e100cdn.net":"Google","googlesyndication.com":"Google","googletagmanager.com":"Google","googletagservices.com":"Google","googlecommerce.com":"Google","googleusercontent.com":"Google","googleapis.com":"Google","trw12.com":"Grand Slam Media","tuberewards.com":"Grand Slam Media","grapeshot.co.uk":"Oracle","gscontxt.net":"Oracle","gravatar.com":"Automattic","gravity.com":"Gravity","grvcdn.com":"Gravity","greatviews.de":"Parship","greentube.com":"unknown","gt-cdn.net":"unknown","groovinads.com":"GroovinAds","bidagent.xad.com":"GroundTruth","gmads.net":"GroupM","grmtech.net":"GroupM","gstatic.com":"Google","guj.de":"Gruner + Jahr AG","emsservice.de":"Gruner + Jahr AG","gumgum.com":"GumGum, Inc.","haendlerbund.de":"unknown","healte.de":"unknown","d36lvucg9kzous.cloudfront.net":"Heap","heapanalytics.com":"Heap","heatmap.it":"Heatmap","weltsport.net":"unknown","here.com":"unknown","herokuapp.com":"unknown","adlink.net":"Hi-media Performance","comclick.com":"Hi-media Performance","hi-mediaserver.com":"Hi-media Performance","himediads.com":"Hi-media Performance","himediadx.com":"Hi-media Performance","highwebmedia.com":"unknown","hwcdn.net":"Highwinds","histats.com":"Histats","hivedx.com":"unknown","hoholikik.club":"unknown","h-cdn.com":"Hola CDN","homeaway.com":"unknown","hlserve.com":"Criteo S.A.","hotdogsandads.com":"unknown","hotjar.com":"Hotjar","hotlog.ru":"unknown","howtank.com":"unknown","hqentertainmentnetwork.com":"unknown","justservingfiles.net":"unknown","hsleadflows.net":"HubSpot","hstrck.com":"unknown","hs-analytics.net":"HubSpot","hs-scripts.com":"HubSpot","hubapi.com":"HubSpot","hubspot.com":"HubSpot","hubvisor.io":"unknown","hurra.com":"Hurra Communications","hybrid.ai":"Hybrid Adtech GmbH","targetix.net":"Hybrid Adtech GmbH","hyvyd.com":"unknown","ib-ibi.com":"KBM Group","i-mobile.co.jp":"i-mobile","i10c.net":"unknown","consensu.org":"IAB","iadvize.com":"iAdvize","cmcore.com":"IBM","coremetrics.com":"IBM","nsimg.net":"unknown","icuazeczpeoohx.com":"unknown","id-news.net":"unknown","idcdn.de":"unknown","idealo.com":"unknown","ie8eamus.com":"unknown","igodigital.com":"iGoDigital","ad.wsod.com":"IHS","ihvmcqojoj.com":"unknown","iias.eu":"unknown","imgix.net":"unknown","imgur.com":"Imgur","immobilienscout24.de":"Scout 24","static-immobilienscout24.de":"Scout 24","imonomy.com":"imonomy","7eer.net":"Impact Radius","d3cxv97fi8q177.cloudfront.net":"Impact Radius","evyy.net":"Impact Radius","impactradius-event.com":"Impact Radius","impactradius-tag.com":"Impact Radius","impactradius.com":"Impact Radius","ojrq.net":"Impact Radius","r7ls.net":"Impact Radius","360yield.com":"Improve Digital International BV","inbenta.com":"Inbenta","inboxsdk.com":"unknown","indeed.com":"Indeed","casalemedia.com":"Index Exchange, Inc. ","indexww.com":"Index Exchange, Inc. ","impdesk.com":"Infectious Media","impressiondesk.com":"Infectious Media","infolinks.com":"Infolinks","intextscript.com":"Infolinks","ioam.de":"INFOnline","iocnt.net":"INFOnline","ivwbox.de":"INFOnline","innogames.com":"unknown","innogames.de":"unknown","innogamescdn.com":"unknown","innovid.com":"Innovid","useinsider.com":"Insider","insightexpressai.com":"Millward Brown","inspectlet.com":"Inspectlet","inspsearchapi.com":"System1","cdninstagram.com":"Facebook","instagram.com":"Facebook","sdad.guru":"Instart Logic Inc.","adsafeprotected.com":"Integral Ad Science, Inc.","iasds01.com":"Integral Ad Science, Inc.","intelliad.com":"intelliAd","intelliad.de":"intelliAd","ist-track.com":"Intelligent Reach","intentiq.com":"Intent IQ","intentmedia.net":"Intent Media, Inc.","intercom.io":"Intercom","intercomassets.com":"Intercom","intercomcdn.com":"Intercom","interedy.info":"unknown","intermarkets.net":"unknown","bbelements.com":"Internet BillBoard a.s.","goadservices.com":"Internet BillBoard a.s.","ibillboard.com":"Internet BillBoard a.s.","ps7894.com":"Advertise.com","im-apps.net":"Intimate Merger","investingchannel.com":"InvestingChannel, Inc.","ionicframework.com":"unknown","dsp.io":"iotec global Ltd.","iesnare.com":"iovation","iovation.com":"iovation","iperceptions.com":"iPerceptions","mbww.com":"IPG Mediabrands","ipify.org":"unknown","ipromote.com":"iPromote","ispot.tv":"unknown","itineraire.info":"unknown","iubenda.com":"unknown","ivcbrasil.org.br":"unknown","ivitrack.com":"SIEN","ixiaa.com":"IXI Services","ixquick.com":"StartPage","jetlore.com":"Jetlore","pixel.wp.com":"Automattic","stats.wp.com":"Automattic","jimcdn.com":"unknown","jimdo.com":"unknown","jimstatic.com":"unknown","jivosite.com":"unknown","jivox.com":"Jivox Corp","joinhoney.com":"unknown","cdnjquery.com":"JS Foundation","jquery.com":"JS Foundation","jsdelivr.net":"unknown","jsuol.com.br":"unknown","contentabc.com":"JuggCash","mofos.com":"JuggCash","juicyads.com":"JuicyAds","jumptap.com":"Millenial Media (Jumptap)","justpremium.com":"Justpremium BV","justpremium.nl":"Justpremium BV","jvc.gg":"unknown","d21rhj7n383afu.cloudfront.net":"JW Player","jwpcdn.com":"JW Player","jwplatform.com":"JW Player","jwplayer.com":"JW Player","jwpltx.com":"JW Player","jwpsrv.com":"JW Player","kaeufersiegel.de":"unknown","kairion.de":"ProSiebenSat.1 Media","kctag.net":"ProSiebenSat.1 Media","kaloo.ga":"unknown","kaltura.com":"Kaltura","kameleoon.com":"Kameleoon","kameleoon.eu":"Kameleoon","kampyle.com":"Medallia Inc. ","kaspersky-labs.com":"Kaspersky Lab","kataweb.it":"unknown","dc8na2hxrj29i.cloudfront.net":"Keen IO","keen.io":"Keen IO","xg4ken.com":"Kenshoo","keywee.co":"unknown","khzbeucrltin.com":"unknown","king.com":"King.com","midasplayer.com":"Activision Blizzard","kinja.com":"Gizmodo Media Group","kinja-img.com":"Gizmodo Media Group","kinja-static.com":"Gizmodo Media Group","kiosked.com":"Kiosked","kissmetrics.com":"unknown","klarna.com":"unknown","komoona.com":"Komoona","ktxtr.com":"Kontext","krxd.net":"Salesforce","d31bfnnwekbny6.cloudfront.net":"ACTU/CCI","kpcustomer.de":"ACTU/CCI","q-sis.de":"ACTU/CCI","kxcdn.com":"unknown","ladsp.com":"unknown","latimes.com":"Los Angeles Times","layer-ad.org":"unknown","lemde.fr":"Le Monde.fr","leadplace.fr":"Leadplace - Temelio","lengow.com":"Lengow","lenmit.com":"unknown","lentainform.com":"unknown","lenua.de":"Synatix","footprint.net":"Level 3 Communications, Inc.","licensebuttons.net":"unknown","lfstmedia.com":"LifeStreet Corporation","content-recommendation.net":"Gruner + Jahr AG","ligadx.com":"Gruner + Jahr AG","ligatus.com":"Gruner + Jahr AG","ligatus.de":"Gruner + Jahr AG","veeseo.com":"Gruner + Jahr AG","line-apps.com":"LINE Corporation","line-scdn.net":"LINE Corporation","line.me":"LINE Corporation","bizo.com":"Microsoft","bizographics.com":"Microsoft","licdn.com":"Microsoft","linkedin.com":"Microsoft","lynda.com":"Microsoft","lp4.io":"Linkpulse","linksynergy.com":"Rakuten Marketing LLC","lqm.io":"LiquidM Technology GmbH","lqmcdn.com":"LiquidM Technology GmbH","list.ru":"Megafon","liadm.com":"Liveintent Inc.","liveadexchanger.com":"unknown","livechatinc.com":"LiveChat","livechatinc.net":"LiveChat","fyre.co":"Livefyre","livefyre.com":"Livefyre","yadro.ru":"LiveInternet","liveperson.net":"LivePerson","lpsnmedia.net":"LivePerson","pippio.com":"Acxiom","rapleaf.com":"Acxiom","rlcdn.com":"Acxiom","livesportmedia.eu":"unknown","livetex.ru":"unknown","lkqd.net":"Nexstar Digital, LLC.","loadbee.com":"unknown","loadercdn.com":"unknown","loadsource.org":"unknown","addtoany.com":"LightInTheBox.com","loggly.com":"Loggly","logsss.com":"unknown","loop11.com":"360i","crwdcntrl.net":"Lotame Solutions, Inc.","vidcpm.com":"unknown","livestatserver.com":"unknown","luckyorange.com":"unknown","luckyorange.net":"unknown","luckypushh.com":"unknown","lytics.io":"unknown","lyuoaxruaqdo.com":"unknown","m-pathy.com":"m-pathy","mpnrs.com":"unknown","madeleine.de":"unknown","d3ezl4ajpp2zy8.cloudfront.net":"Magnetic","domdex.com":"Magnetic","domdex.net":"Magnetic","magnuum.com":"unknown","imgsmail.ru":"Megafon","mail.ru":"Megafon","mradx.net":"Megafon","odnoklassniki.ru":"Megafon","ok.ru":"Megafon","chimpstatic.com":"The Rocket Science Group","list-manage.com":"The Rocket Science Group","mailchimp.com":"The Rocket Science Group","mailerlite.com":"MailerLite","makeappdev.xyz":"unknown","makesource.cool":"unknown","mapandroute.de":"unknown","mapbox.com":"unknown","marinsm.com":"Marin Software","dt00.net":"MGID Inc.","dt07.net":"MGID Inc.","marketgid.com":"MGID Inc.","mgid.com":"MGID Inc.","marketo.com":"Marketo","marketo.net":"Marketo","mktoresp.com":"Marketo","9c9media.com":"MarkMonitor","caanalytics.com":"MarkMonitor","mmstat.com":"MarkMonitor","marshadow.io":"unknown","edigitalsurvey.com":"MaruEdr","marvellousmachine.net":"unknown","mathjax.org":"unknown","maxcdn.com":"unknown","netdna-cdn.com":"unknown","netdna-ssl.com":"unknown","maxmind.com":"MaxMind","maxonclick.com":"unknown","mxptint.net":"MaxPoint Interactive","maxymiser.net":"Oracle","m6r.eu":"Ströer SSP GmbH","scanalert.com":"McAfee","ywxi.net":"McAfee","media-imdb.com":"Amazon","media.net":"Media.net Advertising FZ-LLC","mediaimpact.de":"Media Impact","mookie1.com":"Media Innovation Group","medialead.de":"The Reach Group GmbH","mathads.com":"MediaMath, Inc.","mathtag.com":"MediaMath, Inc.","mediarithmics.com":"mediarithmics SAS","tns-counter.ru":"Mediascope","mediator.media":"My.com B.V.","mediav.com":"unknown","meetrics.net":"Meetrics GmbH","mxcdn.net":"Meetrics GmbH","research.de.com":"Meetrics GmbH","mein-bmi.com":"unknown","mercadoclics.com":"unknown","mlstatic.com":"unknown","rkdms.com":"Dentsu Aegis Network","messenger.com":"Facebook","netaffiliation.com":"Kwanko","metalyzer.com":"Metapeople","mlsat02.de":"Metapeople","metrigo.com":"Metrigo","microad.co.jp":"unknown","microad.jp":"unknown","microad.net":"unknown","azurewebsites.net":"Microsoft","cloudapp.net":"Microsoft","gfx.ms":"Microsoft","live.com":"Microsoft","microsoft.com":"Microsoft","microsoftonline-p.com":"Microsoft","microsoftonline.com":"Microsoft","microsofttranslator.com":"Microsoft","msecnd.net":"Microsoft","msedge.net":"Microsoft","msocdn.com":"Microsoft","onestore.ms":"Microsoft","s-microsoft.com":"Microsoft","trouter.io":"Microsoft","windows.net":"Microsoft","imgfarm.com":"IAC (InterActiveCorp)","mindspark.com":"IAC (InterActiveCorp)","staticimgfarm.com":"IAC (InterActiveCorp)","mirtesen.ru":"unknown","mixpanel.com":"Mixpanel","mxpnl.com":"Mixpanel","mxpnl.net":"Mixpanel","mncdn.com":"unknown","moatads.com":"Oracle","moatpixel.com":"Oracle","mobtrks.com":"unknown","modulepush.com":"unknown","devappgrant.space":"unknown","monetate.net":"Monetate","fonts.net":"unknown","fonts.com":"unknown","monster.com":"Monster Worldwide","mopinion.com":"Mopinion","mopub.com":"Twitter","mouseflow.com":"Mouseflow","movad.de":"unknown","movad.net":"unknown","micpn.com":"unknown","moz.com":"unknown","mrpdata.com":"Fifth Story","mrpdata.net":"Fifth Story","ads.msn.com":"Microsoft","ads1.msn.com":"Microsoft","adsyndication.msn.com":"Microsoft","bat.r.msn.com":"Microsoft","col.stc.s-msn.com":"Microsoft","flex.msn.com":"Microsoft","msn.com":"Microsoft","s-msn.com":"Microsoft","litix.io":"Mux, Inc.","mycdn.me":"Megafon","mycliplister.com":"unknown","myfonts.net":"MyFonts","mythings.com":"MyThings ","nakanohito.jp":"UserInsight","nanigans.com":"Nanigans","audiencemanager.de":"Nano Interactive GmbH","narrative.io":"unknown","nativeads.com":"unknown","ntv.io":"Nativo, Inc.","postrelease.com":"Nativo, Inc.","navdmp.com":"Navegg","naver.com":"NAVER Corp","naver.net":"NAVER Corp","s-nbcnews.com":"unknown","nekudo.com":"Nekudo","ad-srv.net":"NEORY GmbH","contentspread.net":"NEORY GmbH","neory-tm.com":"NEORY GmbH","simptrack.com":"NEORY GmbH","nerfherdersolo.com":"unknown","wemfbox.ch":"NET-Metrix","netbiscuits.net":"Netbiscuits","netflix.com":"unknown","nflxext.com":"unknown","nflximg.net":"unknown","nflxso.net":"unknown","nflxvideo.net":"unknown","netzathleten-media.de":"IP Deutschland","netmining.com":"Netmining","netmng.com":"Netmining","glanceguide.com":"Nielsen","imrworldwide.com":"Nielsen","vizu.com":"Nielsen","netrk.net":"netzeffekt","netseer.com":"NetSeer","nsaudience.pl":"Netsprint SA","adadvisor.net":"Neustar ","d1ros97qkrwjf5.cloudfront.net":"New Relic","newrelic.com":"New Relic","nr-data.net":"New Relic","newscgp.com":"News Corp","newsupdatedir.info":"unknown","newsupdatewe.info":"unknown","nexage.com":"Verizon","nexeps.com":"unknown","nxtck.com":"Nextperf","nice264.com":"unknown","cho-chin.com":"Samurai Factory","donburako.com":"Samurai Factory","hishaku.com":"Samurai Factory","shinobi.jp":"Samurai Factory","nitropay.com":"GG Software LLC","noaa.gov":"unknown","trkme.net":"United Digital Group (FKA nonstopConsulting)","noop.style":"unknown","nosto.com":"unknown","adleadevent.com":"unknown","nt.vc":"unknown","nuggad.net":"Nugg.ad","nyacampwk.com":"unknown","nyetm2mkch.com":"unknown","nyt.com":"The New York Times Company","o12zs3u2n.com":"unknown","o2.pl":"o2.pl","o2online.de":"unknown","oath.com":"Verizon","oclasrv.com":"unknown","octapi.net":"unknown","office.com":"Microsoft","office.net":"Microsoft","office365.com":"Microsoft","oghub.io":"unknown","olark.com":"Olark","olx-st.com":"unknown","onap.io":"unknown","omarsys.com":"XCaliber","omniconvert.com":"Omniconvert","omnidsp.com":"unknown","2o7.net":"Adobe","du8783wkf05yr.cloudfront.net":"Adobe","hitbox.com":"Adobe","imageg.net":"Adobe","omtrdc.net":"Adobe","oms.eu":"unknown","omsnative.de":"unknown","behavioralengine.com":"Cloud Technologies S.A.","onaudience.com":"Cloud Technologies S.A.","onesignal.com":"OneSignal","os.tc":"OneSignal","ocdn.eu":"unknown","onet.pl":"unknown","onetrust.com":"OneTrust","fogl1onf.com":"OnFocus","onfocus.io":"OnFocus","onthe.io":"onthe.io","ooyala.com":"Telstra","oloadcdn.net":"unknown","openload.co":"unknown","openstat.net":"unknown","odnxs.net":"OpenX Software Ltd.","openx.net":"OpenX Software Ltd.","openx.org":"OpenX Software Ltd.","openxenterprise.com":"OpenX Software Ltd.","servedbyopenx.com":"OpenX Software Ltd.","opinary.com":"unknown","opta.net":"unknown","cookielaw.org":"unknown","optimatic.com":"Optimatic","optimicdn.com":"unknown","optimizely.com":"Optimizely","optimonk.com":"OptiMonk","mstrlytcs.com":"OptinMonster","optmnstr.com":"OptinMonster","optmstr.com":"OptinMonster","optnmstr.com":"OptinMonster","optincollect.com":"OptinCollect","volvelle.tech":"Ve Global","ora.tv":"Ora.TV","rightnowtech.com":"Oracle","rnengage.com":"Oracle","orange.fr":"Orange Mobile","orangeads.fr":"Orange Mobile","wanadoo.fr":"Orange France","emxdgt.com":"Engine","othersearch.info":"unknown","otm-r.com":"unknown","otto.de":"unknown","ottogroup.media":"unknown","outbrain.com":"Outbrain","outbrainimg.com":"Outbrain","overheat.it":"unknown","oewabox.at":"The Austrian Web Analysis (OWA)","owneriq.net":"OwnerIQ","ownpage.fr":"unknown","owox.com":"OWOX Inc.","oxomi.com":"unknown","pageanalytics.space":"unknown","blockmetrics.com":"PageFair","pagefair.com":"PageFair","pagefair.net":"PageFair","pardot.com":"Pardot","d1z2jf7jlzjs58.cloudfront.net":"Parse.ly","parsely.com":"Parse.ly","paypal.com":"eBay","paypalobjects.com":"eBay","pcvark.com":"unknown","peer5.com":"Peer5","peerius.com":"Peerius","pendo.io":"unknown","pepper.com":"6 Minutes Media GmbH","perfdrive.com":"unknown","perfectaudience.com":"Perfect Audience","prfct.co":"Perfect Audience","perfectmarket.com":"Perfect Market","performgroup.com":"Perform Media Services Ltd","performax.cz":"unknown","perimeterx.net":"unknown","permutive.com":"Permutive, Inc.","persgroep.net":"unknown","petametrics.com":"unknown","piguiqproxy.com":"unknown","pingdom.net":"Pingdom","pinimg.com":"Pinterest","pinterest.com":"Pinterest","adrta.com":"Pixalate, Inc.","pizzaandads.com":"unknown","pladform.com":"Pladform","pfrm.co":"unknown","impact-ad.jp":"D.A.Consortium","playbuzz.com":"Playbuzz Ltd. ","plista.com":"plista GmbH","pluso.ru":"unknown","pmddby.com":"unknown","pnamic.com":"unknown","po.st":"RhythmOne, LLC","poirreleast.club":"unknown","mediavoice.com":"Polar Mobile Group Inc.","polldaddy.com":"Polldaddy","polyfill.io":"unknown","popads.net":"PopAds","popadscdn.net":"PopAds","popcash.net":"PopCash Network","popin.cc":"unknown","phncdn.com":"Pornhub","pornhub.com":"Pornhub","postaffiliatepro.com":"QualityUnit","powerlinks.com":"PowerLinks","powr.io":"POWr","prebid.org":"unknown","pmdrecrute.com":"Prisma Media Digital","privy.com":"Privy","profitshare.ro":"unknown","programattik.com":"Türk Telekom","oclaserver.com":"Propeller Ads","onclasrv.com":"Propeller Ads","onclickads.net":"Propeller Ads","onclkds.com":"Propeller Ads","propellerads.com":"Propeller Ads","propellerpops.com":"Propeller Ads","proper.io":"Proper Media","propvideo.net":"unknown","proxistore.com":"unknown","pscp.tv":"Periscope","pstatic.net":"NAVER Corp","psyma.com":"Psyma","pub.network":"unknown","pubmatic.com":"PubMatic, Inc.","pubnub.com":"unknown","pulpix.com":"ADYOULIKE SA","contextweb.com":"PulsePoint, Inc.","pulsepoint.com":"PulsePoint, Inc.","purch.com":"Purch Group, Inc.","servebom.com":"Purch Group, Inc.","puserving.com":"unknown","push.world":"Push.world","pushame.com":"unknown","pushcrew.com":"Pushcrew","pusher.com":"unknown","pusherapp.com":"unknown","pushnative.com":"unknown","pushno.com":"unknown","pushwhy.com":"unknown","pushwoosh.com":"Pushwoosh","pvclouds.com":"unknown","q-divisioncdn.de":"unknown","qq.com":"QQ.com","qualaroo.com":"unknown","qualtrics.com":"Qualtrics","quantcast.com":"Quantcast International Limited","quantserve.com":"Quantcast International Limited","quantcount.com":"Quantcast International Limited","quantummetric.com":"Quantum Metric, Inc.","quarticon.com":"QuarticOn S.A.","d3c3cq33003psk.cloudfront.net":"unknown","qubit.com":"unknown","queue-it.net":"unknown","qservz.com":"Quisma","quisma.com":"Quisma","quora.com":"unknown","ads-digitalkeys.com":"unknown","rackcdn.com":"unknown","gwallet.com":"RhythmOne, LLC","r1-cdn.net":"RhythmOne, LLC","mediaforge.com":"Rakuten Marketing LLC","rmtag.com":"Rakuten Marketing LLC","rakuten.co.jp":"Rakuten Marketing LLC","rambler.ru":"A&NN Investments ","top100.ru":"A&NN Investments ","rawgit.com":"unknown","raygun.io":"Raygun","rcsmediagroup.it":"RCS MediaGroup S.p.A. \u0003","readspeaker.com":"unknown","realperson.de":"Optimise-it","dcniko1cv0rz.cloudfront.net":"Realytics","realytics.io":"unknown","recettes.net":"Recettes.net","recreativ.ru":"Recreativ","redblue.de":"unknown","atendesoftware.pl":"Atende Software Sp. z o.o.","redd.it":"reddit","reddit-image.s3.amazonaws.com":"reddit","reddit.com":"reddit","redditmedia.com":"reddit","redditstatic.com":"reddit","rdtcdn.com":"unknown","redtube.com":"unknown","reedbusiness.net":"Andera Partners","reembed.com":"reEmbed","reevoo.com":"Reevoo","refinedads.com":"Refined Labs","relap.io":"unknown","relevant4.com":"unknown","remintrex.com":"unknown","remove.video":"unknown","republer.com":"Republer","researchnow.com":"Research Now Group, Inc","sli-system.com":"SLI Systems","retailrocket.net":"unknown","retailrocket.ru":"unknown","reutersmedia.net":"unknown","revcontent.com":"Revcontent, LLC","clksite.com":"Intango","imageshack.host":"Intango","1rx.io":"RhythmOne, LLC","ria.ru":"unknown","ics0.com":"RichRelevance","richrelevance.com":"RichRelevance","ringier.ch":"Ringier AG","riskfield.com":"Riskfield","rncdn3.com":"unknown","rbxcdn.com":"unknown","getrockerbox.com":"Rockerbox","rfihub.com":"Sizmek Technologies, Inc. ","rfihub.net":"Sizmek Technologies, Inc. ","ru4.com":"Sizmek Technologies, Inc. ","xplusone.com":"Sizmek Technologies, Inc. ","d37gvrvc0wt4s1.cloudfront.net":"Rollbar","rqtrk.eu":"Roq.ad GmbH","routenplaner-karten.com":"unknown","creativecdn.com":"RTB House S.A.","rvty.net":"unknown","rtbsuperhub.com":"unknown","rtl.de":"unknown","static-fra.de":"unknown","technical-service.net":"unknown","rtmark.net":"Big Wall Vision","dpclk.com":"The Rubicon Project, Limited","mobsmith.com":"The Rubicon Project, Limited","nearbyad.com":"The Rubicon Project, Limited","rubiconproject.com":"The Rubicon Project, Limited","runadtag.com":"RUN","rundsp.com":"RUN","un-syndicate.com":"unknown","runmewivel.com":"unknown","rhythmxchange.com":"RhythmOne, LLC","s24.com":"unknown","s3xified.com":"unknown","sail-horizon.com":"Sailthru","sail-personalize.com":"Sailthru","sailthru.com":"Sailthru","d16fk4ms6rqz1v.cloudfront.net":"SaleCycle","salecycle.com":"SaleCycle","force.com":"Salesforce","salesforce.com":"Salesforce","liveagentforsalesforce.com":"Salesforce","salesforceliveagent.com":"Salesforce","salesmanago.com":"SALESmanago","samba.tv":"Free Stream Media Corp. dba Samba TV","ilsemedia.nl":"unknown","sanoma.fi":"unknown","sap-xm.org":"unknown","sape.ru":"Sape Sapient Solution","aimatch.com":"SAS","sas.com":"SAS","scarabresearch.com":"Emarsys","scene7.com":"Adobe","schibsted.com":"Schibsted ASA","schibsted.io":"Schibsted ASA","schneevonmorgen.com":"unknown","svonm.com":"unknown","rockabox.co":"Rockabox Media Ltd","comscore.com":"comScore, Inc.","scorecardresearch.com":"comScore, Inc.","scoreresearch.com":"comScore, Inc.","scrsrch.com":"comScore, Inc.","securestudies.com":"comScore, Inc.","scribblelive.com":"unknown","scroll.com":"Scroll","nativendo.de":"Ströer SSP GmbH","seedtag.com":"Seedtag Advertising S.L","d2dq2ahtl5zl1z.cloudfront.net":"Segment","d47xnnr8b1rki.cloudfront.net":"Segment","segment.com":"Segment","segment.io":"Segment","rutarget.ru":"unknown","sekindo.com":"SekiNdo","sellpoint.net":"ConversionPoint Technologies Inc.","sellpoints.com":"ConversionPoint Technologies Inc.","semantiqo.com":"unknown","semasio.net":"Semasio GmbH","semknox.com":"unknown","sendpulse.com":"unknown","sentifi.com":"Sentifi AG","ravenjs.com":"unknown","sentry.io":"unknown","d2oh4tlt9mrke9.cloudfront.net":"SessionCam","sessioncam.com":"SessionCam","71i.de":"unknown","sexad.net":"SexAdNetwork","sexypartners.net":"unknown","imedia.cz":"Seznam","szn.cz":"Seznam","dtym7iokkjlif.cloudfront.net":"Shareaholic","shareaholic.com":"Shareaholic","sharepointonline.com":"Microsoft","sharethis.com":"ShareThis, Inc.","shareth.ru":"Sharethrough, Inc","sharethrough.com":"Sharethrough, Inc","sheego.de":"unknown","shopauskunft.de":"unknown","shopgate.com":"unknown","shopify.com":"Shopify","shopifycdn.com":"Shopify","shopifycloud.com":"Shopify","shoppingshadow.com":"eBay","shopzilla.com":"Symphony Technology Group","shortnews.de":"unknown","shutterstock.com":"Shutterstock, Inc.","siblesectiveal.club":"unknown","dtlilztwypawv.cloudfront.net":"Sift Science","siftscience.com":"Sift Science","btstatic.com":"Signal Digital Inc.","signal.co":"Signal Digital Inc.","thebrighttag.com":"Signal Digital Inc.","similardeals.net":"unknown","simpli.fi":"Simplifi Holdings Inc.","sinaimg.cn":"unknown","sddan.com":"Sirdata","site24x7rum.com":"Zoho Corporation","site24x7rum.eu":"Zoho Corporation","siteimprove.com":"Siteimprove","siteimproveanalytics.com":"Siteimprove","sitelabweb.com":"unknown","sitescout.com":"SiteScout","sixt-neuwagen.de":"unknown","serving-sys.com":"Sizmek Technologies, Inc. ","skadtec.com":"unknown","redirectingat.com":"SkimLinks","skimlinks.com":"SkimLinks","skimresources.com":"SkimLinks","skype.com":"Microsoft","skypeassets.com":"Microsoft","skyscnr.com":"unknown","smaato.net":"Spearhead Integrated Marketing Communication","sascdn.com":"Smart Adserver","smartadserver.com":"Smart Adserver","styria-digital.com":"Smart Adserver","yoc-adserver.com":"Smart Adserver","smartclick.net":"unknown","smartclip.net":"smartclip Holding AG","smartertravel.com":"IAC (InterActiveCorp)","travelsmarter.net":"IAC (InterActiveCorp)","smartlink.cool":"unknown","getsmartlook.com":"SmartLook","smartlook.com":"SmartLook","smartstream.tv":"SMARTSTREAM.TV GmbH","smartsuppchat.com":"Smartsuppp","smi2.net":"unknown","smi2.ru":"unknown","stat.media":"unknown","smyte.com":"Smyte","snacktv.de":"unknown","snapengage.com":"Snap Engage","sc-static.net":"unknown","snapchat.com":"unknown","h-bid.com":"SnigelWeb, Inc.","d346whrrklhco7.cloudfront.net":"Snowplow","d78fikflryjgj.cloudfront.net":"Snowplow","dc8xl0ndzn2cb.cloudfront.net":"Snowplow","playwire.com":"Snowplow","snplow.net":"Snowplow","go-mpulse.net":"Akamai Technologies","mpstat.us":"Akamai Technologies","soclminer.com.br":"unknown","sociaplus.com":"unknown","sociomantic.com":"Sociomantic Labs GmbH","sojern.com":"Sojern, Inc.","solads.media":"unknown","mobileadtrading.com":"SoMo Audience","sonobi.com":"Sonobi, Inc","sophus3.com":"Sophus3","deployads.com":"unknown","sndcdn.com":"SoundCloud","soundcloud.com":"SoundCloud","decenthat.com":"unknown","summerhamster.com":"unknown","d3pkae9owd2lcf.cloudfront.net":"Sovrn Holdings Inc","lijit.com":"Sovrn Holdings Inc","s-onetag.com":"Sovrn Holdings Inc","onscroll.com":"Sovrn Holdings Inc","sparkasse.de":"unknown","speedcurve.com":"unknown","spongecell.com":"Spongecell","spot.im":"Spot.IM Ltd.","spoteffects.net":"Spoteffect","scdn.co":"unknown","spotify.com":"unknown","spotscenered.info":"unknown","spotx.tv":"RTL Group","spotxcdn.com":"RTL Group","spotxchange.com":"RTL Group","spoutable.com":"unknown","springserve.com":"SpringServe, LLC","squarespace.com":"unknown","srvtrck.com":"unknown","srvvtrk.com":"unknown","sstatic.net":"unknown","hatena.ne.jp":"Hatena Co., Ltd.","st-hatena.com":"Hatena Co., Ltd.","stackadapt.com":"StackAdapt","stackpathdns.com":"unknown","stailamedia.com":"unknown","stalluva.pro":"unknown","startappservice.com":"unknown","statcounter.com":"StatCounter","stathat.com":"unknown","statsy.net":"unknown","statuspage.io":"Atlassian","stayfriends.de":"unknown","steelhousemedia.com":"Steel House, Inc.","steepto.com":"unknown","stepstone.com":"unknown","stickyadstv.com":"Comcast","storify.com":"unknown","storygize.net":"unknown","streamrail.com":"ironSource","streamrail.net":"ironSource","cdn.stridespark.com":"Stride Software, Inc.","tracking.stridespark.com":"Stride Software, Inc.","stripcdn.com":"unknown","stripchat.com":"unknown","stripe.com":"unknown","stripe.network":"unknown","stripst.com":"unknown","interactivemedia.net":"Ströer SSP GmbH","stroeerdigitalgroup.de":"Ströer SSP GmbH","stroeerdigitalmedia.de":"Ströer SSP GmbH","stroeerdp.de":"Ströer SSP GmbH","stroeermediabrands.de":"Ströer SSP GmbH","sprinklecontent.com":"Strossle","strossle.it":"Strossle","stumble-upon.com":"StumbleUpon","stumbleupon.com":"StumbleUpon","su.pr":"StumbleUpon","ayads.co":"Sublime Skinz","sumologic.com":"unknown","sumo.com":"SumoMe","sumome.com":"SumoMe","sundaysky.com":"SundaySky","superfastcdn.com":"unknown","socdm.com":"unknown","swiftypecdn.com":"Elastic","swisscom.ch":"unknown","myswitchads.com":"Switch Concepts Limited","switchadhub.com":"Switch Concepts Limited","switchads.com":"Switch Concepts Limited","switchafrica.com":"Switch Concepts Limited","norton.com":"Symantec","symantec.com":"Symantec","thawte.com":"Symantec","verisign.com":"Symantec","sdp-campaign.de":"unknown","t-online.de":"unknown","telekom-dienste.de":"unknown","telekom.com":"unknown","telekom.de":"unknown","toi.de":"unknown","t8cdn.com":"unknown","tableteducation.com":"unknown","basebanner.com":"Taboola","taboola.com":"Taboola","taboolasyndication.com":"Taboola","commander1.com":"Tag Commander","tagcommander.com":"Tag Commander","levexis.com":"TagMan","tailtarget.com":"Tail","tamedia.ch":"unknown","alipcsec.com":"Alibaba","tapad.com":"Telenor Group","tawk.to":"Tawk","tchibo-content.de":"unknown","tchibo.de":"unknown","tdsrmbl.net":"unknown","teads.tv":"Teads ","llnwd.net":"Tealium","tealium.com":"Tealium","tealiumiq.com":"Tealium","tiqcdn.com":"Tealium","tensitionschoo.club":"unknown","teufel.de":"unknown","theadex.com":"ProSiebenSat.1 Media","gu-web.net":"The Guardian","guardianapps.co.uk":"The Guardian","guim.co.uk":"The Guardian","deepthought.online":"The Reach Group GmbH","reachgroup.com":"The Reach Group GmbH","redintelligence.net":"The Reach Group GmbH","thesun.co.uk":"The Sun","w-x.co":"IBM","weather.com":"IBM","wfxtriggers.com":"IBM","tmdb.org":"The Movie DB","online-metrix.net":"ThreatMetrix","npttech.com":"Piano (Previously Tinypass)","tinypass.com":"Piano (Previously Tinypass)","tisoomi-services.com":"unknown","research-int.se":"WPP","sesamestats.com":"WPP","spring-tns.net":"WPP","statistik-gallup.net":"WPP","tns-cs.net":"WPP","tns-gallup.dk":"WPP","tomnewsupdate.info":"unknown","toplist.cz":"unknown","toponclick.com":"unknown","toro-tags.com":"TORO Advertising","toroadvertising.com":"TORO Advertising","toroadvertisingmedia.com":"TORO Advertising","tororango.com":"unknown","inq.com":"unknown","tovarro.com":"unknown","rialpay.com":"unknown","tp-cdn.com":"unknown","kiwe.io":"unknown","tracc.it":"unknown","d2zah9y47r7bi2.cloudfront.net":"TrackJS","dl1d2m8ri9v3j.cloudfront.net":"TrackJS","trackjs.com":"TrackJS","adsrvr.org":"The Trade Desk","tradedoubler.com":"Tradedoubler AB","tradelab.fr":"Tradelab, SAS","tradetracker.net":"TradeTracker","cdntrf.com":"unknown","traffective.com":"unknown","trafficstars.com":"Traffic Stars","tsyndicate.com":"Traffic Stars","trafficfabrik.com":"unknown","trafficfactory.biz":"unknown","trafficforce.com":"TrafficForce","traffichaus.com":"TrafficHaus","trafficjunky.net":"TrafficJunky","trafmag.com":"unknown","travelaudience.com":"unknown","trbo.com":"trbo","treasuredata.com":"arm","tremorhub.com":"unknown","tremorvideo.com":"unknown","videohub.tv":"unknown","exponential.com":"Exponential Interactive, Inc","tribalfusion.com":"Exponential Interactive, Inc","jscache.com":"IAC (InterActiveCorp)","tacdn.com":"IAC (InterActiveCorp)","tamgrt.com":"IAC (InterActiveCorp)","tripadvisor.co.uk":"IAC (InterActiveCorp)","tripadvisor.com":"IAC (InterActiveCorp)","tripadvisor.de":"IAC (InterActiveCorp)","3lift.com":"TripleLift, Inc.","d3iwjrnl4m67rd.cloudfront.net":"TripleLift, Inc.","triplelift.com":"TripleLift, Inc.","trsv3.com":"unknown","tru.am":"trueAnthem","adlegend.com":"Trueffect","truoptik.com":"unknown","trustarc.com":"TrustArc","truste.com":"TrustArc","consent.truste.com":"TrustArc","choices-or.truste.com":"TrustArc","choices.truste.com":"TrustArc","privacy-policy.truste.com":"TrustArc","trustedshops.com":"Trusted Shops","trustpilot.com":"Trustpilot","trustwave.com":"unknown","tubecorporate.com":"unknown","tubecup.org":"unknown","tubemogul.com":"TubeMogul","sre-perim.com":"Verizon","txmblr.com":"Verizon","platform.tumblr.com":"Verizon","turn.com":"Singtel","turner.com":"Turner","tvsquared.com":"unknown","c4tw.net":"unknown","twiago.com":"twiago GmbH","ext-twitch.tv":"Amazon","twitch.tv":"Amazon","jtvnw.net":"Amazon","ttvnw.net":"Amazon","twitchcdn.net":"Amazon","twitchsvc.net":"Amazon","ads-twitter.com":"Twitter","t.co":"Twitter","twimg.com":"Twitter","twitter.com":"Twitter","tellapart.com":"Twitter","twyn.com":"Twyn","txxx.com":"unknown","tynt.com":"33Across","typeform.com":"unknown","typekit.com":"Adobe","typekit.net":"Adobe","typography.com":"unknown","tyroodr.com":"Tyroo","ubersetzung-app.com":"unknown","ucoz.net":"unknown","umebiggestern.club":"unknown","under-box.com":"unknown","undercomputer.com":"unknown","udmserve.net":"Underdog Media LLC ","ads.undertone.com":"Perion","unister-adservices.com":"Unister","unister-gmbh.de":"Unister","nonstoppartner.net":"unknown","tifbs.net":"United Internet AG","ui-portal.de":"United Internet AG","uimserv.net":"United Internet AG","unpkg.com":"unknown","unrulymedia.com":"Unruly Group Ltd","uppr.de":"unknown","upravel.com":"unknown","uptolike.com":"unknown","urban-media.com":"unknown","urbanairship.com":"Urban Airship, Inc.","usabilla.com":"Usabilla","usemax.de":"usemax advertisement (Emego GmbH)","usemaxserver.de":"usemax advertisement (Emego GmbH)","usemessages.com":"unknown","dq4irj27fs462.cloudfront.net":"unknown","userlike-cdn-widgets.s3-eu-west-1.amazonaws.com":"unknown","userlike.com":"unknown","userreport.com":"UserReport","uservoice.com":"UserVoice","userzoom.com":"unknown","uuidksinc.net":"unknown","v12group.com":"unknown","vacaneedasap.com":"unknown","vinsight.de":"Hubert Burda Media","veinteractive.com":"Ve Interactive","velocecdn.com":"unknown","vendemore.com":"Ratos","venturead.com":"unknown","vergic.com":"unknown","vgwort.de":"VG Wort","digitaltarget.ru":"Vi","intellitxt.com":"Vibrant Media Limited","vicomi.com":"unknown","vidazoo.com":"unknown","videoadex.com":"DIGITEKA Technologies","tidaltv.com":"Videology Ltd.","videoplayerhub.com":"unknown","videoplaza.tv":"Videoplaza","vidible.tv":"Verizon","viglink.com":"VigLink","vigo.one":"Vigo","vigo.ru":"Vigo","vimeo.com":"IAC (InterActiveCorp)","vimeocdn.com":"IAC (InterActiveCorp)","vindicosuite.com":"Vindico Group","vinted.net":"unknown","viralgains.com":"unknown","viewablemedia.net":"Visible Measures","visiblemeasures.com":"Visible Measures","myvisualiq.net":"VisualIQ","visualrevenue.com":"Outbrain","d5phz18u4wuww.cloudfront.net":"Wingify","visualwebsiteoptimizer.com":"Wingify","wingify.com":"Wingify","vdna-assets.com":"Harris Insights & Analytics","visualdna.com":"Harris Insights & Analytics","visualstudio.com":"Microsoft","vi-tag.net":"Vivalu","vizury.com":"Vizury","cdn-vk.com":"Megafon","vk-analytics.com":"Megafon","vkuservideo.net":"Megafon","userapi.com":"Megafon","vk.com":"Megafon","vkontakte.ru":"Megafon","vntsm.com":"Venatus Media Limited","vodafone.de":"unknown","voicefive.com":"comScore, Inc.","cwkuki.com":"unknown","voluumtrk3.com":"unknown","vooxe.com":"unknown","vorwerk.de":"unknown","vox-cdn.com":"Vox Media","vtracy.de":"unknown","walkme.com":"unknown","walmart.com":"unknown","wayfair.com":"unknown","wdr.de":"unknown","web.de":"unknown","webde.de":"unknown","wipe.de":"TenSquare","webclicks24.com":"unknown","webclose.net":"unknown","goutee.top":"Fimalac Group","mediaathay.org.uk":"Fimalac Group","wbdx.fr":"Fimalac Group","webgains.com":"unknown","adrcdn.com":"WEBORAMA","adrcntr.com":"WEBORAMA","weborama.com":"WEBORAMA","weborama.fr":"WEBORAMA","d1r27qvpjiaqj3.cloudfront.net":"Webtrekk","mateti.net":"Webtrekk","wbtrk.net":"Webtrekk","wcfbc.net":"Webtrekk","webtrekk-asia.net":"Webtrekk","webtrekk.com":"Webtrekk","webtrekk.net":"Webtrekk","wt-eu02.net":"Webtrekk","wt-safetag.com":"Webtrekk","webtrends.com":"Webtrends","webtrendslive.com":"Webtrends","westlotto.com":"unknown","wetter.com":"unknown","wettercomassets.com":"unknown","whatsbroadcast.com":"WhatsBroadcast","amung.us":"whos.amung.us","widespace.com":"Widespace AB","wikia-services.com":"Wikia","wikia-beacon.com":"Wikia","nocookie.net":"Wikia","wikimedia.org":"Wikimedia Foundation","wikipedia.org":"Wikimedia Foundation","wikiquote.org":"Wikimedia Foundation","wirecard.com":"unknown","wirecard.de":"unknown","wiredminds.com":"WiredMinds","wiredminds.de":"WiredMinds","wistia.com":"Wistia","wistia.net":"Wistia","parastorage.com":"unknown","wix.com":"unknown","wixmp.com":"Wix","wnzmauurgol.com":"unknown","wonderpush.com":"WonderPush","woopic.com":"unknown","pubmine.com":"Automattic","w.org":"Automattic","wordpress.com":"Automattic","wp.com":"Automattic","worldnaturenet.xyz":"unknown","wp.pl":"unknown","wpimg.pl":"unknown","wpengine.com":"WP Engine","wurfl.io":"ScientiaMobile","wwwpromoter.com":"wwwPromoter","wysistat.net":"Wysistat","wywy.com":"unknown","wywyuserservice.com":"unknown","xen-media.com":"unknown","xfreeservice.com":"unknown","xhamster.com":"unknown","xhamsterlive.com":"unknown","xhamsterpremium.com":"unknown","xhcdn.com":"unknown","xing-share.com":"XING","xing.com":"XING","xnxx-cdn.com":"unknown","xplosion.de":"xplosion interactive","xvideos-cdn.com":"unknown","xvideos.com":"unknown","xxxlshop.de":"unknown","xxxlutz.de":"XXXLutz KG","adx.com.ru":"unknown","yabbi.me":"unknown","interclick.com":"Verizon","tumblr.com":"Verizon","yahoo.com":"Verizon","yahooapis.com":"Verizon","yimg.com":"Verizon","storage-yahoo.jp":"unknown","yahoo.co.jp":"unknown","yahooapis.jp":"unknown","yimg.jp":"unknown","yjtag.jp":"unknown","d31j93rd8oukbv.cloudfront.net":"Yandex","webvisor.org":"Yandex","yandex.net":"Yandex","yandex.ru":"Yandex","yastatic.net":"Yandex","yandex.st":"Yandex","yandexadexchange.net":"Yandex","metabar.ru":"Yandex","an.yandex.ru":"Yandex","awaps.yandex.ru":"Yandex","mc.yandex.ru":"Yandex","yapfiles.ru":"unknown","yldbt.com":"Yieldbot","yieldify.com":"Yieldify","yieldlab.net":"ProSiebenSat.1 Media","yieldlove-ad-serving.net":"Yieldlove GmbH","yieldlove.com":"Yieldlove GmbH","yieldmo.com":"Yieldmo, Inc.","254a.com":"unknown","ymetrica1.com":"unknown","ymzrrizntbhde.com":"unknown","yoochoose.net":"unknown","yotpo.com":"unknown","yottaa.net":"Yottaa","youporn.com":"unknown","ypncdn.com":"unknown","googlevideo.com":"Google","youtube-nocookie.com":"Google","youtube.com":"Google","ytimg.com":"Google","yume.com":"unknown","gravityrd-services.com":"unknown","zalan.do":"Zalando","zalando.de":"Zalando","ztat.net":"Zalando","zanox-affiliate.de":"unknown","zanox.com":"unknown","zanox.ws":"unknown","zdassets.com":"Zendesk","zebestof.com":"Zebestof","zedo.com":"Zedo","zemanta.com":"Zemanta, Inc.","zencdn.net":"Zencoder","zendesk.com":"Zendesk","zergnet.com":"ZergNet","zeusclicks.com":"unknown","webtest.net":"Ziff Davis LLC","zdbb.net":"Ziff Davis LLC","ziffdavis.com":"Ziff Davis LLC","ziffdavisinternational.com":"Ziff Davis LLC","ziffprod.com":"Ziff Davis LLC","ziffstatic.com":"Ziff Davis LLC","zimbio.com":"unknown","zmags.com":"The Gores Group","zmctrack.net":"unknown","zog.link":"unknown","zononi.com":"unknown","zopim.com":"Zopim","zukxd6fkxqn.com":"unknown","extend.tv":"unknown"} \ No newline at end of file