Greasy Fork is available in English.

omegle auto checkbox

seleziona caselle controllo

// ==UserScript==
// @name           omegle auto checkbox
// @namespace      https://greasyfork.org/users/237458
// @version        10.2
// @description    seleziona caselle controllo
// @require        http://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js
// @grant          GM_registerMenuCommand
// @author         figuccio
// @match          https://www.omegle.com/
// @icon           https://www.google.com/s2/favicons?domain=omegle.com
// @grant          GM_addStyle
// @grant          GM_setValue
// @grant          GM_getValue
// @run-at         document-start
// @license        MIT
// ==/UserScript==
GM_addStyle('#topicsettingscontainer{display: none!important}');
GM_addStyle('#chattypeheaderrow {display: none!important}');
GM_addStyle('#mobilesitenote {display: none!important}');
//consenso (mia modifica marzo 2023)
(function() {
    'use strict';
    //1e2checkbox
let Click =setInterval(function(){
document.querySelector("body > div:nth-child(12) > div > p:nth-child(2) > label > input[type=checkbox]").click();//1
document.querySelector("body > div:nth-child(12) > div > p:nth-child(3) > label > input[type=checkbox]").click();//2
                clearInterval(Click);
document.querySelector("body > div:nth-child(12) > div > p:nth-child(4) > input[type=button]").click();
 }, 10);
})();
///////////////////////////
GM_addStyle (`

HTML > Body {
background:#202124 !important;
}

HTML > Body > div#header > h2#tagline > img {
margin-top: -130px !important;
position: absolute !important;
}

div.logwrapper {
border: solid !important;
border-color: red !important;
border-radius: 6px !important;
}

div.newchatbtnwrapper {
color: white !important;
}

.sendbtn {
background: #3a3a3a !important;
color: white !important;
}

.disconnectbtn {
background: #3a3a3a !important;
color: white !important;
}

.chatmsg {
background: green !important;
color: blue !important;
}

.statuslog {
color: white !important;
}

.logtopicsettings {
color: white !important;
}

.disconnectbtn:hover {
background: #303030 !important;
color: #c1bbbb !important;
}

.sendbtn:hover {
background: #303030 !important;
color: #c1bbbb !important;
}

.disconnectbtnwrapper {
border: #363636 !important;
background: #363636 !important;
}

.sendbtnwrapper {
border: #363636 !important;
background: #363636 !important;
}

span.topictag {
background: #545454 !important;
color: white !important;
}

div#monitoringnotice {
width: 0px !important;
height: 0px !important;
margin-left: -500px;
display: block;
}

h2#intoheader {
margin-top: 41px !important;
font-weight: bold !important;
color: white !important;
}

div#intro {
-webkit-box-shadow: inset 0 0 .5em #474747 !important;
background: red !important;
border: 1px solid #454545 !important;
color: white !important;
}

h2#startachat {
color: white !important;
}

img#textbtn {
border-radius: 5px !important;
}


div#sharebuttons {
top: -2.5em !important;
}

div.logwrapper {
background: #3a3a3a !important;
}

div#header {
background: green !important;
-webkit-box-shadow: 0 .25em .75em #3D3D3D !important;
}

`)