删除学习通课程页面AI助教

删除课程页面AI助教

// ==UserScript==
// @name         删除学习通课程页面AI助教
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  删除课程页面AI助教
// @author       hydrofluoric07
// @match        https://mooc2-ans.chaoxing.com/mooc2-ans/mycourse/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license     MIT
// ==/UserScript==

(function() {
    'use strict';
     window.addEventListener("load", function() {
        var elements = document.getElementById('nav_0');
        console.log(elements);
        elements.remove();
        elements = document.getElementsByClassName('cx-robot-wrapper');
        elements[0].remove();
    });
})();