Hide Jitsi Watermark

Hide Jitsi Watermark for recording

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Hide Jitsi Watermark
// @namespace    https://greasyfork.org/en/users/922168-mark-zinzow
// @version      0.2
// @description  Hide Jitsi Watermark for recording
// @author       Mark Zinzow
// @match        https://meet.jit.si/*
// @match        https://8x8.vc/*
// @match        https://meet.*.space/*
// @icon         https://greasyfork.s3.us-east-2.amazonaws.com/zdfet0s8c664gyke8fnpt8v9w08y
// @supportURL   https://greasyfork.org/en/scripts/462537-hide-jitsi-watermark/feedback
// @license MIT
// @grant       GM_addStyle
// @run-at document-end
// ==/UserScript==
/*jshint esversion: 6 */

//let DEBUG =0;
setTimeout(hidewater, 1000); //Wait to makes sure page js finished first

function hidewater() {
//document.querySelectorAll('.watermark').style.display = 'none';  //doesn't work
    GM_addStyle('.watermark { display: none !important; }');
}

for (let i = 0; i < 6 ; i++) { //150 would give us 5 minutes to enter the meeting where the watermark appears
setTimeout(hidewater, i*2000); //6 gives us 12 seconds to enter meeting
}