Greasy Fork is available in English.
Hide 'liked by friends' items with comment box.
当前为
// ==UserScript==
// @name 微博隐藏带评论框的被赞内容
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Hide 'liked by friends' items with comment box.
// @author Mikkkee
// @include http://weibo.com/*
// @include http://www.weibo.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var a = document.querySelectorAll('div[node-type="commentList"]');
for (var i = 0; i < a.length; ++i) {
a[i].parentElement.parentElement.parentElement.style.display = 'none';
}
})();