blob: 9070376e08be17489b0823b4291e072995f6f147 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(async function(){
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
var isBrave = (navigator.brave && await navigator.brave.isBrave()) || false;
if (isBrave) {
window.location.href = 'https://axtlos.neocities.org/not-very-brave.html';
}
else if (isChrome) {
var warningDiv = document.createElement('div');
warningDiv.style.backgroundColor = '#f8d7da';
warningDiv.style.color = '#721c24';
warningDiv.style.padding = '20px';
warningDiv.style.margin = '10px';
warningDiv.style.border = '1px solid #f5c6cb';
warningDiv.style.borderRadius = '5px';
warningDiv.innerHTML = '<strong>Warning:</strong> You appear to be using the chrome browser! While it is your right to choose whatever software to use, you should be aware of the monopolistic position google is building with their Chrome browser and the freedoms they take away from you by using chrome! Such as the freedom to use ad blockers.';
document.body.appendChild(warningDiv);
}})();
|