limaojun / Remove Autohome forum list page preview images of video posts

// ==UserScript==
// @name         Remove Autohome forum list page preview images of video posts 
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Autohome forum video posts will display a video preview on the forum list page, which will seriously affect the reading experience. This script can block the video preview images.
// @author       limaojun
// @match        *://club.autohome.com.cn/bbs/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("dd.outvideo").hide();
})();