try to take over the world!
// ==UserScript==
// @name block baidu search news
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author TSO
// @match https://www.baidu.com/s*
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log('fuck bd')
document.getElementById('content_right').style.display = 'none';
// Your code here...
})();