// ==UserScript==
// @name My Fancy New Userscript
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author You
// @match https://ruby-china.org/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// ==/UserScript==
$(document).ready(function() {
$(".info").each(function() {
if ($(this).find("a[data-name]").eq(0).attr("data-name") === "某个用户名") {
$(this).parents(".topic").hide();
$(this).parents(".reply").hide();
}
});
});
肯定是可用的,问题是时灵时不灵,当不灵的时候,cmd+r 硬刷一下就灵了。但是作为 block 用户的脚本老是要这样搞就没什么点了。
想来想去,我也只能觉得有可能是 turbolinks 的影响?请问有谁确定知道是什么原因么?