Bilibili tools

try to take over the world!

  1. // ==UserScript==
  2. // @name Bilibili tools
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.6
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.bilibili.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15.  
  16.  
  17. function task(){
  18. var search_form = document.getElementById("nav_searchform");
  19. var input = search_form.firstChild
  20. input.setAttribute("placeholder","");
  21. }
  22.  
  23. //var timer=setInterval(task,1000) //每过一秒执行一次,并且用timer接收
  24.  
  25. setTimeout(task, 1000);
  26.  
  27.  
  28. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址