Greasy Fork is available in English.

脚本测试

Just do IT, try to take over the world!

  1. // ==UserScript==
  2. // @name 脚本测试
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Just do IT, try to take over the world!
  6. // @author Lance
  7. // @match https://www.baidu.com/
  8. // @icon https://res.wx.qq.com/a/fed_upload/9300e7ac-cec5-4454-b75c-f92260dd5b47/logo-mp.ico
  9. // @grant none
  10. // @license MIT
  11. // @supportURL
  12. // @homepageURL
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. // Your code here...
  18. window.onload=function(){
  19. let t1 = document.getElementById('title-content')
  20. t1.setAttribute('style', 'color:red')
  21. let inputbox = document.getElementById('kw')
  22. // inputbox.value = 'abc'
  23. }
  24. })();