我的第一个脚本

欢迎你的使用

// ==UserScript==
// @name         我的第一个脚本
// @version      0.1
// @description  欢迎你的使用
// @author       myqf
// @match        https://www.baidu.com
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @namespace https://greasyfork.org/users/1293882
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll('.c-font-normal')[1].style.backgroundColor='red'
    // Your code here...
})();