Anonymous ID: 3b85bf Nov. 4, 2021, 1:52 p.m. No.14924525   🗄️.is 🔗kun   >>4545 >>4546 >>4591

>>14924359

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; }');

 

})();