2
0
mirror of https://github.com/offen/website.git synced 2024-10-19 04:20:28 +02:00
website/homepage/content/pages/opt-out.md

31 lines
1012 B
Markdown
Raw Normal View History

Title: Opt-out | Offen
description: Prevent Offen from aggregating the actions you have taken on participating websites.
2019-06-25 20:47:39 +02:00
save_as: opt-out/index.html
2019-10-21 22:23:34 +02:00
exclude_from_sitemap: true
2019-12-12 09:34:39 +01:00
sm_image_url: /theme/images/offen-logo-social-media.jpg
2019-06-25 20:47:39 +02:00
2019-08-29 22:21:00 +02:00
## You are opted out
2019-06-25 20:47:39 +02:00
This will prevent Offen from aggregating the actions you have taken on participating websites.
2019-06-25 20:47:39 +02:00
Operators now cannot draw any conclusions from your actions via Offen. At the same time, however, they *cannot create a better experience* for you and other users.
2019-06-25 20:47:39 +02:00
2019-08-01 11:01:19 +02:00
<script>
var vault = document.createElement('iframe')
vault.style.display = 'none'
vault.setAttribute('width', '0')
vault.setAttribute('height', '0')
vault.setAttribute('frameBorder', '0')
vault.setAttribute('scrolling', 'no')
vault.addEventListener('load', function (e) {
vault.contentWindow.postMessage({
type: 'OPTOUT',
payload: {
status: true
}
}, '*')
})
vault.src = 'https://vault-alpha.offen.dev'
document.body.append(vault)
</script>