Disables clicking on links and sticks a warning on the page.
[MALWARE WARNING] This is not GBATemp. by windowtoaster
Details
Authorwindowtoaster
LicenseNo License
Categorysefemedical.com
Created
Updated
Size725 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This style is for a website that pretends to be GBATemp. I've read that apparently it has malware, and can also steal your login information. The style disables links so you can't click on them (can't do anything against auto-redirect though) and sticks a notice on the page informing you that it's not the real GBATemp. Of course it's preferable to not go to this site at all, but hopefully this will help anyone browsing google at 2 AM half-asleep.
Source code
/* ==UserStyle==
@name [MALWARE WARNING] This is not GBATemp.
@version 20230607.01.00
@namespace userstyles.world/user/windowtoaster
@description Disables clicking on links and sticks a warning on the page.
@author windowtoaster
@license No License
==/UserStyle== */
@-moz-document domain("sefemedical.com") {
a {
pointer-events: none;
display:none;
}
a:link {
pointer-events: none;
display:none;
}
a:visited {
pointer-events: none;
display:none;
}
input {
pointer-events: none;
display:none;
}
div:after {
content:'This is not GBATemp!';
visibility: visible;
display: block;
position: absolute;
color:red;
background-color: black;
padding: 5px;
top: 2px;
}
}