Tested tool guide
Tested browser tools
Checked August 16, 2026
What Consent Mode Tester does, with a checked example
Consent Mode v2 does not stop Google from collecting data; it decides what shape that data takes. This tool takes the consent snippet your site runs - the gtag consent calls with their granted and denied states - and reports what each Google tag will do under every visitor choice: full collection, restricted cookieless pings, or disabled features. The result that surprises people most: with ad_storage and analytics_storage denied, the tags still fire. They send cookieless hits carrying the IP address, user agent, and page URL so Google can model conversions, so denied never means nothing is sent.
Worked example
A concrete input and expected output from the current implementation.
Input
gtag('consent', 'default', {
ad_storage: 'denied',
analytics_storage: 'denied',
ad_user_data: 'denied',
ad_personalization: 'denied'
}); ->
Expected output
All four v2 signals are denied: full restricted mode.
ad_storage denied: ad cookies are not set. Ads tags still send cookieless pings carrying the IP address, user agent, and page URL.
analytics_storage denied: no analytics cookies are set; hits are sent without identifiers for behavioral modeling.
ad_user_data denied: no user data is forwarded to Google for advertising.
ad_personalization denied: personalized advertising and remarketing are disabled.
Requests fire in all denied states; denied consent removes cookies and personalization, not traffic.
Each of the four v2 signals maps to one documented behavior, so a default of all-denied yields the restricted-mode profile: requests still go out, cookies do not. Users expect a fully silent tag and misread this as a broken setup; it is the intended design that makes conversion modeling possible.