课堂派 - 去弹幕

去除课堂派浮动弹幕

// ==UserScript==
// @name         课堂派 - 去弹幕
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去除课堂派浮动弹幕
// @author       Xianfei
// @match        https://www.ketangpai.com/Interact/index/courseid/*.html
// @grant        none
// ==/UserScript==

setInterval(function() {
    for (var e of document.getElementsByClassName("barrage")){
        e.parentNode.removeChild(e)
    }
}, 10)