Add touch gestures to your mobile browser, ready to use and no configuration required. In addition to general gestures, there are also special gestures for text, images, and videos. Do you still think it's not enough? Support adding personalized gestures that belong to you. We recommend using Lemur browser, Yandex browser, and Kiwi browser.
< Feedback on Mobile browser touch gestures
//关闭其他页面
GM_addValueChangeListener('closeAll',(name,old_value,new_value,remote)=>{
if(remote){window.close();}
});
将以上代码插入到脚本代码末尾,然后新建手势,在手势执行脚本区域填入以下代码
GM_setValue("closeAll",Date.now());
脚本是依托于页面的,所以需要页面处于活动状态才能执行脚本,关闭页面。
活动状态是指切换到该页面,不需要重新加载。
如果有多个页面,退出浏览器后再打开,后台页面不处于活动状态,切换到后台页面会重新加载页面。
怎么关闭全部窗口