Last active
March 13, 2018 06:05
-
-
Save captainsafia/14a0e6fcd82254154618b3d6f1c4b93c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var BLOCKED_DOMAINS = [ | |
'reddit.com', | |
'news.ycombinator.com', | |
'8chan.co', | |
'4chan.org' | |
]; | |
var matched = null; | |
for (let i = 0; i < BLOCKED_DOMAINS.length; i++) { | |
if (document.referrer.indexOf(BLOCKED_DOMAINS[i]) > -1) { | |
matched = BLOCKED_DOMAINS[i]; | |
break; | |
} | |
} | |
if (matched) { | |
document.body.hidden = true; | |
document.addEventListener('DOMContentLoaded', () => { | |
document.body.innerHTML = ( | |
'<p>This page is unavailable when linked to from ' + matched + '.</p>' + | |
'<p>Please find a less toxic place to spend your time.</p>' + | |
'<p><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Here is a great song for your time</a></p>' | |
); | |
document.body.hidden = false; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment