content toggle
目前為
// ==UserScript==
// @name feishu content toggle
// @namespace http://tampermonkey.net/
// @version 2024-08-07
// @description content toggle
// @author onionycs
// @license MIT
// @match *://*.feishu.cn/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=feishu.cn
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
// 监听键盘按下事件
document.addEventListener('keydown', function(event) {
// 检查按下的键是否是数字0(注意:这里不区分大小写,但数字键通常没有大小写)
if (event.key === '[') {
document.getElementsByClassName("catalogue__pin-wrapper")[0].click();
}
});
})();