This script removes the overlay suggesting portrait orientation.
// ==UserScript==
// @name Use Meetic mobile also in landscape
// @namespace StephenP
// @author StephenP
// @description This script removes the overlay suggesting portrait orientation.
// @version 1
// @grant none
// @include https://www.meetic.tld/m/*
// ==/UserScript==
var interval=setInterval(removeBlocker,1000);
function removeBlocker(){
var blocker=document.getElementsByClassName("landscape-blocker");
if(blocker.length>0){
blocker[0].parentNode.removeChild(blocker[0]);
clearInterval(interval);
}
}