坏都都破解显示隐藏

try to take over the world!

// ==UserScript==
// @name         坏都都破解显示隐藏
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  try to take over the world!
// @author       You
// @match        https://*.huaidudu.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var ui = document.getElementById("content_news");if(ui.style.display = "none")ui.style.display = "block";
    var ui1 = document.getElementById("content_news").style.display = "block";
    // Your code here...
})();