>He
Stop personifying Truth.
Press releases are not law.
Don't have to.
They'll find out soon enough when they've got nobody working for them and have to shut down.
>Don't bother reading a book that was written by people who were eye witnesses to historical events.
> written centuries after the supposed event.
What part of this gives you trouble, biblehomo?
#vrecorder { display:none !important; }
Would you prefer a grease/tampermonkey method?
//UserScript
// @name 8kun vRecorder Kill
// @version 0.1
// @description No Record Anon
// @author You
// @match https://8kun.top/*
// @icon https://8kun.top/static/favicon-reply-8kun.ico
// @grant none
///UserScript
(function() {
'use strict';
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('#vrecorder { display:none !important; }');
})();