Greasy Fork is available in English.
按esc或者鼠标双击空白处,快捷关闭米游社点开的评论。
当前为
// ==UserScript==
// @name 米游社快捷关闭评论
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 按esc或者鼠标双击空白处,快捷关闭米游社点开的评论。
// @author coccvo
// @match https://www.miyoushe.com/*
// @icon https://img2.doubanio.com/lpic/s33798163.jpg
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('keydown', e => {
if (e.key === 'Escape') {
const closeButton = document.querySelector('.mhy-icon.iconfont.icon-close1');
closeButton.click();
}
});
document.addEventListener('dblclick', e => {
if (document.querySelector('.mhy-action-sheet.reply-detail-action-sheet').getAttribute('style') !== 'display: none;' && !e.target.closest('.mhy-action-sheet__body')) {
const closeButton = document.querySelector('.mhy-action-sheet.reply-detail-action-sheet__left .mhy-icon.iconfont.icon-close1');
closeButton.click();
}
});
})();