diff --git a/client/src/components/ui/Line.js b/client/src/components/ui/Line.js
index 9fb805c0..af8fe982 100644
--- a/client/src/components/ui/Line.js
+++ b/client/src/components/ui/Line.js
@@ -36,7 +36,9 @@ const Line = props => (
{slice.data.map(d => (
))}
diff --git a/client/src/components/ui/Popover.css b/client/src/components/ui/Popover.css
index fa52ba64..cdaf5fe6 100644
--- a/client/src/components/ui/Popover.css
+++ b/client/src/components/ui/Popover.css
@@ -76,7 +76,6 @@
}
.popover__link {
- font-size: 0.7rem;
color: #66b586;
}
diff --git a/client/src/components/ui/Popover.js b/client/src/components/ui/Popover.js
index 005775c8..4ed27afd 100644
--- a/client/src/components/ui/Popover.js
+++ b/client/src/components/ui/Popover.js
@@ -1,5 +1,7 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
+import { getSourceData } from '../../helpers/trackers/trackers';
+import { captitalizeWords } from '../../helpers/helpers';
import './Popover.css';
@@ -7,6 +9,22 @@ class Popover extends Component {
render() {
const { data } = this.props;
+ const sourceData = getSourceData(data);
+
+ const source = (
+
+ );
+
+ const categoryName = captitalizeWords(data.category);
+
return (
@@ -15,17 +33,13 @@ class Popover extends Component {
- This domain belongs to a known tracker.
+ Found in the known domains database.
+ {tracker}
- Name: {data.name}
-
-
- Category: {data.category}
-
-
+ {source}
diff --git a/client/src/components/ui/Status.js b/client/src/components/ui/Status.js
index 0e0d849a..bc103a61 100644
--- a/client/src/components/ui/Status.js
+++ b/client/src/components/ui/Status.js
@@ -7,10 +7,10 @@ const Status = props => (
- You are currently not using AdGuard DNS
+ You are currently not using AdGuard Home
diff --git a/client/src/helpers/constants.js b/client/src/helpers/constants.js
index 1af6c276..58c85380 100644
--- a/client/src/helpers/constants.js
+++ b/client/src/helpers/constants.js
@@ -15,3 +15,8 @@ export const STATUS_COLORS = {
green: '#5eba00',
yellow: '#f1c40f',
};
+
+export const REPOSITORY = {
+ URL: 'https://github.com/AdguardTeam/AdguardDNS',
+ TRACKERS_DB: 'https://github.com/AdguardTeam/AdguardDNS/tree/master/client/src/helpers/trackers/adguard.json',
+};
diff --git a/client/src/helpers/helpers.js b/client/src/helpers/helpers.js
index 1dea8b8a..07c343bc 100644
--- a/client/src/helpers/helpers.js
+++ b/client/src/helpers/helpers.js
@@ -81,3 +81,5 @@ export const getPercent = (amount, number) => {
}
return 0;
};
+
+export const captitalizeWords = text => text.split(/[ -_]/g).map(str => str.charAt(0).toUpperCase() + str.substr(1)).join(' ');
diff --git a/client/src/helpers/trackers/adguard.json b/client/src/helpers/trackers/adguard.json
new file mode 100644
index 00000000..1272827e
--- /dev/null
+++ b/client/src/helpers/trackers/adguard.json
@@ -0,0 +1,77 @@
+{
+ "timeUpdated": "2018-10-14",
+ "categories": {
+ "0": "audio_video_player",
+ "1": "comments",
+ "2": "customer_interaction",
+ "3": "pornvertising",
+ "4": "advertising",
+ "5": "essential",
+ "6": "site_analytics",
+ "7": "social_media",
+ "8": "misc",
+ "9": "cdn",
+ "10": "hosting",
+ "11": "unknown",
+ "12": "extensions",
+ "101": "mobile_analytics"
+ },
+ "trackers": {
+ "facebook_audience": {
+ "name": "Facebook Audience Network",
+ "categoryId": 4,
+ "url": "https://www.facebook.com/business/products/audience-network"
+ },
+ "crashlytics": {
+ "name": "Crashlytics",
+ "categoryId": 101,
+ "url": "https://crashlytics.com/"
+ },
+ "flurry": {
+ "name": "Flurry",
+ "categoryId": 101,
+ "url": "http://www.flurry.com/"
+ },
+ "hockeyapp": {
+ "name": "HockeyApp",
+ "categoryId": 101,
+ "url": "https://hockeyapp.net/"
+ },
+ "firebase": {
+ "name": "Firebase",
+ "categoryId": 101,
+ "url": "https://firebase.google.com/"
+ },
+ "appsflyer": {
+ "name": "AppsFlyer",
+ "categoryId": 101,
+ "url": "https://www.appsflyer.com/"
+ },
+ "yandex_appmetrica": {
+ "name": "Yandex AppMetrica",
+ "categoryId": 101,
+ "url": "https://appmetrica.yandex.com/"
+ },
+ "adjust": {
+ "name": "Adjust",
+ "categoryId": 101,
+ "url": "https://www.adjust.com/"
+ },
+ "branch": {
+ "name": "Branch.io",
+ "categoryId": 101,
+ "url": "https://branch.io/"
+ }
+ },
+ "trackerDomains": {
+ "graph.facebook.com": "facebook_audience",
+ "crashlytics.com": "crashlytics",
+ "flurry.com": "flurry",
+ "hockeyapp.net": "hockeyapp",
+ "app-measurement.com": "firebase",
+ "appsflyer.com": "appsflyer",
+ "appmetrica.yandex.com": "yandex_appmetrica",
+ "adjust.com": "adjust",
+ "mobileapptracking.com": "branch"
+ }
+}
\ No newline at end of file
diff --git a/client/src/helpers/trackers/trackers.js b/client/src/helpers/trackers/trackers.js
new file mode 100644
index 00000000..485cd31b
--- /dev/null
+++ b/client/src/helpers/trackers/trackers.js
@@ -0,0 +1,103 @@
+import whotracksmeDb from './whotracksme.json';
+import adguardDb from './adguard.json';
+import { REPOSITORY } from '../constants';
+
+/**
+ @typedef TrackerData
+ @type {object}
+ @property {string} id - tracker ID.
+ @property {string} name - tracker name.
+ @property {string} url - tracker website url.
+ @property {number} category - tracker category.
+ @property {source} source - tracker data source.
+ */
+
+/**
+ * Tracker data sources
+ */
+export const sources = {
+ WHOTRACKSME: 1,
+ ADGUARD: 2,
+};
+
+/**
+ * Gets tracker data in the specified database
+ *
+ * @param {String} domainName domain name to check
+ * @param {*} trackersDb trackers database
+ * @param {number} source source ID
+ * @returns {TrackerData} tracker data or null if no matching tracker found
+ */
+const getTrackerDataFromDb = (domainName, trackersDb, source) => {
+ if (!domainName) {
+ return null;
+ }
+
+ const parts = domainName.split(/\./g).reverse();
+ let hostToCheck = '';
+
+ // Check every subdomain
+ for (let i = 0; i < parts.length; i += 1) {
+ hostToCheck = parts[i] + (i > 0 ? '.' : '') + hostToCheck;
+ const trackerId = trackersDb.trackerDomains[hostToCheck];
+
+ if (trackerId) {
+ const trackerData = trackersDb.trackers[trackerId];
+ const categoryName = trackersDb.categories[trackerData.categoryId];
+
+ return {
+ id: trackerId,
+ name: trackerData.name,
+ url: trackerData.url,
+ category: categoryName,
+ source,
+ };
+ }
+ }
+
+ // No tracker found for the specified domain
+ return null;
+};
+
+/**
+ * Gets the source metadata for the specified tracker
+ * @param {TrackerData} trackerData tracker data
+ */
+export const getSourceData = (trackerData) => {
+ if (!trackerData || !trackerData.source) {
+ return null;
+ }
+
+ if (trackerData.source === sources.WHOTRACKSME) {
+ return {
+ name: 'Whotracks.me',
+ url: `https://whotracks.me/trackers/${trackerData.id}.html`,
+ };
+ } else if (trackerData.source === sources.ADGUARD) {
+ return {
+ name: 'AdGuard',
+ url: REPOSITORY.TRACKERS_DB,
+ };
+ }
+
+ return null;
+};
+
+/**
+ * Gets tracker data from the trackers database
+ *
+ * @param {String} domainName domain name to check
+ * @returns {TrackerData} tracker data or null if no matching tracker found
+ */
+export const getTrackerData = (domainName) => {
+ if (!domainName) {
+ return null;
+ }
+
+ let data = getTrackerDataFromDb(domainName, adguardDb, sources.ADGUARD);
+ if (!data) {
+ data = getTrackerDataFromDb(domainName, whotracksmeDb, sources.WHOTRACKSME);
+ }
+
+ return data;
+};
diff --git a/client/src/helpers/whotracksmedb.json b/client/src/helpers/trackers/whotracksme.json
similarity index 64%
rename from client/src/helpers/whotracksmedb.json
rename to client/src/helpers/trackers/whotracksme.json
index 0cd3471b..122149a5 100644
--- a/client/src/helpers/whotracksmedb.json
+++ b/client/src/helpers/trackers/whotracksme.json
@@ -1,5 +1,5 @@
{
- "timeUpdated": "2018-10-12T11:02:05.407Z",
+ "timeUpdated": "2018-10-14T19:21:45.099Z",
"categories": {
"0": "audio_video_player",
"1": "comments",
@@ -18,5303 +18,6628 @@
"trackers": {
"google_analytics": {
"name": "Google Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.google.com/analytics/"
},
"doubleclick": {
"name": "DoubleClick",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.doubleclick.com"
},
"google": {
"name": "Google",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"googleapis.com": {
"name": "Google APIs",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.googleapis.com/"
},
"google_tag_manager": {
"name": "Google Tag Manager",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.google.com"
},
"facebook": {
"name": "Facebook",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.facebook.com"
},
"infonline": {
"name": "INFOnline",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www2.infonline.de/"
},
"google_adservices": {
"name": "Google AdServices",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"google_syndication": {
"name": "Google Syndication",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"amazon_web_services": {
"name": "Amazon Web Services",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"criteo": {
"name": "Criteo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.criteo.com/"
},
"appnexus": {
"name": "AppNexus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.appnexus.com/"
},
"adition": {
"name": "Adition",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://en.adition.com/"
},
"amazon_associates": {
"name": "Amazon Associates",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://aws.amazon.com/associates/"
},
"adform": {
"name": "Adform",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adform.com"
},
"scorecard_research_beacon": {
"name": "ScoreCard Research Beacon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.voicefive.com/"
},
"optimizely": {
"name": "Optimizely",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.optimizely.com/"
},
"twitter": {
"name": "Twitter",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://twitter.com"
},
"kaspersky-labs.com": {
"name": "Kaspersky Labs",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.kaspersky.com/"
},
"bing_ads": {
"name": "Bing Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adcenter.microsoft.com/"
},
"openx": {
"name": "OpenX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.openx.org/"
},
"youtube": {
"name": "YouTube",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"the_adex": {
"name": "The ADEX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.theadex.com/"
},
"yieldlab": {
"name": "Yieldlab",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.yieldlab.de/"
},
"rubicon": {
"name": "Rubicon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://rubiconproject.com/"
},
"nugg.ad": {
"name": "Nugg.Ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nugg.ad/"
},
"tradedesk": {
"name": "TradeDesk",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.thetradedesk.com/"
},
"tealium": {
"name": "Tealium",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.tealium.com/"
},
"adobe_audience_manager": {
"name": "Adobe Audience Manager",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.demdex.com/"
},
"pubmatic": {
"name": "PubMatic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.pubmatic.com/"
},
"index_exchange_": {
"name": "Index Exchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.casalemedia.com/"
},
"new_relic": {
"name": "New Relic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://newrelic.com/"
},
"addthis": {
"name": "AddThis",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.addthis.com/"
},
"akamai_technologies": {
"name": "Akamai Technologies",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"mediamath": {
"name": "MediaMath",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mediamath.com/"
},
"xplosion": {
"name": "xplosion",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.xplosion.de/"
},
"meetrics": {
"name": "Meetrics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.meetrics.de/"
},
"media_innovation_group": {
"name": "Media Innovation Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.themig.com/"
},
"bluekai": {
"name": "BlueKai",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.bluekai.com/"
},
"exactag": {
"name": "Exactag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.exactag.com"
},
"google_users": {
"name": "Google User Content",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"adomik": {
"name": "Adomik",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"adobe_dynamic_tag_management": {
"name": "Adobe Dynamic Tag Management",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"united_internet_media_gmbh": {
"name": "United Internet Media GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"emetriq": {
"name": "emetriq",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"adtech": {
"name": "ADTECH",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.adtechus.com/"
},
"outbrain": {
"name": "Outbrain",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"hotjar": {
"name": "Hotjar",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.hotjar.com/"
},
"atlas": {
"name": "Atlas",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://atlassolutions.com"
},
"at_internet": {
"name": "AT Internet",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.xiti.com/"
},
"aggregate_knowledge": {
"name": "Aggregate Knowledge",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.aggregateknowledge.com/"
},
"yahoo": {
"name": "Yahoo!",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"trusted_shops": {
"name": "Trusted Shops",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"taboola": {
"name": "Taboola",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.taboola.com"
},
"smart_adserver": {
"name": "SMART AdServer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.smartadserver.co.uk/"
},
"quantcast": {
"name": "Quantcast",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.quantcast.com/"
},
"adality_gmbh": {
"name": "adality GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"omniture__adobe_analytics_": {
"name": "Omniture (Adobe Analytics)",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.omniture.com/en/"
},
"yandex": {
"name": "Yandex",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"contact_impact": {
"name": "Contact Impact",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.contactimpact.de/"
},
"mbr_targeting": {
"name": "mbr targeting",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"krux_digital": {
"name": "Krux Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://kruxdigital.com/"
},
"pinterest": {
"name": "Pinterest",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://pinterest.com/"
},
"adscale": {
"name": "AdScale",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adscale.de/"
},
"moat": {
"name": "Moat",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.moat.com/"
},
"sizmek": {
"name": "Sizmek",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mediamind.com/"
},
"ligatus": {
"name": "Ligatus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ligatus.com/"
},
"webtrekk": {
"name": "Webtrekk",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.webtrekk.com/"
},
"chartbeat": {
"name": "ChartBeat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://chartbeat.com/"
},
"turn_inc.": {
"name": "Turn Inc.",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.turn.com/corp/"
},
"tapad": {
"name": "Tapad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tapad.com/ "
},
"exoclick": {
"name": "ExoClick",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://exoclick.com/"
},
"liveramp": {
"name": "LiveRamp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.rapleaf.com/"
},
"advertising.com": {
"name": "Advertising.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.platform-a.com/"
},
"xhamster": {
"name": "xHamster",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"plista": {
"name": "Plista",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.plista.com"
},
"netratings_sitecensus": {
"name": "NetRatings SiteCensus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nielsen-online.com"
},
"visual_website_optimizer": {
"name": "Visual Website Optimizer",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://visualwebsiteoptimizer.com/"
},
"vg_wort": {
"name": "VG Wort",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://tom.vgwort.de/portal/showHelp"
},
"buysellads": {
"name": "BuySellAds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://buysellads.com/"
},
"traffic_stars": {
"name": "Traffic Stars",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"brightroll": {
"name": "BrightRoll",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.brightroll.com/"
},
"rocket_fuel": {
"name": "Rocket Fuel",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://rocketfuelinc.com/"
},
"gravatar": {
"name": "Gravatar",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://en.gravatar.com/"
},
"zanox": {
"name": "Zanox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zanox.com/us/"
},
"roq.ad": {
"name": "Roq.ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.roq.ad/"
},
"pornhub": {
"name": "PornHub",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"drawbridge": {
"name": "Drawbridge",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.drawbrid.ge/"
},
"wikimedia.org": {
"name": "WikiMedia",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"crazy_egg": {
"name": "Crazy Egg",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://crazyegg.com/"
},
"conversant": {
"name": "Conversant",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.conversantmedia.eu/"
},
"integral_ad_science": {
"name": "Integral Ad Science",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adsafemedia.com/"
},
"econda": {
"name": "Econda",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.econda.de/"
},
"twiago": {
"name": "Twiago",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.twiago.com/"
},
"trafficjunky": {
"name": "TrafficJunky",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.trafficjunky.net/"
},
"dotomi": {
"name": "Dotomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dotomi.com/"
},
"jw_player": {
"name": "JW Player",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"paypal": {
"name": "PayPal",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.paypal.com"
},
"seeding_alliance": {
"name": "Seeding Alliance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://seeding-alliance.de"
},
"affilinet": {
"name": "affilinet",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.affili.net/"
},
"etracker": {
"name": "etracker",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.etracker.com/en/"
},
"lotame": {
"name": "Lotame",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.lotame.com/"
},
"juggcash": {
"name": "JuggCash",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.juggcash.com"
},
"liquidm_technology_gmbh": {
"name": "LiquidM Technology GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://liquidm.com/"
},
"eyeota": {
"name": "Eyeota",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.eyeota.com/"
},
"ebay": {
"name": "eBay Stats",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ebaypartnernetwork.com/files/hub/en-US/index.htmln progress "
},
"indeed": {
"name": "Indeed",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.indeed.com/"
},
"linkedin": {
"name": "LinkedIn",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sevenone_media": {
"name": "SevenOne Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"browser_update": {
"name": "Browser Update",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.browser-update.org/"
},
"intelliad": {
"name": "intelliAd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.intelliad.de/"
},
"wordpress_stats": {
"name": "WordPress",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://wordpress.org/extend/plugins/stats/"
},
"spotxchange": {
"name": "SpotXchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.spotxchange.com/"
},
"dataxu": {
"name": "DataXu",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dataxu.com/"
},
"liveinternet": {
"name": "LiveInternet",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "http://www.liveinternet.ru/"
},
"visual_revenue": {
"name": "Visual Revenue",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://visualrevenue.com/"
},
"stroer_digital_media": {
"name": "Stroer Digital Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"owa": {
"name": "OWA",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://oewa.at/"
},
"live_intent": {
"name": "Live Intent",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"flashtalking": {
"name": "Flashtalking",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.flashtalking.com/"
},
"alexa_metrics": {
"name": "Alexa Metrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.alexa.com/"
},
"heatmap": {
"name": "Heatmap",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://heatmap.me/"
},
"mouseflow": {
"name": "Mouseflow",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://mouseflow.com/"
},
"quantcount": {
"name": "Quantcount",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"digital_analytix": {
"name": "Digital Analytix",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.nedstat.com/"
},
"loggly": {
"name": "Loggly",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://loggly.com/"
},
"improve_digital": {
"name": "Improve Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.improvedigital.com/"
},
"doublepimp": {
"name": "DoublePimp",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.doublepimp.com/"
},
"pulsepoint": {
"name": "PulsePoint",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.contextweb.com/"
},
"v12_group": {
"name": "V12 Group",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"audience_science": {
"name": "Audience Science",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.audiencescience.com/"
},
"webtrends": {
"name": "Webtrends",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.webtrends.com/"
},
"google_trusted_stores": {
"name": "Google Shopping",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"m._p._newmedia": {
"name": "M. P. NEWMEDIA",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mp-newmedia.com/"
},
"parsely": {
"name": "Parsely",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"scarabresearch": {
"name": "Scarab Research",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.scarabresearch.com/"
},
"highwinds": {
"name": "Highwinds",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"typekit_by_adobe": {
"name": "Typekit by Adobe",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.adobe.com/"
},
"linkpulse": {
"name": "Linkpulse",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.linkpulse.com/"
},
"the_reach_group": {
"name": "The Reach Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.redvertisment.com"
},
"teads": {
"name": "Teads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://teads.tv/"
},
"cedexis_radar": {
"name": "Cedexis Radar",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.cedexis.com/products_radar.html"
},
"neory_": {
"name": "NEORY ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.neory.com/"
},
"ensighten": {
"name": "Ensighten",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.ensighten.com"
},
"kameleoon": {
"name": "Kameleoon",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.kameleoon.com/"
},
"stickyads": {
"name": "StickyAds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"disqus": {
"name": "Disqus",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "https://disqus.com/"
},
"ad4mat": {
"name": "ad4mat",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://ad4mat.info"
},
"weborama": {
"name": "Weborama",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://weborama.com/2/?l=en"
},
"soasta_mpulse": {
"name": "SOASTA mPulse",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.soasta.com/"
},
"ab_tasty": {
"name": "AB Tasty",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://en.abtasty.com"
},
"usabilla": {
"name": "Usabilla",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://usabilla.com/"
},
"otto.de": {
"name": "otto.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"pingdom": {
"name": "Pingdom",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.pingdom.com/"
},
"ve_interactive": {
"name": "Ve Interactive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.veinteractive.com"
},
"burda": {
"name": "BurdaForward",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"rhythmone_beacon": {
"name": "Rhythmone Beacon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"remintrex": {
"name": "Remintrex",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.remintrex.com/"
},
"smartclip": {
"name": "SmartClip",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"appdynamics": {
"name": "AppDynamics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.appdynamics.com"
},
"connexity": {
"name": "Connexity",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.connexity.com"
},
"advolution": {
"name": "Advolution",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.advolution.de"
},
"wywy.com": {
"name": "wywy",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://wywy.com/"
},
"m-pathy": {
"name": "m-pathy",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.m-pathy.com/"
},
"stripchat.com": {
"name": "stripchat.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"exelate": {
"name": "eXelate",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.exelate.com/"
},
"semasio": {
"name": "Semasio",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://semasio.com/"
},
"mixpanel": {
"name": "Mixpanel",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://mixpanel.com/"
},
"t-mobile": {
"name": "Deutsche Telekom",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"scene7.com": {
"name": "Adobe Dynamic Media (Scene7)",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ekomi": {
"name": "eKomi",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "http://www.ekomi.co.uk"
},
"sovrn": {
"name": "sovrn",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sovrn.com/"
},
"cpx.to": {
"name": "cpx.to",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"sharethis": {
"name": "ShareThis",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://sharethis.com/"
},
"spoteffect": {
"name": "Spoteffect",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"sitescout": {
"name": "SiteScout",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sitescout.com"
},
"kupona": {
"name": "Kupona",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.kupona-media.de/en/retargeting-and-performance-media-width-kupona"
},
"conative.de": {
"name": "CoNative",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.conative.de/"
},
"zopim": {
"name": "Zopim",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zopim.com/"
},
"tag_commander": {
"name": "Tag Commander",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.tagcommander.com/"
},
"mail.ru_group": {
"name": "Mail.Ru Group",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://mail.ru/"
},
"eroadvertising": {
"name": "EroAdvertising",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.ero-advertising.com/"
},
"sociomantic": {
"name": "Sociomantic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sociomantic.com/"
},
"tvsquared.com": {
"name": "TVSquared",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://tvsquared.com/"
},
"zononi.com": {
"name": "zononi.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"userlike.com": {
"name": "Userlike",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.userlike.com/"
},
"vkontakte_widgets": {
"name": "VKontakte",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://vk.com/developers.php"
},
"cdn13.com": {
"name": "cdn13.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"ad_spirit": {
"name": "Ad Spirit",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adspirit.de "
},
"aol_cdn": {
"name": "AOL CDN",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"buzzadexchange.com": {
"name": "buzzadexchange.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"gemius": {
"name": "Gemius",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.gemius.com"
},
"trustpilot": {
"name": "Trustpilot",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"net-metrix": {
"name": "NET-Metrix",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.net-metrix.ch/"
},
"bunchbox": {
"name": "Bunchbox",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"neustar_adadvisor": {
"name": "Neustar AdAdvisor",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.targusinfo.com/"
},
"datalogix": {
"name": "Datalogix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nextaction.net/"
},
"refined_labs": {
"name": "Refined Labs",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.refinedlabs.com"
},
"evidon": {
"name": "Evidon",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"nexeps.com": {
"name": "neXeps",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://nexeps.com/"
},
"routenplaner-karten.com": {
"name": "Routenplaner Karten",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.routenplaner-karten.com/"
},
"vibrant_ads": {
"name": "Vibrant Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vibrantmedia.com/"
},
"highwebmedia.com": {
"name": "highwebmedia.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"triplelift": {
"name": "TripleLift",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://triplelift.com/"
},
"estat": {
"name": "eStat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.mediametrie-estat.com/"
},
"bazaarvoice": {
"name": "Bazaarvoice",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.bazaarvoice.com/"
},
"blau.de": {
"name": "Blau",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.blau.de/"
},
"statcounter": {
"name": "Statcounter",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.statcounter.com/"
},
"popads": {
"name": "PopAds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.popads.net/"
},
"liveperson": {
"name": "LivePerson",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.liveperson.com/"
},
"contentpass": {
"name": "Contentpass",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.contentpass.de/"
},
"adap.tv": {
"name": "Adap.tv",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adap.tv/"
},
"adgoal": {
"name": "adgoal",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adgoal.de/"
},
"tns": {
"name": "TNS",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.tnsglobal.com/"
},
"brightcove": {
"name": "Brightcove",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://www.brightcove.com/en/"
},
"trbo": {
"name": "trbo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.trbo.com/"
},
"onesignal": {
"name": "OneSignal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"zendesk": {
"name": "Zendesk",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zendesk.com/"
},
"kiosked": {
"name": "Kiosked",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.kiosked.com/"
},
"alephd.com": {
"name": "alephd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.alephd.com/"
},
"24_7": {
"name": "[24]7",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.247-inc.com/"
},
"epoq": {
"name": "epoq",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.epoq.de/"
},
"madeleine.de": {
"name": "madeleine.de",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"myfonts_counter": {
"name": "MyFonts",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.myfonts.com/"
},
"nt.vc": {
"name": "Next Tuesday GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.nexttuesday.de/"
},
"radiumone": {
"name": "RadiumOne",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.radiumone.com/index.html"
},
"o2online.de": {
"name": "o2online.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.o2online.de/"
},
"zencoder": {
"name": "Zencoder",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"tripadvisor": {
"name": "TripAdvisor",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"imgur": {
"name": "Imgur",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"hurra_tracker": {
"name": "Hurra Tracker",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.hurra.com/en/"
},
"etahub.com": {
"name": "etahub.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"infectious_media": {
"name": "Infectious Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.infectiousdigital.com/"
},
"adroll": {
"name": "AdRoll",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adroll.com/"
},
"traffichaus": {
"name": "TrafficHaus",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.traffichaus.com"
},
"videology": {
"name": "Videology",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://videologygroup.com/"
},
"adup-tech.com": {
"name": "AdUp Technology",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adup-tech.com/"
},
"gigya": {
"name": "Gigya",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"signal": {
"name": "Signal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.signal.co/"
},
"161media": {
"name": "Platform161",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://platform161.com/"
},
"rackcdn.com": {
"name": "Rackspace",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.rackspace.com/"
},
"kxcdn.com": {
"name": "Keycdn",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.keycdn.com/"
},
"ixi_digital": {
"name": "IXI Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"iadvize": {
"name": "iAdvize",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.iadvize.com/"
},
"igodigital": {
"name": "iGoDigital",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://igodigital.com/"
},
"sharethrough": {
"name": "ShareThrough",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sharethrough.com/"
},
"vimeo": {
"name": "Vimeo",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"metrigo": {
"name": "Metrigo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://metrigo.com/"
},
"i-behavior": {
"name": "i-Behavior",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.i-behavior.com/"
},
"perfect_market": {
"name": "Perfect Market",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://perfectmarket.com/"
},
"marketgid": {
"name": "MarketGid",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mgid.com/"
},
"next_performance": {
"name": "Next Performance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nextperformance.com/"
},
"media_impact": {
"name": "Media Impact",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"soundcloud": {
"name": "SoundCloud",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://soundcloud.com/"
},
"akanoo": {
"name": "Akanoo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.akanoo.com/"
},
"findologic.com": {
"name": "Findologic",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.findologic.com/"
},
"are_you_a_human": {
"name": "Are You a Human",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://areyouahuman.com/"
},
"userreport": {
"name": "UserReport",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.userreport.com/"
},
"adara_analytics": {
"name": "ADARA Analytics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adaramedia.com/"
},
"kontextr": {
"name": "Kontextr",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"content_spread": {
"name": "Content Spread",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"visual_iq": {
"name": "Visual IQ",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"ciuvo.com": {
"name": "ciuvo.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.ciuvo.com/"
},
"adtriba.com": {
"name": "AdTriba",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.adtriba.com/"
},
"tradedoubler": {
"name": "TradeDoubler",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tradedoubler.com/"
},
"propeller_ads": {
"name": "Propeller Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.propellerads.com/"
},
"exoticads.com": {
"name": "exoticads",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://exoticads.com/welcome/"
},
"xfreeservice.com": {
"name": "xfreeservice.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"sheego.de": {
"name": "sheego.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"marin_search_marketer": {
"name": "Marin Search Marketer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.marinsoftware.com/"
},
"rtb_house": {
"name": "RTB House",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://en.adpilot.com/"
},
"polyfill.io": {
"name": "Polyfill.io",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://polyfill.io/"
},
"grandslammedia": {
"name": "GrandSlamMedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.grandslammedia.com/"
},
"delta_projects": {
"name": "Delta Projects",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adaction.se/"
},
"clicktale": {
"name": "ClickTale",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.clicktale.com/"
},
"onthe.io": {
"name": "OnThe.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"whos.amung.us": {
"name": "Whos.amung.us",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://whos.amung.us/"
},
"relevant4.com": {
"name": "relevant4 GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.relevant4.com/"
},
"ibm_customer_experience": {
"name": "IBM Customer Experience",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.coremetrics.com/"
},
"skimlinks": {
"name": "SkimLinks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.skimlinks.com/"
},
"conviva": {
"name": "Conviva",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.conviva.com/"
},
"brightcove_player": {
"name": "Brightcove Player",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"klarna.com": {
"name": "Klarna",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.klarna.com/"
},
"sift_science": {
"name": "Sift Science",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://siftscience.com/"
},
"congstar.de": {
"name": "congstar.de",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"dtscout.com": {
"name": "Dtscout",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.dtscout.com/"
},
"smaato": {
"name": "Smaato",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.smaato.com/"
},
"spotscenered.info": {
"name": "spotscenered.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adriver": {
"name": "AdRiver",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adriver.ru/"
},
"cqq5id8n.com": {
"name": "cqq5id8n.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"bidtheatre": {
"name": "BidTheatre",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.bidtheatre.com/"
},
"just_premium": {
"name": "Just Premium",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://justpremium.com/"
},
"mein-bmi.com": {
"name": "mein-bmi.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.mein-bmi.com/"
},
"internet_billboard": {
"name": "Internet BillBoard",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ibillboard.com/en/"
},
"admeta": {
"name": "Admeta",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.admeta.com/"
},
"histats": {
"name": "Histats",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.histats.com/"
},
"truste_notice": {
"name": "TRUSTe Notice",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.truste.com/"
},
"vtracy.de": {
"name": "vtracy.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"whatbroadcast": {
"name": "Whatbroadcast",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"flowplayer": {
"name": "Flowplayer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"rambler": {
"name": "Rambler",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"lockerz_share": {
"name": "AddToAny",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.addtoany.com/"
},
"tynt": {
"name": "Tynt",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tynt.com/"
},
"smartstream.tv": {
"name": "SmartStream.TV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.smartstream.tv/en"
},
"realperson.de": {
"name": "Realperson Chat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.optimise-it.de/"
},
"glotgrx.com": {
"name": "glotgrx.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"threatmetrix": {
"name": "ThreatMetrix",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://threatmetrix.com/"
},
"cxo.name": {
"name": "Chip Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.chip.de/"
},
"glomex.com": {
"name": "Glomex",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.glomex.com/"
},
"cxense": {
"name": "cXense",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cxense.com/"
},
"amplitude": {
"name": "Amplitude",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://amplitude.com/"
},
"falk_technologies": {
"name": "Falk Technologies",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"pagefair": {
"name": "PageFair",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://pagefair.com/"
},
"emsmobile.de": {
"name": "EMS Mobile",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.emsmobile.com/"
},
"fastlylb.net": {
"name": "Fastly",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.fastly.com/"
},
"vorwerk.de": {
"name": "vorwerk.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://corporate.vorwerk.de/home/"
},
"digidip": {
"name": "Digidip",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"salesforce_live_agent": {
"name": "Salesforce Live Agent",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.salesforce.com/"
},
"mycliplister.com": {
"name": "Cliplister",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.cliplister.com/"
},
"peerius": {
"name": "Peerius",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.peerius.com/"
},
"steepto.com": {
"name": "Steepto",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.steepto.com/"
},
"adglue": {
"name": "Adglue",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"monetate": {
"name": "Monetate",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://monetate.com"
},
"mov.ad_": {
"name": "Mov.ad ",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"simpli.fi": {
"name": "Simpli.fi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.simpli.fi"
},
"office365.com": {
"name": "office365.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"digital_window": {
"name": "Digital Window",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.digitalwindow.com/"
},
"touchcommerce": {
"name": "Nuance",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.nuance.com/"
},
"jimdo.com": {
"name": "jimdo.com",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"srvtrck.com": {
"name": "srvtrck.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"tribal_fusion": {
"name": "Tribal Fusion",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tribalfusion.com/"
},
"snap_engage": {
"name": "Snap Engage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"gfk": {
"name": "GfK",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://nurago.com/"
},
"qualtrics": {
"name": "Qualtrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.qualtrics.com/"
},
"juicyads": {
"name": "JuicyAds",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.juicyads.com/"
},
"cquotient.com": {
"name": "CQuotient",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.demandware.com/#cquotient"
},
"ancora": {
"name": "Ancora",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"adclear": {
"name": "AdClear",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adclear.de/en/home.html"
},
"crimtan": {
"name": "Crimtan",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.crimtan.com/"
},
"dynadmic": {
"name": "DynAdmic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"viglink": {
"name": "VigLink",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.viglink.com"
},
"dawandastatic.com": {
"name": "Dawanda CDN",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://dawanda.com/"
},
"tubecup.org": {
"name": "tubecup.org",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"media.net": {
"name": "Media.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.media.net/"
},
"rtmark.net": {
"name": "Advertising Technologies Ltd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://rtmark.net/"
},
"trackjs": {
"name": "TrackJS",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.trackjs.com/"
},
"elastic_ad": {
"name": "Elastic Ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"intercom": {
"name": "Intercom",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://intercom.io/"
},
"adyoulike": {
"name": "Adyoulike",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adyoulike.com/"
},
"web_wipe_anlaytics": {
"name": "Wipe Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://tensquare.de"
},
"adnium.com": {
"name": "Adnium",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adnium.com/"
},
"markmonitor": {
"name": "MarkMonitor",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.markmonitor.com/"
},
"azureedge.net": {
"name": "Azure CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"iovation": {
"name": "iovation",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"adtr02.com": {
"name": "adtr02.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"scribblelive": {
"name": "ScribbleLive",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"unruly_media": {
"name": "Unruly Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.unrulymedia.com/"
},
"beeswax": {
"name": "Beeswax",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"contentsquare.net": {
"name": "ContentSquare",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.contentsquare.com/"
},
"geotrust": {
"name": "GeoTrust",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.geotrust.com/"
},
"zemanta": {
"name": "Zemanta",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zemanta.com/"
},
"trafficfabrik.com": {
"name": "Traffic Fabrik",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.trafficfabrik.com/"
},
"rncdn3.com": {
"name": "Reflected Networks",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.rncdn3.com/"
},
"skype": {
"name": "Skype",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.skype.com"
},
"fit_analytics": {
"name": "Fit Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"dimml": {
"name": "DimML",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sonobi": {
"name": "Sonobi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://sonobi.com/"
},
"belboon_gmbh": {
"name": "belboon GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"web.de": {
"name": "web.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://web.de/"
},
"flickr_badge": {
"name": "Flickr",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.flickr.com/"
},
"globalsign": {
"name": "GlobalSign",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"adloox": {
"name": "Adloox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adloox.com"
},
"groupm_server": {
"name": "GroupM Server",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.groupm.com/"
},
"bongacams.com": {
"name": "bongacams.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"symantec": {
"name": "Symantec (Norton Secured Seal)",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"vergic.com": {
"name": "Vergic",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "https://www.vergic.com/"
},
"esprit.de": {
"name": "esprit.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"mncdn.com": {
"name": "MediaNova CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.medianova.com/"
},
"marshadow.io": {
"name": "marshadow.io",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"bangdom.com": {
"name": "BangBros",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"teufel.de": {
"name": "teufel.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.teufel.de/"
},
"webgains": {
"name": "Webgains",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"truste_consent": {
"name": "Truste Consent",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"inspsearchapi.com": {
"name": "Infospace Search",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://infospace.com/"
},
"tagman": {
"name": "TagMan",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.tagman.com/"
},
"livechat": {
"name": "LiveChat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.livechatinc.com"
},
"reddit": {
"name": "Reddit",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://reddit.com"
},
"oclasrv.com": {
"name": "oclasrv.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"flxone": {
"name": "FLXONE",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.flxone.com/"
},
"shopgate.com": {
"name": "Shopgate",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.shopgate.com/"
},
"mapandroute.de": {
"name": "Map and Route",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.mapandroute.de/"
},
"vidible": {
"name": "Vidible",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://vidible.tv/"
},
"tradelab": {
"name": "Tradelab",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tradelab.fr/"
},
"twyn": {
"name": "Twyn",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.twyn.com"
},
"catchpoint": {
"name": "Catchpoint",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.catchpoint.com/"
},
"nosto.com": {
"name": "nosto",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.nosto.com/"
},
"similardeals.net": {
"name": "SimilarDeals",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.similardeals.net/"
},
"adult_webmaster_empire": {
"name": "Adult Webmaster Empire",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.awempire.com/"
},
"usemax": {
"name": "Usemax",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.usemax.de"
},
"autoscout24.com": {
"name": "Autoscout24",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"nexage": {
"name": "Nexage",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nexage.com/"
},
"doubleverify": {
"name": "DoubleVerify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.doubleverify.com/"
},
"octapi.net": {
"name": "octapi.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"eloqua": {
"name": "Eloqua",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.eloqua.com/"
},
"adelphic": {
"name": "Adelphic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"mycdn.me": {
"name": "Mail.Ru CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"adworx.at": {
"name": "adworx",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adworx.at/"
},
"adspyglass": {
"name": "AdSpyglass",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"sexypartners.net": {
"name": "sexypartners.net",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"adify": {
"name": "Adify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adify.com/"
},
"chatango": {
"name": "Chatango",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.chatango.com/"
},
"springserve": {
"name": "SpringServe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"united_digital_group": {
"name": "United Digital Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.udg.de/"
},
"adverserve": {
"name": "adverServe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adverserve.com/"
},
"segment": {
"name": "Segment",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://segment.io/"
},
"sekindo": {
"name": "Sekindo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sekindo.com/"
},
"perimeterx.net": {
"name": "Perimeterx",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.perimeterx.com/"
},
"adnet.de": {
"name": "adNET.de",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adnet.de"
},
"cursecdn.com": {
"name": "Curse CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.curse.com/"
},
"po.st": {
"name": "Po.st",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.po.st/"
},
"switch_concepts": {
"name": "Switch Concepts",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.switchconcepts.co.uk/"
},
"ask.com": {
"name": "Ask.com",
- "categoryId": 7
+ "categoryId": 7,
+ "url": null
},
"dynamic_yield": {
"name": "Dynamic Yield",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"1822direkt.de": {
"name": "1822direkt.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.1822direkt.de/"
},
"hola_player": {
"name": "Hola Player",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"zog.link": {
"name": "zog.link",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"richrelevance": {
"name": "RichRelevance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.richrelevance.com/"
},
"tubemogul": {
"name": "TubeMogul",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://tubemogul.com/"
},
"bugsnag": {
"name": "Bugsnag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://bugsnag.com"
},
"codeonclick.com": {
"name": "codeonclick.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"imgix.net": {
"name": "ImgIX",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.imgix.com/"
},
"eanalyzer.de": {
"name": "eanalyzer.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"yusp": {
"name": "Yusp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.yusp.com/"
},
"greatviews.de": {
"name": "GreatViews",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://greatviews.de/"
},
"lkqd": {
"name": "LKQD",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.lkqd.com/"
},
"woopic.com": {
"name": "woopic.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"eyeview": {
"name": "Eyeview",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.eyeviewdigital.com/"
},
"valiton": {
"name": "Valiton",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.valiton.com/"
},
"stripe.com": {
"name": "Stripe",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://stripe.com/"
},
"coll1onf.com": {
"name": "coll1onf.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"salecycle": {
"name": "SaleCycle",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.salecycle.com/"
},
"id-news.net": {
"name": "Ippen Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ippen-digital.de/"
},
"doofinder.com": {
"name": "doofinder",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.doofinder.com/"
},
"ixquick.com": {
"name": "ixquick",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.ixquick.com/"
},
"loadbee.com": {
"name": "Loadbee",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://company.loadbee.com/de/loadbee-home"
},
"findizer.fr": {
"name": "Findizer",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.findizer.fr/"
},
"wix.com": {
"name": "Wix",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.wix.com/"
},
"7tv.de": {
"name": "7tv.de",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.7tv.de/"
},
"opta.net": {
"name": "Opta",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.optasports.de/"
},
"zedo": {
"name": "Zedo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zedo.com/"
},
"alibaba.com": {
"name": "Alibaba",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"crossengage": {
"name": "CrossEngage",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"solads.media": {
"name": "solads.media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://solads.media/"
},
"office.com": {
"name": "office.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"adotmob.com": {
"name": "Adotmob",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adotmob.com/"
},
"liveadexchanger.com": {
"name": "liveadexchanger.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"brandwire.tv": {
"name": "BrandWire",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://brandwire.tv/"
},
"gumgum": {
"name": "gumgum",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://gumgum.com/"
},
"bombora": {
"name": "Bombora",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"king.com": {
"name": "King.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"admeira.ch": {
"name": "AdMeira",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://admeira.ch/"
},
"adventori": {
"name": "ADventori",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"stayfriends.de": {
"name": "stayfriends.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.stayfriends.de/"
},
"apester": {
"name": "Apester",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://apester.com/"
},
"bulkhentai.com": {
"name": "bulkhentai.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"metapeople": {
"name": "Metapeople",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.metapeople.com/us/"
},
"smartlook": {
"name": "Smartlook",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"getintent": {
"name": "GetIntent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.getintent.com/"
},
"sumome": {
"name": "SumoMe",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://sumome.com/"
},
"kairion.de": {
"name": "kairion",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://kairion.de/"
},
"trsv3.com": {
"name": "trsv3.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"powerlinks": {
"name": "PowerLinks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.powerlinks.com/"
},
"lifestreet_media": {
"name": "LifeStreet Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://lifestreetmedia.com/"
},
"sparkasse.de": {
"name": "sparkasse.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"netmining": {
"name": "Netmining",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.netmining.com/"
},
"videoplaza": {
"name": "Videoplaza",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.videoplaza.com/"
},
"inspectlet": {
"name": "Inspectlet",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.inspectlet.com/"
},
"yume": {
"name": "YuMe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"nanigans": {
"name": "Nanigans",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nanigans.com/"
},
"certona": {
"name": "Certona",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.certona.com/products/recommendation.php"
},
"affimax": {
"name": "AffiMax",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.affimax.de"
},
"hubspot": {
"name": "HubSpot",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.hubspot.com/"
},
"quisma": {
"name": "Quisma",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.quisma.com/en/"
},
"pusher.com": {
"name": "Pusher",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://pusher.com/"
},
"blogsmithmedia.com": {
"name": "blogsmithmedia.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sojern": {
"name": "Sojern",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sojern.com/"
},
"sublime_skinz": {
"name": "Sublime Skinz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://sublimeskinz.com/home"
},
"keen_io": {
"name": "Keen IO",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://keen.io"
},
"digiteka": {
"name": "Digiteka",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ard.de": {
"name": "ard.de",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"netflix": {
"name": "Netflix",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"tp-cdn.com": {
"name": "TrialPay",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.trialpay.com/"
},
"adtelligence.de": {
"name": "Adtelligence",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adtelligence.com/"
},
"tawk": {
"name": "Tawk",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"firebaseio.com": {
"name": "Firebase",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://firebase.google.com/"
},
"shopauskunft.de": {
"name": "ShopAuskunft.de",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://shopauskunft.de/"
},
"dcmn.com": {
"name": "DCMN",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.dcmn.com/"
},
"mythings": {
"name": "myThings",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mythings.com/"
},
"asambeauty.com": {
"name": "asambeauty.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.asambeauty.com/"
},
"dailymotion": {
"name": "Dailymotion",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"cam-content.com": {
"name": "Cam-Content.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.cam-content.com/"
},
"dmwd": {
"name": "DMWD",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"voicefive": {
"name": "VoiceFive",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.voicefive.com"
},
"run": {
"name": "RUN",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.rundsp.com/"
},
"orange": {
"name": "Orange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.orange.co.uk/"
},
"media-imdb.com": {
"name": "IMDB CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.imdb.com/"
},
"marketo": {
"name": "Marketo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.marketo.com/"
},
"shopify_stats": {
"name": "Shopify Stats",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.shopify.com/"
},
"dc_stormiq": {
"name": "DC StormIQ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dc-storm.com/"
},
"maxpoint_interactive": {
"name": "MaxPoint Interactive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.maxpointinteractive.com/"
},
"adxpansion": {
"name": "AdXpansion",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.adxpansion.com/"
},
"onaudience": {
"name": "OnAudience",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.onaudience.com/"
},
"uservoice": {
"name": "UserVoice",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://uservoice.com/"
},
"owneriq": {
"name": "OwnerIQ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.owneriq.com/"
},
"convertro": {
"name": "Convertro",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.convertro.com/"
},
"connextra": {
"name": "Connextra",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://connextra.com/"
},
"yandex_adexchange": {
"name": "Yandex AdExchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"digicert_trust_seal": {
"name": "Digicert Trust Seal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.digicert.com/"
},
"urban-media.com": {
"name": "Urban Media GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.urban-media.com/"
},
"adtiger": {
"name": "AdTiger",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adtiger.de/"
},
"pulpix.com": {
"name": "Pulpix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.pulpix.com/"
},
"branch_metrics": {
"name": "Branch",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"smartclick.net": {
"name": "SmartClick",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://smartclick.net/"
},
"xing": {
"name": "Xing",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"travel_audience": {
"name": "Travel Audience",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"streamrail.com": {
"name": "StreamRail",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.streamrail.com/"
},
"t8cdn.com": {
"name": "t8cdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"apple": {
"name": "Apple",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.apple.com/"
},
"magnetic": {
"name": "Magnetic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.magnetic.is"
},
"schneevonmorgen.com": {
"name": "Schnee von Morgen",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://www.schneevonmorgen.com/"
},
"fullstory": {
"name": "FullStory",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"vicomi.com": {
"name": "Vicomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vicomi.com/"
},
"alipay.com": {
"name": "Alipay",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.alipay.com/"
},
"deichmann.com": {
"name": "deichmann.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"upravel.com": {
"name": "upravel.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"hqentertainmentnetwork.com": {
"name": "HQ Entertainment Network",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://hqentertainmentnetwork.com/"
},
"here__formerly_navteq_media_solutions_": {
"name": "HERE (formerly Navteq Media Solutions)",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"commission_junction": {
"name": "CJ Affiliate",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cj.com/"
},
"othersearch.info": {
"name": "FlowSurf",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"avocet": {
"name": "Avocet",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"toplist.cz": {
"name": "toplist.cz",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"optimicdn.com": {
"name": "OptimiCDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://en.optimicdn.com/"
},
"bounce_exchange": {
"name": "Bounce Exchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://bounceexchange.com"
},
"rtblab": {
"name": "RTBmarkt",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.rtbmarkt.de/en/home/"
},
"haendlerbund.de": {
"name": "Händlerbund",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.haendlerbund.de/en"
},
"cdn-net.com": {
"name": "cdn-net.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"omarsys.com": {
"name": "Omarsys",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://omarsys.com/"
},
"adfox": {
"name": "AdFox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adfox.ru"
},
"iperceptions": {
"name": "iPerceptions",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.iperceptions.com/"
},
"chaturbate.com": {
"name": "chaturbate.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"sixt-neuwagen.de": {
"name": "sixt-neuwagen.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"yieldify": {
"name": "Yieldify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.yieldify.com/"
},
"cdnetworks.net": {
"name": "cdnetworks.net",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cdnetworks.com/"
},
"komoona": {
"name": "Komoona",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.komoona.com/"
},
"freewheel": {
"name": "FreeWheel",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://www.freewheel.tv/"
},
"sessioncam": {
"name": "SessionCam",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.sessioncam.com/"
},
"sailthru_horizon": {
"name": "Sailthru Horizon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sailthru.com"
},
"datacaciques.com": {
"name": "DataCaciques",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.datacaciques.com/"
},
"mediarithmics.com": {
"name": "Mediarithmics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mediarithmics.com/en/"
},
"clicktripz": {
"name": "ClickTripz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.clicktripz.com"
},
"apicit.net": {
"name": "apicit.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ampproject.org": {
"name": "AMP Project",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.ampproject.org/"
},
"deviantart.net": {
"name": "deviantart.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"txxx.com": {
"name": "txxx.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://txxx.com"
},
"uppr.de": {
"name": "uppr GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://uppr.de/"
},
"get_site_control": {
"name": "Get Site Control",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"clicky": {
"name": "Clicky",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://getclicky.com/"
},
"wikia_beacon": {
"name": "Wikia Beacon",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.wikia.com/"
},
"aldi-international.com": {
"name": "aldi-international.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"bigpoint": {
"name": "Bigpoint",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"rythmxchange": {
"name": "Rythmxchange",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"lenua.de": {
"name": "Lenua System",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://lenua.de/"
},
"lentainform.com": {
"name": "lentainform.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.lentainform.com/"
},
"avail": {
"name": "Avail",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://avail.com"
},
"twitch.tv": {
"name": "Twitch",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.twitch.tv/"
},
"olark": {
"name": "Olark",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.olark.com/"
},
"oracle_rightnow": {
"name": "Oracle RightNow",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sirdata": {
"name": "Sirdata",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"wdr.de": {
"name": "wdr.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www1.wdr.de/index.html"
},
"tumblr_buttons": {
"name": "Tumblr Buttons",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.tumblr.com/"
},
"netseer": {
"name": "NetSeer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.netseer.com/"
},
"vivalu": {
"name": "VIVALU",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"errorception": {
"name": "Errorception",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://errorception.com/"
},
"iias.eu": {
"name": "Insight Image",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://insightimage.com/"
},
"impact_radius": {
"name": "Impact Radius",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.impactradius.com/"
},
"answers_cloud_service": {
"name": "Answers Cloud Service",
- "categoryId": 1
+ "categoryId": 1,
+ "url": null
},
"aniview.com": {
"name": "AniView",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.aniview.com/"
},
"decibel_insight": {
"name": "Decibel Insight",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"adobe_tagmanager": {
"name": "Adobe TagManager",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adobe.com/"
},
"overheat.it": {
"name": "overheat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://overheat.io/"
},
"snowplow": {
"name": "Snowplow",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"psyma": {
"name": "Psyma",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.psyma.com/"
},
"bauer_media": {
"name": "Bauer Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"homeaway": {
"name": "HomeAway",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"perfect_audience": {
"name": "Perfect Audience",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.perfectaudience.com/"
},
"itineraire.info": {
"name": "itineraire.info",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.itineraire.info/"
},
"revcontent": {
"name": "RevContent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.revcontent.com/"
},
"algolia.net": {
"name": "algolia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.algolia.com/"
},
"zergnet": {
"name": "ZergNet",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zergnet.com/info"
},
"adskeeper": {
"name": "AdsKeeper",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"jivox": {
"name": "Jivox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.jivox.com/"
},
"basilic.io": {
"name": "basilic.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://basilic.io/"
},
"crosssell.info": {
"name": "econda Cross Sell",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.econda.de/en/solutions/personalization/cross-sell/"
},
"hi-media_performance": {
"name": "Hi-Media Performance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.hi-mediaperformance.co.uk/"
},
"perform_group": {
"name": "Perform Group",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.performgroup.co.uk/"
},
"kenshoo": {
"name": "Kenshoo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.kenshoo.com/"
},
"stepstone.com": {
"name": "StepStone",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.stepstone.com/"
},
"clever_push": {
"name": "Clever Push",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"recreativ": {
"name": "Recreativ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://recreativ.ru/"
},
"polldaddy": {
"name": "Polldaddy",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://polldaddy.com/"
},
"s3xified.com": {
"name": "s3xified.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"microsoft": {
"name": "Microsoft Services",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"intent_media": {
"name": "Intent Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.intentmedia.com/"
},
"rtl_group": {
"name": "RTL Group",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"skadtec.com": {
"name": "GP One GmbH",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.gp-one.com/"
},
"nativo": {
"name": "Nativo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nativo.net/"
},
"kaltura": {
"name": "Kaltura",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://corp.kaltura.com/"
},
"effiliation": {
"name": "Effiliation",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.effiliation.com/"
},
"intimate_merger": {
"name": "Intimate Merger",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"innogames.de": {
"name": "InnoGames",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.innogames.com/"
},
"districtm.io": {
"name": "district m",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://districtm.net/"
},
"yandex.api": {
"name": "Yandex.API",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://api.yandex.ru/"
},
"snacktv": {
"name": "SnackTV",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"trafficforce": {
"name": "TrafficForce",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.trafficforce.com/"
},
"rollbar": {
"name": "Rollbar",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.rollbar.com/"
},
"baur.de": {
"name": "baur.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"adwebster": {
"name": "adwebster",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adwebster.com"
},
"clickonometrics": {
"name": "Clickonometrics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://clickonometrics.pl/"
},
"realytics.io": {
"name": "realytics.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.realytics.io/"
},
"nativeads.com": {
"name": "native ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://nativeads.com/"
},
"proxistore.com": {
"name": "Proxistore",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.proxistore.com/"
},
"greentube.com": {
"name": "Greentube Internet Entertainment Solutions",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.greentube.com/"
},
"heroku": {
"name": "Heroku",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"adzerk": {
"name": "Adzerk",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adzerk.com/"
},
"lengow": {
"name": "Lengow",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.lengow.com/"
},
"adworxs.net": {
"name": "adworxs.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adworxs.net/?lang=en"
},
"clickintext": {
"name": "ClickInText",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.clickintext.com/"
},
"tamedia.ch": {
"name": "Tamedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.tamedia.ch/"
},
"visible_measures": {
"name": "Visible Measures",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.visiblemeasures.com/"
},
"gamedistribution.com": {
"name": "Gamedistribution.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://gamedistribution.com/"
},
"flattr_button": {
"name": "Flattr Button",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://flattr.com/"
},
"sstatic.net": {
"name": "Stack Exchange",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://sstatic.net/"
},
"trustwave.com": {
"name": "Trustwave",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.trustwave.com/home/"
},
"siteimprove": {
"name": "Siteimprove",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://siteimprove.com"
},
"adtrue": {
"name": "Adtrue",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"1000mercis": {
"name": "1000mercis",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"ipg_mediabrands": {
"name": "IPG Mediabrands",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"tradetracker": {
"name": "TradeTracker",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tradetracker.com"
},
"adnologies": {
"name": "Adnologies",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adnologies.com/"
},
"24-ads.com": {
"name": "24-ADS GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.24-ads.com/"
},
"pushnative.com": {
"name": "pushnative.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"flag_counter": {
"name": "Flag Counter",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://flagcounter.com/"
},
"dstillery": {
"name": "Dstillery",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.media6degrees.com/"
},
"office.net": {
"name": "office.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"tinypass": {
"name": "Piano",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://piano.io/"
},
"mobtrks.com": {
"name": "mobtrks.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"yoochoose.net": {
"name": "YOOCHOOSE",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://yoochoose.com/"
},
"cpmstar": {
"name": "CPMStar",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cpmstar.com"
},
"blink_new_media": {
"name": "Blink New Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://engagebdr.com/"
},
"acquia.com": {
"name": "Acquia",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.acquia.com/"
},
"gravity_insights": {
"name": "Gravity Insights",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.gravity.com/"
},
"baynote_observer": {
"name": "Baynote Observer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.baynote.com/"
},
"demandbase": {
"name": "Demandbase",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.demandbase.com/"
},
"stackpathdns.com": {
"name": "StackPath",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.stackpath.com/"
},
"booking.com": {
"name": "Booking.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"optimatic": {
"name": "Optimatic",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"realytics": {
"name": "Realytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"vi": {
"name": "Vi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vi.ru/"
},
"livefyre": {
"name": "Livefyre",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "http://www.livefyre.com/"
},
"tremor_video": {
"name": "Tremor Video",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"research_now": {
"name": "Research Now",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.researchnow.com/"
},
"baidu_ads": {
"name": "Baidu Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.baidu.com/"
},
"pixalate": {
"name": "Pixalate",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"aidata.io": {
"name": "AiData",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.aidata.me/"
},
"mcafee_secure": {
"name": "McAfee Secure",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.mcafeesecure.com/us/"
},
"livesportmedia.eu": {
"name": "Livesport Media",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.livesportmedia.eu/"
},
"smi2.ru": {
"name": "smi2.ru",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://smi2.ru/"
},
"vooxe.com": {
"name": "vooxe.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.vooxe.com/"
},
"walmart": {
"name": "Walmart",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"nice264.com": {
"name": "Nice264",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://nice264.com/"
},
"vidazoo.com": {
"name": "Vidazoo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.vidazoo.com/"
},
"heap": {
"name": "Heap",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://heapanalytics.com/"
},
"kaloo.ga": {
"name": "Kalooga",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.kalooga.com/"
},
"layer-ad.org": {
"name": "Layer-ADS.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://layer-ads.net/"
},
"loop11": {
"name": "Loop11",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"spot.im": {
"name": "Spot.IM",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.spot.im/"
},
"howtank.com": {
"name": "howtank",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.howtank.com/"
},
"sexadnetwork": {
"name": "SexAdNetwork",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.sexadnetwork.com/"
},
"pushcrew": {
"name": "Pushcrew",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"swisscom": {
"name": "Swisscom",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"spongecell": {
"name": "Spongecell",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.spongecell.com/"
},
"friendfinder_network": {
"name": "FriendFinder Network",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.ffn.com/"
},
"netrk.net": {
"name": "nfxTrack",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://netrk.net/"
},
"cloud-media.fr": {
"name": "CloudMedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://cloudmedia.fr/"
},
"vizury": {
"name": "Vizury",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vizury.com/website/"
},
"admized": {
"name": "ADMIZED",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sumologic.com": {
"name": "Sumologic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.sumologic.com/"
},
"raygun": {
"name": "Raygun",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"yahoo_japan": {
"name": "Yahoo! Japan",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"effective_measure": {
"name": "Effective Measure",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.effectivemeasure.com/"
},
"bluelithium": {
"name": "Bluelithium",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.bluelithium.com/"
},
"adocean": {
"name": "AdOcean",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adocean.cz/en"
},
"c1_exchange": {
"name": "C1 Exchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"netbiscuits": {
"name": "Netbiscuits",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.netbiscuits.net/"
},
"expedia": {
"name": "Expedia",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.trvl-px.com/"
},
"nonstop_consulting": {
"name": "nonstop Consulting",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nonstopconsulting.co.uk"
},
"jumptap": {
"name": "Jumptap",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.jumptap.com/"
},
"unister": {
"name": "Unister",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.unister.de/"
},
"underdog_media": {
"name": "Underdog Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.underdogmedia.com"
},
"wwwpromoter": {
"name": "WWWPromoter",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"maxmind": {
"name": "MaxMind",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.maxmind.com/"
},
"fstrk.net": {
"name": "24metrics Fraudshield",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://24metrics.com/"
},
"toro": {
"name": "TORO",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://toroadvertising.com/"
},
"content.ad": {
"name": "Content.ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.content.ad/"
},
"aemediatraffic": {
"name": "Aemediatraffic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"babator.com": {
"name": "Babator",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.babator.com/"
},
"algovid.com": {
"name": "algovid.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"jetlore": {
"name": "Jetlore",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"feedbackify": {
"name": "Feedbackify",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.feedbackify.com/"
},
"flixmedia": {
"name": "Flixmedia",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"visualdna": {
"name": "VisualDNA",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.visualdna.com/"
},
"popcash": {
"name": "Popcash",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://popcash.net/"
},
"f11-ads.com": {
"name": "Factor Eleven",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"stumbleupon_widgets": {
"name": "StumbleUpon Widgets",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.stumbleupon.com/"
},
"adgear": {
"name": "AdGear",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adgear.com/"
},
"extreme_tracker": {
"name": "eXTReMe Tracker",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.extremetracking.com/"
},
"leadplace": {
"name": "LeadPlace",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"infolinks": {
"name": "InfoLinks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.infolinks.com/"
},
"smartsupp_chat": {
"name": "Smartsupp Chat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"redtube.com": {
"name": "redtube.com",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"adc_media": {
"name": "ad:C media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adcmedia.de/en/"
},
"hstrck.com": {
"name": "HEIM:SPIEL Medien GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.heimspiel.de/"
},
"tracc.it": {
"name": "Kiwe.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.kiwe.io/"
},
"walkme.com": {
"name": "Walk Me",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.walkme.com/"
},
"freshdesk": {
"name": "Freshdesk",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.freshdesk.com"
},
"forensiq": {
"name": "Forensiq",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cpadetective.com/"
},
"truste_seal": {
"name": "TRUSTe Seal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.truste.com/"
},
"optimonk": {
"name": "Optimonk",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"seznam": {
"name": "Seznam",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"oxomi.com": {
"name": "Oxomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://oxomi.com/"
},
"sas": {
"name": "SAS",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.sas.com/"
},
"gdm_digital": {
"name": "GDM Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.gdmdigital.com/"
},
"adnetworkperformance.com": {
"name": "adnetworkperformance.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"stackadapt": {
"name": "StackAdapt",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ria.ru": {
"name": "ria.ru",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://ria.ru/"
},
"skyscnr.com": {
"name": "Skyscanner CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.skyscanner.net/"
},
"imonomy": {
"name": "imonomy",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"maru-edu": {
"name": "Maru-EDU",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"trustarc": {
"name": "TrustArc",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"adbetclickin.pink": {
"name": "adbetnet",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adbetnet.com/"
},
"videoadex.com": {
"name": "VideoAdX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.videoadex.com/"
},
"monster_advertising": {
"name": "Monster Advertising",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.monster.com/"
},
"atlassian.net": {
"name": "Atlassian",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.atlassian.com/"
},
"siteimprove_analytics": {
"name": "SiteImprove Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"mirtesen.ru": {
"name": "mirtesen.ru",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://mirtesen.ru/"
},
"lenmit.com": {
"name": "lenmit.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"semknox.com": {
"name": "SEMKNOX GmbH",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://semknox.com/"
},
"wiredminds": {
"name": "WiredMinds",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.wiredminds.de/"
},
"adglare.net": {
"name": "Adglare",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adglare.com/"
},
"hivedx.com": {
"name": "hiveDX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.hivedx.com/"
},
"1und1": {
"name": "1&1 Internet",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"audiencesquare.com": {
"name": "Audience Square",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.audiencesquare.fr/"
},
"fidelity_media": {
"name": "Fidelity Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://fidelity-media.com/"
},
"adsnative": {
"name": "adsnative",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adsnative.com/"
},
"sophus3": {
"name": "Sophus3",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sophus3.com/ "
},
"shareaholic": {
"name": "Shareaholic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "hhttps://www.shareaholic.com/"
},
"wistia": {
"name": "Wistia",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"sundaysky": {
"name": "SundaySky",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sundaysky.com/"
},
"pardot": {
"name": "Pardot",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.pardot.com/"
},
"qualaroo": {
"name": "Qualaroo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"logsss.com": {
"name": "logsss.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"github": {
"name": "GitHub",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"post_affiliate_pro": {
"name": "Post Affiliate Pro",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.qualityunit.com/"
},
"guj.de": {
"name": "Gruner + Jahr",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.guj.de/"
},
"deepintent.com": {
"name": "DeepIntent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.deepintent.com/"
},
"acuity_ads": {
"name": "Acuity Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.acuityads.com/"
},
"bidswitch": {
"name": "Bidswitch",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"33across": {
"name": "33Across",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://33across.com/"
},
"dantrack.net": {
"name": "DANtrack",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://media.dantrack.net/privacy/"
},
"first_impression": {
"name": "First Impression",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"pubnub.com": {
"name": "PubNub",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.pubnub.com/"
},
"vindico_group": {
"name": "Vindico Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vindicogroup.com/"
},
"dynamic_1001_gmbh": {
"name": "Dynamic 1001 GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"intelligent_reach": {
"name": "Intelligent Reach",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.intelligentreach.com/"
},
"google_appspot": {
"name": "Google Appspot",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"msn": {
"name": "Microsoft Network",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sourcepoint": {
"name": "Sourcepoint",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sourcepoint.com/"
},
"cloudflare": {
"name": "CloudFlare",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cloudflare.com/"
},
"spotify": {
"name": "Spotify",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.spotify.com/"
},
"1plusx": {
"name": "1plusX",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.1plusx.com/"
},
"maxcdn": {
"name": "MaxCDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.maxcdn.com/"
},
"trafficfactory": {
"name": "Traffic Factory",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.trafficfactory.biz/"
},
"adsbookie": {
"name": "AdsBookie",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adsbookie.com/"
},
"zeusclicks": {
"name": "ZeusClicks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://zeusclicks.com/"
},
"the_weather_company": {
"name": "The Weather Company",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.theweathercompany.com/"
},
"youporn": {
"name": "YouPorn",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"adpilot": {
"name": "AdPilot",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adpilotgroup.com/"
},
"geniee": {
"name": "GENIEE",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://geniee.co.jp/"
},
"bing_maps": {
"name": "Bing Maps",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"wetter_com": {
"name": "Wetter.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.wetter.com/"
},
"cdn77": {
"name": "CDN77",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cdn77.com/"
},
"mindspark": {
"name": "Mindspark",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.mindspark.com/"
},
"bonial": {
"name": "Bonial Connect",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.bonial.com/"
},
"atg_group": {
"name": "ATG Ad Tech Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://ad-tech-group.com/"
},
"yieldr": {
"name": "Yieldr",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.yieldr.com/"
},
"zypmedia": {
"name": "ZypMedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zypmedia.com/"
},
"acxiom": {
"name": "Acxiom",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"twenga": {
"name": "Twenga Solutions",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.twenga-solutions.com/"
},
"fraudlogix": {
"name": "FraudLogix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.fraudlogix.com/"
},
"openload": {
"name": "Openload",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://openload.co/"
},
"merkle_rkg": {
"name": "Merkle RKG",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.merkleinc.com/what-we-do/digital-agency-services/rkg-now-fully-integrated-merkle"
},
"bidtellect": {
"name": "Bidtellect",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bidtellect.com/"
},
"optomaton": {
"name": "Optomaton",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.optomaton.com/"
},
"amazon_payments": {
"name": "Amazon Payments",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://pay.amazon.com/"
},
"bootstrap": {
"name": "Bootstrap CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://getbootstrap.com/"
},
"jquery": {
"name": "jQuery",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://jquery.org/"
},
"createjs": {
"name": "CreateJS",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://createjs.com/"
},
"jsdelivr": {
"name": "jsDelivr",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.jsdelivr.com/"
},
"batch_media": {
"name": "Batch Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://batch.ba/"
},
"monotype_gmbh": {
"name": "Monotype GmbH",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.monotype.com/"
},
"monotype_imaging": {
"name": "Monotype Imaging Inc.",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.fonts.com/"
},
"ablida": {
"name": "ablida",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ablida.de/"
},
"advanced_hosters": {
"name": "Advanced Hosters",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://advancedhosters.com/"
},
"sap_xm": {
"name": "SAP Exchange Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://sapexchange.media/"
},
"icf_technology": {
"name": "ICF Technology",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.icftechnology.com/"
},
"addefend": {
"name": "AdDefend",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.addefend.com/"
},
"permutive": {
"name": "Permutive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://permutive.com/"
},
"burda_digital_systems": {
"name": "Burda Digital Systems",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"bild": {
"name": "Bild.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"bahn_de": {
"name": "Deutsche Bahn",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"aspnetcdn": {
"name": "Microsoft Ajax CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"heimspiel": {
"name": "HEIM:SPIEL Medien GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.heimspiel.de"
},
"gujems": {
"name": "G+J e|MS",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.gujmedia.de/"
},
"tisoomi": {
"name": "Tisoomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://tisoomi-services.com/"
},
"circit": {
"name": "circIT",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.circit.de/"
},
"shopping_com": {
"name": "Shopping.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"wayfair_com": {
"name": "Wayfair",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.wayfair.com/"
},
"instagram_com": {
"name": "Instagram",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"immobilienscout24_de": {
"name": "immobilienscout24.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"zalando_de": {
"name": "zalando.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"gmx_net": {
"name": "gmx.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"xvideos_com": {
"name": "xvideos.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"blogspot_com": {
"name": "blogspot.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"eluxer_net": {
"name": "eluxer.net",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"worldnaturenet_xyz": {
"name": "worldnaturenet.xyz",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"tdsrmbl_net": {
"name": "tdsrmbl.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"pizzaandads_com": {
"name": "pizzaandads.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"nerfherdersolo_com": {
"name": "nerfherdersolo.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sentry": {
"name": "Sentry",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://sentry.io/"
},
"performio": {
"name": "Performio.cz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://performio.cz/"
},
"channel_pilot_solutions": {
"name": "ChannelPilot Solutions",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.channelpilot.de/"
},
"sentifi.com": {
"name": "Sentifi",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://sentifi.com/"
},
"qubit": {
"name": "Qubit Opentag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.qubit.com/"
},
"traffective": {
"name": "Traffective",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://traffective.com/"
},
"rawgit": {
"name": "RawGit",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://rawgit.com/"
},
"opinary": {
"name": "Opinary",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://opinary.com/"
},
"cloudinary": {
"name": "Cloudinary",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://cloudinary.com/"
},
"king_com": {
"name": "King.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://king.com/"
},
"distil_tag": {
"name": "Distil Bot Discovery",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.distilnetworks.com/block-bot-detection/"
},
"netletix": {
"name": "Netletix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.netletix.com//"
},
"q_division": {
"name": "Q-Division",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://q-division.de/"
},
"hyvyd": {
"name": "Hyvyd GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"oms": {
"name": "OMS",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://oms.eu/"
},
"cdnnetwok_xyz": {
"name": "cdnnetwok.xyz",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"foxydeal_com": {
"name": "foxydeal.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.foxydeal.de"
},
"webclicks24_com": {
"name": "webclicks24.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"easylist_club": {
"name": "easylist.club",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"propvideo_net": {
"name": "propvideo.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"generaltracking_de": {
"name": "generaltracking.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"atsfi_de": {
"name": "atsfi.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"continum_net": {
"name": "continum.net",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://continum.net/"
},
"freenet_de": {
"name": "freenet.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://freenet.de/"
},
"fontawesome_com": {
"name": "fontawesome.com",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://fontawesome.com/"
},
"idealo_com": {
"name": "idealo.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://idealo.com/"
},
"4finance_com": {
"name": "4finance.com",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://4finance.com/"
},
"ausgezeichnet_org": {
"name": "ausgezeichnet.org",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://ausgezeichnet.org/"
},
"freegeoip_net": {
"name": "freegeoip.net",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://freegeoip.net/"
},
"adac_de": {
"name": "adac.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://adac.de/"
},
"stailamedia_com": {
"name": "stailamedia.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://stailamedia.com/"
},
"crimsonhexagon_com": {
"name": "Crimson Hexagon",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://crimsonhexagon.com/"
},
"ehi-siegel_de": {
"name": "ehi-siegel.de",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://ehi-siegel.de/"
},
"s24_com": {
"name": "Shopping24 internet group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.s24.com/"
},
"redblue_de": {
"name": "redblue",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.redblue.de/"
},
"tchibo_de": {
"name": "tchibo.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://tchibo.de/"
},
"chefkoch_de": {
"name": "chefkoch.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://chefkoch.de/"
},
"iotec": {
"name": "iotec",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.iotecglobal.com/"
},
"a3cloud_net": {
"name": "a3cloud.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"maxonclick_com": {
"name": "maxonclick.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"toponclick_com": {
"name": "toponclick.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"westlotto_com": {
"name": "westlotto.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://westlotto.com/"
},
"admedo_com": {
"name": "Admedo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://admedo.com/"
},
"adbrain": {
"name": "AdBrain",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adbrain.com/"
},
"twitter_for_business": {
"name": "Twitter for Business",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://business.twitter.com/"
},
"brightonclick.com": {
"name": "brightonclick.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"voluum": {
"name": "Voluum",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://voluum.com/"
},
"xxxlshop.de": {
"name": "xxxlshop.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.xxxlshop.de/"
},
"fyber": {
"name": "Fyber",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.fyber.com/"
},
"eshopcomp.com": {
"name": "eshopcomp.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"vodafone.de": {
"name": "vodafone.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"davebestdeals.com": {
"name": "davebestdeals.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"stathat": {
"name": "StatHat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.stathat.com/"
},
"ubersetzung-app.com": {
"name": "ubersetzung-app.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.ubersetzung-app.com/"
},
"supership": {
"name": "Supership",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://supership.jp/en/"
},
"wikia_cdn": {
"name": "Wikia CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"insightexpress": {
"name": "InsightExpress",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.millwardbrowndigital.com/"
},
"platformone": {
"name": "Platform One",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.platform-one.co.jp/"
},
"adrom": {
"name": "adRom",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adrom.net/"
},
"purch": {
"name": "Purch",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.purch.com/"
},
"tumblr_analytics": {
"name": "Tumblr Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"scoota": {
"name": "Scoota",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://scoota.com/"
},
"bitly": {
"name": "Bitly",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://bitly.com/"
},
"programattik": {
"name": "Programattik",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.programattik.com/"
},
"cardlytics": {
"name": "Cardlytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.cardlytics.com/"
},
"digilant": {
"name": "Digilant",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.digilant.com/"
},
"site24x7": {
"name": "Site24x7",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.site24x7.com/"
},
"shortnews": {
"name": "ShortNews.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.shortnews.de/#"
},
"mrpdata": {
"name": "MRP",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://mrpdata.com/Account/Login?ReturnUrl=%2F"
},
"sortable": {
"name": "Sortable",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://sortable.com/"
},
"pnamic.com": {
"name": "pnamic.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"bumlam.com": {
"name": "bumlam.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"fluct": {
"name": "Fluct",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://corp.fluct.jp/"
},
"interyield": {
"name": "Interyield",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.advertise.com/publisher-solutions/"
},
"adguard": {
"name": "Adguard",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://adguard.com/"
},
"truoptik": {
"name": "Tru Optik",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://truoptik.com/"
},
"pmddby.com": {
"name": "pmddby.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"digitrust": {
"name": "DigiTrust",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.digitru.st/"
},
"adtheorent": {
"name": "Adtheorent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adtheorent.com/"
},
"narrative_io": {
"name": "Narrative I/O",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.narrative.io/"
},
"dcbap.com": {
"name": "dcbap.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"brealtime": {
"name": "bRealTime",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.brealtime.com/"
},
"donationtools": {
"name": "iRobinHood",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "http://www.irobinhood.org"
},
"hooklogic": {
"name": "HookLogic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://hooklogic.com/"
},
"ividence": {
"name": "Ividence",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ividence.com/home/"
},
"comprigo": {
"name": "comprigo",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.comprigo.com/"
},
"marvellous_machine": {
"name": "Marvellous Machine",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.marvellousmachine.net/"
},
"afgr2.com": {
"name": "afgr2.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"orc_international": {
"name": "ORC International",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://orcinternational.com/"
},
"active_agent": {
"name": "Active Agent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.active-agent.com/"
},
"yieldmo": {
"name": "Yieldmo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.yieldmo.com/"
},
"google_photos": {
"name": "Google Photos",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"vinted": {
"name": "Vinted",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.vinted.com/"
},
"typeform": {
"name": "Typeform",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.typeform.com/"
},
"amazon_cloudfront": {
"name": "Amazon CloudFront",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"adthink": {
"name": "Adthink",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adthink.com/"
},
"admachine": {
"name": "AdMachine",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://admachine.co/"
},
"brillen.de": {
"name": "brillen.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.brillen.de/"
},
"docler": {
"name": "Docler",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.doclerholding.com/en/about/companies/33/"
},
"viralgains": {
"name": "ViralGains",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.viralgains.com/"
},
"visualstudio.com": {
"name": "Visualstudio.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.visualstudio.com/"
},
"capitaldata": {
"name": "CapitalData",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.capitaldata.fr/"
},
"akamoihd.net": {
"name": "akamoihd.net",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"magnuum.com": {
"name": "magnuum.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adswizz": {
"name": "AdsWizz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adswizz.com/"
},
"venturead.com": {
"name": "venturead.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adstir": {
"name": "adstir",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://en.ad-stir.com/"
},
"optinmonster": {
"name": "OptinMonster",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://optinmonster.com/"
},
"storygize": {
"name": "Storygize",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.storygize.com/"
},
"spoutable": {
"name": "Spoutable",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://spoutable.com/"
},
"petametrics": {
"name": "LiftIgniter",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.liftigniter.com/"
},
"lucky_orange": {
"name": "Lucky Orange",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.luckyorange.com/"
},
"advertserve": {
"name": "AdvertServe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://secure.advertserve.com/"
},
"nano_interactive": {
"name": "Nano Interactive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nanointeractive.com/home/de"
},
"94j7afz2nr.xyz": {
"name": "94j7afz2nr.xyz",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"wordpress_ads": {
"name": "Wordpress Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://wordpress.com/"
},
"tubecorporate": {
"name": "Tube Corporate",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://tubecorporate.com/"
},
"ownpage": {
"name": "Ownpage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.ownpage.fr/index.en.html"
},
"dianomi": {
"name": "Diamoni",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dianomi.com/cms/"
},
"bitrix": {
"name": "Bitrix24",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bitrix24.com/"
},
"wirecard": {
"name": "Wirecard",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.wirecard.com/"
},
"segmento": {
"name": "Segmento",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://segmento.ru/en"
},
"datonics": {
"name": "Datonics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://datonics.com/"
},
"jivochat": {
"name": "JivoChat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.jivochat.com/"
},
"airbnb": {
"name": "Airbnb",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://affiliate.withairbnb.com/"
},
"widespace": {
"name": "Widespace",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.widespace.com/"
},
"platform360": {
"name": "Platform360",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.platform360.co/#home"
},
"kaeufersiegel.de": {
"name": "Käufersiegel",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.kaeufersiegel.de/"
},
"mapbox": {
"name": "Mapbox",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.mapbox.com/"
},
"startapp": {
"name": "StartApp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.startapp.com/"
},
"ipify": {
"name": "ipify",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.ipify.org/"
},
"keywee": {
"name": "Keywee",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://keywee.co/"
},
"rtbsuperhub.com": {
"name": "rtbsuperhub.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"bebi": {
"name": "Bebi Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bebi.com/"
},
"smarter_travel": {
"name": "Smarter Travel Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.smartertravel.com/"
},
"giphy.com": {
"name": "Giphy",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://giphy.com/"
},
"jetpack": {
"name": "Jetpack",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://jetpack.com/"
},
"acpm.fr": {
"name": "ACPM",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.acpm.fr/"
},
"olx-st.com": {
"name": "OLX",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.olx.com/"
},
"enreach": {
"name": "enreach",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://enreach.me/"
},
"sendpulse.com": {
"name": "SendPulse",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://sendpulse.com/"
},
"dotmetrics.net": {
"name": "Dotmetrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://dotmetrics.net/"
},
"bigmir.net": {
"name": "bigmir.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.bigmir.net/"
},
"onet.pl": {
"name": "onet",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.onet.pl/"
},
"yandex_advisor": {
"name": "Yandex.Advisor",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://sovetnik.yandex.ru/"
},
"dropbox.com": {
"name": "Dropbox",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.dropbox.com/"
},
"uptolike.com": {
"name": "Uptolike",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.uptolike.com/"
},
"digioh": {
"name": "Digioh",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://digioh.com/"
},
"caltat.com": {
"name": "Caltat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://caltat.com/"
},
"1dmp.io": {
"name": "1DMP",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://1dmp.io/"
},
"datamind.ru": {
"name": "DataMind",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://datamind.ru/"
},
"embed.ly": {
"name": "Embedly",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://embed.ly/"
},
"hybrid.ai": {
"name": "Hybrid.ai",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://hybrid.ai/"
},
"dynatrace.com": {
"name": "Dynatrace",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.dynatrace.com/"
},
"pluso.ru": {
"name": "Pluso",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://share.pluso.ru/"
},
"adsniper.ru": {
"name": "AdSniper",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://ad-sniper.com/"
},
"tovarro.com": {
"name": "Tovarro",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.tovarro.com/"
},
"crosspixel": {
"name": "Cross Pixel",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://crosspixel.net/"
},
"ucoz.net": {
"name": "uCoz",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.ucoz.net/"
},
"audtd.com": {
"name": "Auditorius",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.auditorius.ru/"
},
"gfycat.com": {
"name": "gfycat",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://gfycat.com/"
},
"squarespace.com": {
"name": "Squarespace",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.squarespace.com/"
},
"acestream.net": {
"name": "ActStream",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "http://www.acestream.org/"
},
"yapfiles.ru": {
"name": "yapfiles.ru",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.yapfiles.ru/"
},
"beachfront": {
"name": "Beachfront Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://beachfrontmedia.com/"
},
"dailymotion_advertising": {
"name": "Dailymotion Advertising",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://advertising.dailymotion.com/"
},
"kissmetrics.com": {
"name": "Kissmetrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.kissmetrics.com/"
},
"perfdrive.com": {
"name": "perfdrive.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"pendo.io": {
"name": "pendo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.pendo.io/"
},
"otm-r.com": {
"name": "OTM",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://otm-r.com/"
},
"beeline.ru": {
"name": "Beeline",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://moskva.beeline.ru/"
},
"wp.pl": {
"name": "wp.pl",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.wp.pl/"
},
"24smi": {
"name": "24СМИ",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://24smi.org/"
},
"linksynergy.com": {
"name": "Rakuten LinkShare",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://rakutenmarketing.com/affiliate"
},
"blueconic.net": {
"name": "BlueConic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.blueconic.com/"
},
"livetex.ru": {
"name": "LiveTex",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://livetex.ru/"
},
"seedtag.com": {
"name": "Seedtag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.seedtag.com/en/"
},
"hotlog.ru": {
"name": "HotLog",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://hotlog.ru/"
},
"mathjax.org": {
"name": "MathJax",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.mathjax.org/"
},
"quora.com": {
"name": "Quora",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://quora.com/"
},
"readspeaker.com": {
"name": "ReadSpeaker",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.readspeaker.com/"
},
"sanoma.fi": {
"name": "Sanoma",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://sanoma.com/"
},
"ad6media": {
"name": "ad6media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ad6media.fr/"
},
"iubenda.com": {
"name": "iubenda",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.iubenda.com/"
},
"cackle.me": {
"name": "Cackle",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://cackle.me/"
},
"giraff.io": {
"name": "Giraff.io",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.giraff.io/"
},
"feedburner.com": {
"name": "FeedBurner",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://feedburner.com"
},
"persgroep": {
"name": "De Persgroep",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.persgroep.be/"
},
"list.ru": {
"name": "Rating@Mail.Ru",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://list.ru/"
},
"retailrocket.net": {
"name": "Retail Rocket",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://retailrocket.net/"
},
"movable_ink": {
"name": "Movable Ink",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://movableink.com/"
},
"smyte": {
"name": "Smyte",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.smyte.com/"
},
"eperflex": {
"name": "Eperflex",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://eperflex.com/"
},
"ccm_benchmark": {
"name": "CCM Benchmark",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ccmbenchmark.com/"
},
"kataweb.it": {
"name": "KataWeb",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.kataweb.it/"
},
"bouncex": {
"name": "BounceX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bouncex.com/"
},
"userzoom.com": {
"name": "UserZoom",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.userzoom.com/"
},
"flocktory.com": {
"name": "Flocktory",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.flocktory.com/"
},
"messenger.com": {
"name": "Facebook Messenger",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://messenger.com"
},
"ooyala.com": {
"name": "Ooyala",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.ooyala.com/"
},
"naver.com": {
"name": "Naver",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.naver.com/"
},
"mailerlite.com": {
"name": "Mailerlite",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://www.mailerlite.com/"
},
"mediator.media": {
"name": "Mediator",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://mediator.media/"
},
"metaffiliation.com": {
"name": "Netaffiliation",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://netaffiliation.com/"
},
"mopinion.com": {
"name": "Mopinion",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://mopinion.com/"
},
"acint.net": {
"name": "Acint",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.acint.net/"
},
"adalyser.com": {
"name": "Adalyser",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.adalyser.com/"
},
"adblade.com": {
"name": "Adblade",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adblade.com/"
},
"adkontekst.pl": {
"name": "Adkontekst",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://netsprint.eu/"
},
"admitad.com": {
"name": "Admitad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.admitad.com/en/#"
},
"affec.tv": {
"name": "Affec.tv",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://affectv.com/"
},
"airpr.com": {
"name": "AirPR",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://airpr.com/"
},
"allo-pages.fr": {
"name": "Allo-Pages",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.allo-pages.fr/"
},
"apa.at": {
"name": "Apa",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.apa.at/Site/index.de.html"
},
"artlebedev.ru": {
"name": "Art.Lebedev",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.artlebedev.ru/"
},
"awin1.com": {
"name": "Awin1",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.awin.com"
},
"bannerflow.com": {
"name": "Bannerflow",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bannerflow.com/"
},
"beeketing.com": {
"name": "Beeketing",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://beeketing.com/"
},
"bemobile.ua": {
"name": "Bemobile",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://bemobile.ua/en/"
},
"betweendigital.com": {
"name": "Between Digital",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://betweendigital.ru/ssp"
},
"bid.run": {
"name": "Bid.Run",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://bid.run/"
},
"bigcommerce.com": {
"name": "BigCommerce",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.bigcommerce.com/"
},
"blogfoster.com": {
"name": "Blogfoster",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.blogfoster.com/"
},
"btttag.com": {
"name": "Btttag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.bluetriangletech.com/"
},
"bugherd.com": {
"name": "BugHerd",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://bugherd.com"
},
"cbsi.com": {
"name": "CBS Interactive",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.cbsinteractive.com/"
},
"cdnvideo.com": {
"name": "CDNvideo",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cdnvideo.com/"
},
"clearbit.com": {
"name": "Clearbit",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://clearbit.com/"
},
"cnetcontent.com": {
"name": "Cnetcontent",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://cnetcontent.com/"
},
"cnzz.com": {
"name": "Umeng",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.umeng.com/"
},
"condenastdigital.com": {
"name": "Condé Nast Digital",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.condenast.com/"
},
"connatix.com": {
"name": "Connatix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://connatix.com/"
},
"contentexchange.me": {
"name": "Content Exchange",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.contentexchange.me/"
},
"dailymail.co.uk": {
"name": "Daily Mail",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.dailymail.co.uk/home/index.html"
},
"sociaplus.com": {
"name": "SociaPlus",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://sociaplus.com/"
},
"salesmanago.pl": {
"name": "SALESmanago",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.salesmanago.com/"
},
"zebestof.com": {
"name": "Zebestof",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zebestof.com/en/home/"
},
"wysistat.com": {
"name": "Wysistat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://wysistat.net/"
},
"o2.pl": {
"name": "o2.pl",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.o2.pl/"
},
"omniconvert.com": {
"name": "Omniconvert",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.omniconvert.com/"
},
"optinproject.com": {
"name": "OptinProject",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.optincollect.com/en"
},
"ora.tv": {
"name": "Ora.TV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ora.tv/"
},
"owox.com": {
"name": "OWOX",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.owox.com/"
},
"peer5.com": {
"name": "Peer5",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.peer5.com/"
},
"pepper.com": {
"name": "Pepper",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.pepper.com/"
},
"pladform.ru": {
"name": "Pladform",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://distribution.pladform.ru/"
},
"playbuzz.com": {
"name": "Playbuzz",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.playbuzz.com/"
},
"powr.io": {
"name": "POWr",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.powr.io/"
},
"prismamediadigital.com": {
"name": "Prisma Media Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.pmdrecrute.com/"
},
"privy.com": {
"name": "Privy",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://privy.com/"
},
"pscp.tv": {
"name": "Periscope",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.pscp.tv/"
},
"push.world": {
"name": "Push.world",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://push.world/en"
},
"qq.com": {
"name": "qq.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.qq.com/"
},
"quartic.pl": {
"name": "Quartic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.quarticon.com/"
},
"rcs.it": {
"name": "RCS",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.rcsmediagroup.it/"
},
"recettes.net": {
"name": "Recettes.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.recettes.net/"
},
"redcdn.pl": {
"name": "redGalaxy CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.atendesoftware.pl/"
},
"reembed.com": {
"name": "reEmbed",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.reembed.com/"
},
"reevoo.com": {
"name": "Reevoo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.reevoo.com/en/"
},
"republer.com": {
"name": "Republer",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://republer.com/"
},
"resultspage.com": {
"name": "SLI Systems",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.sli-systems.com/"
},
"ringier.ch": {
"name": "Ringier",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://ringier.ch/en"
},
"riskfield.com": {
"name": "Riskfield",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.riskified.com/"
},
"salesforce.com": {
"name": "Salesforce",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.salesforce.com/eu/"
},
"samba.tv": {
"name": "Samba TV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://samba.tv/"
},
"sape.ru": {
"name": "Sape",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"schibsted": {
"name": "Schibsted Media Group",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.schibsted.com/"
},
"shopifycdn.com": {
"name": "Shopify CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.shopify.com/"
},
"shopifycloud.com": {
"name": "Shopify Cloud",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.shopify.com/"
},
"orange_france": {
"name": "Orange France",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.orange.fr/"
},
"le_monde.fr": {
"name": "Le Monde.fr",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.lemonde.fr/"
},
"accengage": {
"name": "Accengage",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.accengage.com/"
},
"polar.me": {
"name": "Polar",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://polar.me/"
},
"nekudo.com": {
"name": "Nekudo",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://nekudo.com/"
},
"wikia-services.com": {
"name": "Wikia Services",
- "categoryId": 8
+ "categoryId": 8,
+ "url": " http://www.wikia.com/fandom"
},
"baidu_static": {
"name": "Baidu Static",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.baidu.com/"
},
"allegro.pl": {
"name": "Allegro",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://allegro.pl"
},
"pushwoosh.com": {
"name": "Pushwoosh",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.pushwoosh.com/"
},
"instart_logic": {
"name": "Instart Logic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.instartlogic.com/"
},
"the_guardian": {
"name": "The Guardian",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.theguardian.com/"
},
"onfocus.io": {
"name": "OnFocus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://onfocus.io/"
},
"fastpic.ru": {
"name": "FastPic",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://fastpic.ru/"
},
"vk.com": {
"name": "Vk.com",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://vk.com/"
},
"fileserve": {
"name": "FileServe",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://fileserve.com/"
},
"monero_miner": {
"name": "Monero Miner",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://devappgrant.space/"
},
"gstatic": {
"name": "Google Static",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"google_servers": {
"name": "Google Servers",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://support.google.com/faqs/answer/174717?hl=en"
},
"google_fonts": {
"name": "Google Fonts",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://fonts.google.com/"
},
"google_custom_search": {
"name": "Google Custom Search Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://developers.google.com/custom-search-ads/"
},
"yieldlove": {
"name": "Yieldlove",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.yieldlove.com/"
},
"intermarkets.net": {
"name": "Intermarkets",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://intermarkets.net/"
},
"eproof": {
"name": "eProof",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.eproof.com/"
},
"combotag": {
"name": "ComboTag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.combotag.com/"
},
"ziff_davis": {
"name": "Ziff Davis",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ziffdavis.com/"
},
"twitch_cdn": {
"name": "Twitch CDN",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.twitch.tv/"
},
"disqus_ads": {
"name": "Disqus Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://disqusads.com/"
},
"typography.com": {
"name": "Webfonts by Hoefler&Co",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.typography.com/"
},
"bbci": {
"name": "BBC",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://bbc.co.uk"
},
"puserving.com": {
"name": "puserving.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"piguiqproxy.com": {
"name": "piguiqproxy.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"relap": {
"name": "Relap",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://relap.io/"
},
"speedcurve": {
"name": "SpeedCurve",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://speedcurve.com/"
},
"curse.com": {
"name": "Curse",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.curse.com/"
},
"taobao": {
"name": "Taobao",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://world.taobao.com/"
},
"zimbio.com": {
"name": "Zimbio",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.zimbio.com/"
},
"sharepoint": {
"name": "Microsoft SharePoint",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://products.office.com/en-us/sharepoint/sharepoint-online-collaboration-software"
},
"openstat": {
"name": "OpenStat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.openstat.ru/"
},
"ymetrica1.com": {
"name": "ymetrica1.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"foresee": {
"name": "Foresee",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.foresee.com/"
},
"hotdogsandads.com": {
"name": "hotdogsandads.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"footprintdns.com": {
"name": "Footprint DNS",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"velocecdn.com": {
"name": "velocecdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"unpkg.com": {
"name": "unpkg",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://unpkg.com/#/"
},
"mailchimp": {
"name": "MailChimp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://mailchimp.com/"
},
"xnxx_cdn": {
"name": "xnxx CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.xnxx.com"
},
"glganltcs.space": {
"name": "glganltcs.space",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"roblox": {
"name": "Roblox",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.roblox.com/"
},
"nbc_news": {
"name": "NBC News",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.nbcnews.com/"
},
"4chan": {
"name": "4Chan",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.4chan.org/"
},
"rakuten_display": {
"name": "Rakuten Display",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://rakutenmarketing.com/display"
},
"notify": {
"name": "Notify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://notify.ag/en/"
},
"loadercdn.com": {
"name": "loadercdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"dyncdn.me": {
"name": "dyncdn.me",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"amgload.net": {
"name": "amgload.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"statsy.net": {
"name": "statsy.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"digital_nomads": {
"name": "Digital Nomads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://dnomads.net/"
},
"superfastcdn.com": {
"name": "superfastcdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"i10c.net": {
"name": "i10c.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"fap.to": {
"name": "Imagefap",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"nyt.com": {
"name": "The New York Times",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.nytimes.com/"
},
"datadome": {
"name": "DataDome",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://datadome.co/"
},
"adrecover": {
"name": "AdRecover",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adrecover.com/"
},
"navegg_dmp": {
"name": "Navegg DMP",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://navdmp.com/"
},
"adverticum": {
"name": "Adverticum",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adverticum.net/english/"
},
"auth0": {
"name": "Auth0 Inc.",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://auth0.com/"
},
"kampyle": {
"name": "Kampyle",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.kampyle.com/"
},
"st-hatena": {
"name": "St-Hatena",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.hatena.ne.jp/"
},
"wonderpush": {
"name": "WonderPush",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.wonderpush.com/"
},
"yieldbot": {
"name": "Yieldbot",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.yieldbot.com/"
},
"strossle": {
"name": "Strossle",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://strossle.com/"
},
"comscore": {
"name": "ComScore, Inc.",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.comscore.com/"
},
"datds.net": {
"name": "datds.net",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"uuidksinc.net": {
"name": "uuidksinc.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"camakaroda.com": {
"name": "camakaroda.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"khzbeucrltin.com": {
"name": "khzbeucrltin.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"defpush.com": {
"name": "defpush.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"webedia": {
"name": "Webedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://fr.webedia-group.com/"
},
"oath_inc": {
"name": "Oath, Inc.",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.oath.com/"
},
"grapeshot": {
"name": "Grapeshot",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.grapeshot.com/"
},
"cnbc": {
"name": "CNBC",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.cnbc.com/"
},
"statuspage.io": {
"name": "Statuspage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.statuspage.io/"
},
"adalliance.io": {
"name": "Ad Alliance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ad-alliance.de/"
},
"pvclouds.com": {
"name": "pvclouds.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"borrango.com": {
"name": "borrango.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"shutterstock": {
"name": "Shutterstock",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.shutterstock.com/"
},
"xxxlutz": {
"name": "XXXLutz",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.xxxlutz.de/"
},
"dreamlab.pl": {
"name": "DreamLab.pl",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.dreamlab.pl/"
},
"mux_inc": {
"name": "Mux, Inc.",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://mux.com/"
},
"dmg_media": {
"name": "DMG Media",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.dmgmedia.co.uk/"
},
"admantx.com": {
"name": "ADmantX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.admantx.com/"
},
"tail_target": {
"name": "Tail",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.tail.digital/"
},
"contentful_gmbh": {
"name": "Contentful GmbH",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.contentful.com/"
},
"snigelweb": {
"name": "SnigelWeb, Inc.",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.snigelweb.com/"
},
"github_apps": {
"name": "GitHub Apps",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"quantum_metric": {
"name": "Quantum Metric",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.quantummetric.com/"
},
"the_sun": {
"name": "The Sun",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.thesun.co.uk/"
},
"ancestry_cdn": {
"name": "Ancestry CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.ancestry.com/"
},
"go.com": {
"name": "go.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "go.com"
},
"etsystatic": {
"name": "Etsy CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": ""
},
"latimes": {
"name": "Los Angeles Times",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.latimes.com/"
},
"sovrn_viewability_solutions": {
"name": "Sovrn Viewability Solutions",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sovrn.com/meridian/onscroll-viewability/"
},
"espn_cdn": {
"name": "ESPN CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.espn.com/"
},
"themoviedb": {
"name": "The Movie DB",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.themoviedb.org/"
},
"netsprint_audience": {
"name": "Netsprint Audience",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://audience.netsprint.eu/"
},
"braze": {
"name": "Braze",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.braze.com/"
},
"experian": {
"name": "Experian",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.experian.com/"
},
"foxnews_static": {
"name": "Fox News CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": ""
},
"creative_commons": {
"name": "Creative Commons",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://creativecommons.org/"
},
"cloudimage.io": {
"name": "Cloudimage.io",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cloudimage.io/en/home"
},
"level3_communications": {
"name": "Level 3 Communications, Inc.",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.level3.com/en/"
},
"boudja.com": {
"name": "boudja.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"bwbx.io": {
"name": "Bloomberg CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.bloomberg.com/"
},
"tororango.com": {
"name": "tororango.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"interedy.info": {
"name": "interedy.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"lottex_inc": {
"name": "vidcpm.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"lyuoaxruaqdo.com": {
"name": "lyuoaxruaqdo.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"github_pages": {
"name": "Github Pages",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://pages.github.com/"
},
"bloomreach": {
"name": "BloomReach",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bloomreach.com/en"
},
"facebook_cdn": {
"name": "Facebook CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.facebook.com"
},
"amazon": {
"name": "Amazon.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.amazon.com"
},
"amazon_adsystem": {
"name": "Amazon Adsystem",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://advertising.amazon.com/"
},
"amazon_cdn": {
"name": "Amazon CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.amazon.com"
},
"iab_consent": {
"name": "IAB Consent",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://iabtechlab.com/standards/gdpr-transparency-and-consent-framework/"
},
"cookiebot": {
"name": "Cookiebot",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.cookiebot.com/en/"
},
"optanaon": {
"name": "Optanaon by OneTrust",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.cookielaw.org/"
},
"bluecore": {
"name": "Bluecore",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bluecore.com/"
},
"adlabs": {
"name": "AdLabs",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adlabs.ru/"
},
"admo.tv": {
"name": "Admo.TV",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://admo.tv/"
},
"vntsm.com": {
"name": "Venatus Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.venatusmedia.com/"
},
"modulepush.com": {
"name": "modulepush.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"express.co.uk": {
"name": "express.co.uk",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.express.co.uk/"
},
"trafmag.com": {
"name": "TrafMag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://trafmag.com/"
},
"admixer.net": {
"name": "Admixer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://admixer.net/"
},
"coll2onf.com": {
"name": "coll2onf.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"reuters_media": {
"name": "Reuters media",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://reuters.com"
},
"ad-delivery.net": {
"name": "ad-delivery.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"videoplayerhub.com": {
"name": "videoplayerhub.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"evergage.com": {
"name": "Evergage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.evergage.com"
},
"zdassets.com": {
"name": "Zendesk CDN",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.zendesk.com/"
},
"sovrn_onetag": {
"name": "Sovrn OneTag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://community.sovrn.com/s/article/OneTag-Implementation-Guide?language=en_US"
},
"revenue_hits": {
"name": "RevenueHits",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.revenuehits.com/"
},
"amazon_video": {
"name": "Amazon Instant Video",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.amazon.com"
},
"kinja.com": {
"name": "Kinja",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://kinja.com/"
},
"kinja_static": {
"name": "Kinja Static",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://kinja.com/"
},
"coinhive": {
"name": "Coinhive",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://coinhive.com/"
},
"snapchat": {
"name": "Snapchat For Business",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.snapchat.com/"
},
"early_birds": {
"name": "Early Birds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.early-birds.fr/"
},
"pushno.com": {
"name": "pushno.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"beampulse.com": {
"name": "BeamPulse",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://en.beampulse.com/"
},
"discord": {
"name": "Discord",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://discordapp.com/"
},
"medialead": {
"name": "Medialead",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.medialead.de/"
},
"r_advertising": {
"name": "R-Advertising",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.r-advertising.com/"
},
"storify": {
"name": "Storify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://storify.com/"
},
"eulerian": {
"name": "Eulerian Technologies",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.eulerian.com/"
},
"steelhouse": {
"name": "Steel House Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://steelhouse.com/"
},
"stalluva.pro": {
"name": "stalluva.pro",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"ie8eamus.com": {
"name": "ie8eamus.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"pageanalytics.space": {
"name": "pageanalytics.space",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"zmctrack.net": {
"name": "zmctrack.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"urban_airship": {
"name": "Urban Airship",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.urbanairship.com/"
},
"trueanthem": {
"name": "True Anthem",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.trueanthem.com/"
},
"insider": {
"name": "Insider",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://useinsider.com/"
},
"joinhoney": {
"name": "Honey",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.joinhoney.com/"
},
"ionicframework.com": {
"name": "Ionic",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://ionicframework.com/"
},
"loadsource.org": {
"name": "loadsource.org",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adbetnet.com": {
"name": "adbetnet",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adbetnet.com/"
},
"pstatic.net": {
"name": "Naver CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.naver.com/"
},
"zukxd6fkxqn.com": {
"name": "zukxd6fkxqn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"treasuredata": {
"name": "Treasure Data",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.treasuredata.com/"
},
"yandex_direct": {
"name": "Yandex.Direct",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://direct.yandex.com/"
},
"ispot.tv": {
"name": "iSpot.tv",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ispot.tv/"
},
"microad": {
"name": "MicroAd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.microad.co.jp/"
},
"onetrust": {
"name": "OneTrust",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.onetrust.com/"
},
"undercomputer.com": {
"name": "undercomputer.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"popin.cc": {
"name": "popIn",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.popin.cc/"
},
"fout.jp": {
"name": "FreakOut",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.fout.co.jp/"
},
"baletingo.com": {
"name": "baletingo.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"arcpublishing": {
"name": "Arc Publishing",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.arcpublishing.com/"
},
"adxprtz.com": {
"name": "adxprtz.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"gettyimages": {
"name": "Getty Images",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.gettyimages.com/"
},
"distroscale": {
"name": "Distroscale",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.distroscale.com/"
},
"hubvisor.io": {
"name": "Hubvisor",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://hubvisor.io/"
},
"inboxsdk.com": {
"name": "Inbox SDK",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.inboxsdk.com/"
},
"maxymiser": {
"name": "Oracle Maxymiser",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.oracle.com/marketingcloud/products/testing-and-optimization/index.html"
},
"vacaneedasap.com": {
"name": "vacaneedasap.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"cdnsure.com": {
"name": "cdnsure.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"pub.network": {
"name": "pub.network",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"noaa.gov": {
"name": "National Oceanic and Atmospheric Administration",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://noaa.gov/"
},
"o12zs3u2n.com": {
"name": "o12zs3u2n.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"nyacampwk.com": {
"name": "nyacampwk.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"noop.style": {
"name": "noop.style",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"poirreleast.club": {
"name": "poirreleast.club",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"newsupdatedir.info": {
"name": "newsupdatedir.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"bluenewsupdate.info": {
"name": "bluenewsupdate.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"prebid": {
"name": "Prebid",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://prebid.org/"
},
"appcues": {
"name": "Appcues",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.appcues.com/"
},
"ninja_access_analysis": {
"name": "Ninja Access Analysis",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.ninja.co.jp/analysis/"
},
"moz": {
"name": "Moz",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://moz.com/"
},
"didomi": {
"name": "Didomi",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.didomi.io/en/"
},
"licensebuttons.net": {
"name": "licensebuttons.net",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://licensebuttons.net/"
},
"line_apps": {
"name": "LINE Apps",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://line.me/en-US/"
},
"mediav": {
"name": "MediaV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.mediav.com/"
},
"adobe_login": {
"name": "Adobe Login",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.adobe.com/"
},
"runmewivel.com": {
"name": "runmewivel.com",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"turner": {
"name": "Turner",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.turner.com/"
},
"digital.gov": {
"name": "Digital.gov",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://digital.gov/"
},
"datatables": {
"name": "DataTables",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://datatables.net/"
}
},
"trackerDomains": {
diff --git a/client/src/helpers/whotracksme.js b/client/src/helpers/whotracksme.js
deleted file mode 100644
index 8d86a9c6..00000000
--- a/client/src/helpers/whotracksme.js
+++ /dev/null
@@ -1,44 +0,0 @@
-import trackersDb from './whotracksmedb.json';
-
-/**
- @typedef TrackerData
- @type {object}
- @property {string} id - tracker ID.
- @property {string} name - tracker name.
- @property {number} category - tracker category.
- */
-
-/**
- * Gets tracker data in the whotracksme database
- *
- * @param {String} domainName domain name to check
- * @returns {TrackerData} tracker data or null if no matching tracker found
- */
-export const getTrackerData = (domainName) => {
- if (!domainName) {
- return null;
- }
-
- const parts = domainName.split(/\./g).reverse();
- let hostToCheck = '';
-
- // Check every subdomain
- for (let i = 0; i < parts.length; i += 1) {
- hostToCheck = parts[i] + (i > 0 ? '.' : '') + hostToCheck;
- const trackerId = trackersDb.trackerDomains[hostToCheck];
-
- if (trackerId) {
- const trackerData = trackersDb.trackers[trackerId];
- const categoryName = trackersDb.categories[trackerData.categoryId];
-
- return {
- id: trackerId,
- name: trackerData.name,
- category: categoryName,
- };
- }
- }
-
- // No tracker found for the specified domain
- return null;
-};
diff --git a/issue_template.md b/issue_template.md
index 2939e0c5..bb020c5e 100644
--- a/issue_template.md
+++ b/issue_template.md
@@ -29,7 +29,7 @@
| Description | Value |
| -------------- | ------------ |
-| Version of AdGuard DNS server:| (e.g. v1.0)
+| Version of AdGuard Home server:| (e.g. v1.0)
| How did you setup DNS configuration:| (System/Router/IoT)
| If it's a router or IoT, please write device model:| (e.g. Raspberry Pi 3 Model B)
| Operating system and version:| (e.g. Ubuntu 18.04.1)
diff --git a/openapi.yaml b/openapi.yaml
index 0b11f3fe..16421815 100644
--- a/openapi.yaml
+++ b/openapi.yaml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
- title: 'AdGuard DNS'
- description: 'Control AdGuard DNS server with this API'
+ title: 'AdGuard Home'
+ description: 'Control AdGuard Home server with this API'
version: 0.0.0
basePath: /control
schemes:
diff --git a/scripts/whotracksme/.gitignore b/scripts/whotracksme/.gitignore
index 28f795e4..ffcf3678 100644
--- a/scripts/whotracksme/.gitignore
+++ b/scripts/whotracksme/.gitignore
@@ -1,2 +1,2 @@
node_modules
-whotracksmedb.json
\ No newline at end of file
+whotracksme.json
\ No newline at end of file
diff --git a/scripts/whotracksme/README.md b/scripts/whotracksme/README.md
index 0b65de0d..6ced7ac1 100644
--- a/scripts/whotracksme/README.md
+++ b/scripts/whotracksme/README.md
@@ -6,7 +6,7 @@ A simple script that converts the Ghostery/Cliqz trackers database to a json for
```
yarn install
-yarn index.js
+node index.js
```
You'll find the output in the `whotracksmedb.json` file.
\ No newline at end of file
diff --git a/scripts/whotracksme/index.js b/scripts/whotracksme/index.js
index 288b2179..76a44bd4 100644
--- a/scripts/whotracksme/index.js
+++ b/scripts/whotracksme/index.js
@@ -3,7 +3,7 @@ const sqlite3 = require('sqlite3').verbose();
const downloadFileSync = require('download-file-sync');
const INPUT_SQL_URL = 'https://raw.githubusercontent.com/cliqz-oss/whotracks.me/master/whotracksme/data/assets/trackerdb.sql';
-const OUTPUT_PATH = 'whotracksmedb.json';
+const OUTPUT_PATH = 'whotracksme.json';
console.log('Downloading ' + INPUT_SQL_URL);
let trackersDbSql = downloadFileSync(INPUT_SQL_URL).toString();
@@ -50,7 +50,8 @@ db.serialize(function() {
whotracksme.trackers[row.id] = {
"name": row.name,
- "categoryId": row.category_id
+ "categoryId": row.category_id,
+ "url": row.website_url
};
});
diff --git a/version.json b/version.json
index 26fa476e..59d4ae7c 100644
--- a/version.json
+++ b/version.json
@@ -8,4 +8,4 @@
"download_linux_arm": "https://github.com/AdguardTeam/AdguardDNS/releases/download/v0.1/AdguardDNS_0.1_linux_arm.tar.gz",
"download_linux_arm64": "https://github.com/AdguardTeam/AdguardDNS/releases/download/v0.1/AdguardDNS_0.1_linux_arm64.tar.gz",
"selfupdate_min_version": "v0.0"
-}
+}
\ No newline at end of file