百度logo-hqf

这是一个hello world 类似的程序。

// ==UserScript==
// @name         百度logo-hqf
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  这是一个hello world 类似的程序。
// @author       hqf
// @match       https://www.baidu.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.getElementById("lg").innerHTML = "胡青丰的百度"
    var lgStyle = document.getElementById("lg").style;
    lgStyle.setProperty("font-size","70px");
    lgStyle.setProperty("position","relative");
    lgStyle.setProperty("top","70px");
})();