Greasy Fork

百度页脚透明显示

try to take over the world!

// ==UserScript==
// @name         百度页脚透明显示
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       界元
// @match        https://www.baidu.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById("bottom_layer").style.backgroundColor="#0000";
    // Your code here...
})();