Skip to content

Instantly share code, notes, and snippets.

@jyboy
Last active March 22, 2022 09:53
Show Gist options
  • Save jyboy/3e814c92d6b445c5772c5461672a00c6 to your computer and use it in GitHub Desktop.
Save jyboy/3e814c92d6b445c5772c5461672a00c6 to your computer and use it in GitHub Desktop.
V2EX去置顶贴脚本
// ==UserScript==
// @name V2EX去置顶贴
// @namespace https://biebu.xin/
// @version 1.0
// @description V2EX去置顶贴
// @author JYBoy
// @match https://v2ex.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(function() {
$('#Main').find('.item').filter(function() {
return $(this).css('background-image') !== 'none';
}).remove();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment