global_privacy_control.html (357B)
1 <!doctype html> 2 <html> 3 <meta name="viewport" content="width=device-width" /> 4 <body> 5 <script type="text/javascript"> 6 const gpcValue = navigator.globalPrivacyControl; 7 if (gpcValue) { 8 document.write("<p>GPC is enabled.</p>"); 9 } else { 10 document.write("<p>GPC not enabled.</p>"); 11 } 12 </script> 13 </body> 14 </html>