Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Mit dem With the Smart Data Protector können Dienste automatisch blockiert werden, wenn keine Einwilligung vorliegt. Es müssen also keine Snippets mehr manuell angepasst werden, was besonders bei großen Seiten Aufwand erspart. 

Vorteile des SDP:

  • Kein Anpassen von einzelnen Service - das bedeutet

    • Weniger Aufwand

    • Kein Video/Keine Karte/etc. kann übersehen werden

    • Redakteure können weiter wie gewohnt Inhalte einpflegen

  • Deutlich leichter umzusetzen als andere Methoden

  • Liefert in manchen Fällen nützlichen Ersatzcontent aus wie z.B. ein statisches Bild der Google Maps Karte

Nachteile des SDP:

  • Obwohl die Ausführung von JavaScript-Code blockiert ist, kann Smart Data Protector den Download der referenzierten JavaScript-Dateien nicht verhindern. Da die IP-Adresse bei einer solchen Anfrage gesendet wird, erhält eine Drittfirma trotzdem die IP-Adresse Ihrer Besucher - und das halten wir für datenschutzrechtlich kritisch!

  • Verweise auf Server von Drittanbietern innerhalb von CSS-Dateien mit der @import-Anweisung können nicht blockiert werden.

  • Das Feature ist führt in manchen Fällen zu Kompatibilitätsproblemen mit anderen Teilen der Seite → Nach dem Einbau sollte deshalb jede Funktionalität geprüft werden!

  • Der Ersatzcontent kann nicht angepasst werden

  • Der SDP greift nicht bei <noscript> - Snippets

  • Es werden nicht alle Services unterstützt (Liste an unterstützten Services)

Einbau:

Zur Verwendung müssen lediglich die folgenden Snippets in den <head> integriert werden, services can be blocked automatically if no consent is given. This means that snippets no longer have to be adapted manually, which saves effort, especially with large pages.


Advantages of the SDP:

  • No adjusting of individual services - this means

    • less effort

    • No video/no map/etc. can be missed

    • Editors can continue to publish content as usual

  • way easier than other methods

  • In some cases, delivers useful replacement content such as a static image of the Google Maps map.

Disadvantages of the SDP:

  • Although the execution of JavaScript code is blocked, Smart Data Protector cannot prevent the download of the referenced JavaScript files. Since the IP address is sent in such a request, a third party company still receives the IP address of your visitors - and we consider this critical in terms of data protection!

  • References to third-party servers within CSS files with the @import statement cannot be blocked.

  • The feature is in some cases leads to compatibility problems with other parts of the site → Therefore, every functionality should be checked after installation!

  • The replacement content cannot be adapted

  • The SDP does not work with <noscript> - snippets

  • Not all services are supported (supported services)

Integration:

To use it, only the following snippets have to be integrated into the <head>:

Code Block
<meta data-privacy-proxy-server="https://privacy-proxy-server.usercentrics.eu">
<script type="application/javascript" src="https://privacy-proxy.usercentrics.eu/latest/uc-block.bundle.js"></script>

Das <script> darf dabei erst nach der eigentlichen CMP geladen, der <meta> - Tag kann auch oben bei den anderen Metatags platziert werden.

Support für Custom Services

Der Smart Data Protector erkennt standardmäßig nur die vordefinierten Servicevorlagen. Benutzerdefinierte Servicevorlagen können unterstützt werden, indem die Vorlagen-ID der benutzerdefinierten Vorlage mit der entsprechenden vordefinierten Vorlage verknüpft wird. Dafür muss der Custom Service mit dem “normalen” Datenbankservice gemappt werdenThe <script> may only be loaded after the actual CMP, the <meta> tag can also be placed at the top near the other metatags.

Support for Custom Services

The Smart Data Protector recognises only the predefined service templates by default. Custom service templates can be supported by linking the template ID of the custom template to the corresponding predefined template. To do this, the custom service must be mapped with the "normal" database service:

Code Block
<script>
uc.setServiceAlias({'BJz7qNsdj-7': 'XXXXX'}) 
// XXXXX needs to be the templateId of custom Youtube service template
// ... you can also map more service IDs similarly
</script>

Smart Data Protector für einzelne Services aktivieren/deaktivieren

Standardmäßig wird das Tool für alle Services automatisch aktiviert. Mit den folgenden Scripten kann der Mechanismus Servicespezifisch an oder abgeschaltet werden:

...

Enable/disable for specific services

By default, the tool is automatically activated for all services. With the following scripts, the mechanism can be switched on or off service-specifically:

Disable services:

Code Block
<script>
uc.deactivateBlocking([
  'BJz7qNsdj-7', // YouTube is not blocked
  'HkocEodjb7', // Google Analytics is not blocked
  // ... you can also add more service IDs similarly
]);
</script>

Oder nur bestimmte Services aktivierenOr activate only certain services:

Code Block
<script>
uc.blockOnly([
  'BJz7qNsdj-7', // YouTube is blocked
  'HkocEodjb7', // Google Analytics is blocked
  // ... all other technologies will be ignored!
]);
</script>

...