当前位置:首页 > js

油猴第一课百度两下

admin1年前 (2024-12-19)js1088
// ==UserScript==
// @name         百度两下
// @namespace    http://tampermonkey.net/
// @version      2024-12-19
// @description  try to take over the world!
// @author       You
// @match        https://www.baidu.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let btn = document.querySelector('.btn.self-btn.bg.s_btn')
    btn.value = '百度两下'
    btn.style.backgroundColor = 'pink'


扫描二维码推送至手机访问。

版权声明:本文由匡民博客发布,如需转载请注明出处。

本文链接:https://kuangmin.top/post/44.html

分享给朋友:

“油猴第一课百度两下” 的相关文章

js跳转到指定url

在 JavaScript 中,可以使用以下方法将页面跳转到指定的 URL:…

B站视频播放速度

// ==UserScript== // @name B站播放速度调整 // @namespace https://www.bilibili.com/ // @version 1.0 // @descriptio…