Home CFNC.org
CFNC.org
Cancel

CFNC.org

1
2
3
4
5
6
7
8
9
10
11
12
/* CFNC */
if (
    /^(.+\.)?cfnc\.org$/.test(host) || // "cfnc.org" & ".cfnc.org"
    dnsDomainIs(host, "maxcdn.bootstrapcdn.com") ||
    dnsDomainIs(host, "cdnjs.cloudflare.com") ||
    dnsDomainIs(host, "code.jquery.com") ||
    dnsDomainIs(host, "use.fontawesome.com") ||
    dnsDomainIs(host, "api.humanesources.com") ||
    dnsDomainIs(host, ".ncresidency.org") ||
    dnsDomainIs(host, "studentaid.gov") ||
    dnsDomainIs(host, "fsaid.ed.gov")
) return "DIRECT";

You may not need all of the following Google exclusions depending on your current PAC file entries.

1
2
3
4
5
6
7
8
9
10
11
/* CFNC Google Needs */
if (
    dnsDomainIs(host, "maps.googleapis.com") ||
    dnsDomainIs(host, "www.google.com") ||
    dnsDomainIs(host, "fonts.googleapis.com") ||
    dnsDomainIs(host, "ajax.googleapis.com") ||
    dnsDomainIs(host, "gstatic.com") ||
    dnsDomainIs(host, "cse.google.com") ||
    dnsDomainIs(host, "analytics.google.com") ||
    dnsDomainIs(host, "google-analytics.com") 
) return "DIRECT";