内容不错,自动播放不好,已拉黑
// ==UserScript==
// @name 1024
// @version 0.1
// @description try to take over the world!
// @author You
// @match
https://cl.2718z.xyz/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(matchURL("https://cl.2718z.xyz")){
var blacklist=["123456","789987","591901","一风帆顺"];
blacklist.forEach(function(obj){
$("a[href$=\"="+obj+"\"]").parent().parent().hide();
})
}
function matchURL(x){
return window.location.href.indexOf(x) != -1;
}
}
)();