如何使用 Tapermonkey 脚本自动加入 Jitsi Meet 会议
此代码点击加入按钮:
jitsi_autojoin.js
document.querySelector(".prejoin-preview-dropdown-container div[role='button']").click()通过使用正确的 @match,你可以仅对特定会议激活此功能:
完整脚本:
autojoin_tampermonkey.user.js
// ==UserScript==
// @name AutojoinJitsiMeet
// @namespace http://tampermonkey.net/
// @version 0.1
// @description ?
// @author You
// @match https://meet.jit.si/TestAutoJoin
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector(".prejoin-preview-dropdown-container div[role='button']").click()
})();Check out similar posts by category:
Audio/Video, Javascript
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow