给我聚焦

让页面的主输入框自动获取焦点

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        给我聚焦
// @namespace   Focus it pls
// @match       https://m.weibo.cn/search
// @grant       none
// @version     0.0.1
// @author      稻米鼠
// @run-at      document-end
// @created     2020/11/11 上午8:28:17
// @update      2020/11/11 上午8:28:17
// @description 让页面的主输入框自动获取焦点
// ==/UserScript==
const rules = [
  {
    urlReg: /^https?:\/\/m\.weibo\.cn\/search/i,
    elSelector: '#app input[type=search]'
  }
]
const focusIt = (elSelector, times)=>{
  times = times ? times : 0
  const el = document.body.querySelector(elSelector)
  if(el){
    el.focus()
    return
  }
  if(times < 1000){
    times++
    window.setTimeout(()=>{
      focusIt(elSelector, times)
    }, 500)
  }
}
for(const rule of rules){
  if(rule.urlReg.test(window.location.href)){
    focusIt(rule.elSelector, rule.mode)
    break;
  }
}