Skip to content

Instantly share code, notes, and snippets.

@henryhund
henryhund / Aptible Gridiron GDPR Slack Community Code of Conduct.md
Last active May 29, 2018 14:01
This is a code of conduct by which we govern the Aptible Gridiron GDPR Slack Community.

Join the Aptible Gridiron GDPR Slack Community here.

Aptible Gridiron GDPR Slack Code of Conduct

1. Purpose

A primary goal of Aptible Gridiron GDPR Slack is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof).

This code of conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior.

chrome.webRequest.onHeadersReceived.addListener(
function (details) {
for (var i = 0; i < details.responseHeaders.length; ++i) {
if (details.responseHeaders[i].name.toLowerCase() == 'x-frame-options') {
details.responseHeaders.splice(i, 1);
return {
responseHeaders: details.responseHeaders
};
}
}