google翻译快捷键聚焦输入框

按 / 键聚焦到输入框

// ==UserScript==
// @name         google翻译快捷键聚焦输入框
// @namespace    http://tampermonkey.net/
// @version      0.0.1
// @description  按 / 键聚焦到输入框
// @author       meteora
// @match        https://translate.google.com/*
// @icon        https://www.google.com/s2/favicons?sz=64&domain=translate.google.com
// @grant        none
// @license MIT
// ==/UserScript==

;(() => {
	//排除iframe
	if (window.top !== window.self) {
		return
	}
	//监听事件,按下 / 时触发
	document.addEventListener("keyup", function (e) {
		if (e.key === "/") {
			const textareaDom = document.querySelector("#yDmH0d textarea")
			//未聚焦输入框先聚焦
			if (document.activeElement !== textareaDom) {
				textareaDom.focus()
			}
			textareaDom.select() // 全选textarea里面的文本
		}
	})
})()