admin管理员组文章数量:1339463
I am working to implement the new cookie policy pliance as per data protection rules for all panies operating in the EU according to which user has to be able to refuse/accept all but required cookies when he is using any website. In my client's website I can see the following third party cookies are getting stored.
- _ga - my-site
- _gid - my-site
- __ncuid - .doubleclick
- DSID - .doubleclick
- IDE - .doubleclick
- 1P_JAR - .google.be
- NID - .google.be
- CONSENT -.google.be
- NID - .google
- AID - .google
- CONSENT - .google
- 1P_JAR - .google
- DV - www.google.be
- OTZ - www.google
- locale - my-site
- anonymousUserId - my-site
- SESSID - my-site
- JSESSIONID - my-site
- TS01c70fa1 - my-site
In the above mentioned list few cookies are Google Analytics cookies intiated by Google tag manager. I have handled them. But all the cookies with domain 'Google' and '.doubleclick' I have no control over them? And I am not able to understand how are they getting stored.
I am working to implement the new cookie policy pliance as per data protection rules for all panies operating in the EU according to which user has to be able to refuse/accept all but required cookies when he is using any website. In my client's website I can see the following third party cookies are getting stored.
- _ga - my-site
- _gid - my-site
- __ncuid - .doubleclick
- DSID - .doubleclick
- IDE - .doubleclick
- 1P_JAR - .google.be
- NID - .google.be
- CONSENT -.google.be
- NID - .google.
- AID - .google.
- CONSENT - .google.
- 1P_JAR - .google.
- DV - www.google.be
- OTZ - www.google.
- locale - my-site
- anonymousUserId - my-site
- SESSID - my-site
- JSESSIONID - my-site
- TS01c70fa1 - my-site
In the above mentioned list few cookies are Google Analytics cookies intiated by Google tag manager. I have handled them. But all the cookies with domain 'Google' and '.doubleclick' I have no control over them? And I am not able to understand how are they getting stored.
Share Improve this question edited Jul 1, 2020 at 3:08 Donald Duck is with Ukraine 8,91223 gold badges79 silver badges102 bronze badges asked Jun 15, 2018 at 6:53 Vikas DubeyVikas Dubey 3403 gold badges6 silver badges15 bronze badges 2- Did you get any solution on this? How did you handle google analytics cookies? – Ajinkya Commented May 6, 2020 at 12:00
- About the "how", using an iframe from another domain has it's own domain related cookies, that way this is possible. But sadly I' m searching for a solution to control their cookie permissions either... – René Baudisch Commented Dec 28, 2021 at 22:25
5 Answers
Reset to default 4Instead of blocking cookies that are being/were set, it's easier to not load i.e. the GTM script until after the user has consented to the cookie policy.
It seems to me that most posters here misunderstood the question that was initially asked. The initial poster does not have any issues with _ga or _gid which are technically first-party cookies and are easy to block. In fact, he even mentions he has 'handled them.' The following answers are therefore not particularly helpful.
Instead, it appears that the initial poster is experiencing issues with cookies like 1P_JAR and AID which are true third-party cookies. These cookies are placed on your browser whenever you log into your Google Account and are, when bined with other cookies, effectively tracking your activity across thousands of websites.
From what I can determine - these third-party cookies are set through most implementations of Google Analytics. If you use a handy extension such as Sybu JavaScript Blocker, you can narrow down which scripts are causing your client issues. In the case of Google Analytics, you can modify your implementation in order to prevent these third-party cookies from appearing.
To block third-party cookies, find a JavaScript code that is setting third-party cookies and:
- change type attribute from text/javascript to text/plain (if type attribute missing, just add it)
- add data-cookiescript attribute and set it to accepted
All JavaScript with such attribute changes will only execute if user agreed with Cookie Policy.
Go here for details: https://cookie-script./how-to-block-third-party-cookies.html
Hope this helps !!
To disable _ga
and _gid
cookies do add the following code on your headers.php:
<script>
if(document.cookie.split('; ').findIndex(x => x.split('=')[0] == 'cookiename') >= 0)
{
// some code
} else {
window["ga-disable-UA-7358061-1"] = true;
window["gid-disable-UA-7358061-1"] = true;
}
</script>
A little bit old but I think you deserve a answer that works:
Step 1: Like thomaux already wrote: Don't load/execute the script. You can provide the code with the trick from vizsatiz without executing but add an id to the html element like GA_SCRIPT
.
Step 2: Show the cookie banner.
Step 3: After the user accepted, load the code from the html element with document.getElementById("GA_Script").innerText
and execute with eval
.
Worked for me.
Alternatively you could write the GA script code into your code and execute it as a callback.
本文标签: google chromeDisable third party cookies using JavaScriptStack Overflow
版权声明:本文标题:google chrome - Disable third party cookies using JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743587622a2506676.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论