Greasy Fork is available in English.

脚本测试

Just do IT, try to take over the world!

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         脚本测试
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Just do IT, try to take over the world!
// @author       Lance
// @match        https://www.baidu.com/
// @icon         https://res.wx.qq.com/a/fed_upload/9300e7ac-cec5-4454-b75c-f92260dd5b47/logo-mp.ico
// @grant        none
// @license      MIT
// @supportURL
// @homepageURL
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    window.onload=function(){
        let t1 = document.getElementById('title-content')
        t1.setAttribute('style', 'color:red')
        let inputbox = document.getElementById('kw')
        // inputbox.value = 'abc'
    }
})();