// ==UserScript==
// @name 晓黑板
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://web.xiaoheiban.cn/*
// @grant none
// @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
//alert(123);
console.log(111);
var jumpButton = $(`
<div id="mywidget" href='javascript:void(0)' target='_blank' style="z-index:9999; position:fixed;left:0px;top:280px;">
<a href="#" id="vparse">❀清理数据<div id="myplaybutton"></div></a>
</div>
`);
$("body").append(jumpButton);
$("#mywidget").click(function () {
$('.message-time').each(function(e,i){
// console.log($(this).text());
if($(this).text().indexOf('/')>0)
$(this).parent().parent().html(11);
});
});
// Your code here...
})();