Created
February 27, 2024 21:18
-
-
Save thyngster/271926b8e150482aa8c14d8184ed8814 to your computer and use it in GitHub Desktop.
Privacy Sandbox Relevance & Measurement APIs Check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------------------------------------------------- | |
// Privacy Sandbox Relevance & Measurement APIs Check | |
// ---------------------------------------------------------------------- | |
const privacySandboxApisAvailability = { | |
topics: 'browsingTopics'in document ? true : false, | |
attributionReporting: document.featurePolicy.allowsFeature('attribution-reporting') ? true : false, | |
protectedAudience: 'runAdAuction'in navigator ? true : false, | |
fencedFrames: 'HTMLFencedFrameElement'in window ? true : false, | |
sharedStorage: 'sharedStorage'in window ? true : false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment