RGPD friendly cookie manager
fork from : https://github.com/AmauriC/tarteaucitron.js.git

Amauri CHAMPEAUX 342da0a94e Merge pull request #312 from mobyou/patch-2 6 tahun lalu
css 37f2aedad3 Remove duplicate css properties 6 tahun lalu
lang f8bf5a71f5 grammatical gender match correction 6 tahun lalu
LICENSE 63dc5d2889 Initial commit 10 tahun lalu
README.md a9aa135d60 Wording cookie name 6 tahun lalu
advertising.js 0d291e2a3c New option: show a message if an adblocker is detected 10 tahun lalu
package.json 118cee2534 Remove npm dependencie Fix #257 #258 6 tahun lalu
tarteaucitron.js 4020cdb12d HTML semantics 6 tahun lalu
tarteaucitron.services.js d514890675 Merge pull request #278 from OwnWeb/fix/matomo-first-party-cookies 6 tahun lalu

README.md

npm GitHub contributors

tarteaucitron.js

Comply to the european cookie law is simple with the french tarte au citron.

What is this script?

The european cookie law regulates the management of cookies and you should ask your visitors their consent before exposing them to third party services.

Clearly this script will:

  • Disable all services by default,
  • Display a banner on the first page view and a small one on other pages,
  • Display a panel to allow or deny each services one by one,
  • Activate services on the second page view if not denied,
  • Store the consent in a cookie for 365 days.

Bonus:

  • Load service when user click on Allow (without reload of the page),
  • Incorporate a fallback system (display a link instead of social button and a static banner instead of advertising).

Installation guide

Visit opt-out.ferank.eu

How to use

<script type="text/javascript" src="/tarteaucitron/tarteaucitron.js"></script>

<script type="text/javascript">
tarteaucitron.init({
    "privacyUrl": "", /* Privacy policy url */

    "hashtag": "#tarteaucitron", /* Open the panel with this hashtag */
    "cookieName": "tarteaucitron", /* Cookie name */
    
    "orientation": "top", /* Banner position (top - bottom) */
    "showAlertSmall": true, /* Show the small banner on bottom right */
    "cookieslist": true, /* Show the cookie list */

    "adblocker": false, /* Show a Warning if an adblocker is detected */
    "AcceptAllCta" : true, /* Show the accept all button when highPrivacy on */
    "highPrivacy": false, /* Disable auto consent */
    "handleBrowserDNTRequest": false, /* If Do Not Track == 1, disallow all */

    "removeCredit": false, /* Remove credit link */
    "moreInfoLink": true, /* Show more info link */
    "useExternalCss": false, /* If false, the tarteaucitron.css file will be loaded */

    //"cookieDomain": ".my-multisite-domaine.fr", /* Shared cookie for subdomain website */
                          
    "readmoreLink": "/cookiespolicy" /* Change the default readmore link pointing to opt-out.ferank.eu */
});
</script>

Create custom service

tarteaucitron.services.mycustomservice = {
  "key": "mycustomservice",
  "type": "social|analytic|ads|video|support",
  "name": "MyCustomService",
  "needConsent": true,
  "cookies": ['cookie', 'cookie2'],
  "readmoreLink": "/custom_read_more", // If you want to change readmore link
  "js": function () {
    "use strict";
    // When user allow cookie
  },
  "fallback": function () {
    "use strict";
    // when use deny cookie
  }
};