1point3acres

Give a minimal simple and fast UI.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         1point3acres
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Give a minimal simple and fast UI.
// @author       Ethan Wei
// @match        http://www.1point3acres.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    
     var nv = document.getElementById("nv");
     nv.style.display = "none";
    
     var wpat = document.getElementsByClassName("wp a_t")[0];
     if (wpat) {
         wpat.style.display = "none";
     }
    
     Array.prototype.forEach.call(
         document.getElementsByClassName("a_mu"),
         function(element) {
             element.style.display = "none";
         });

     Array.prototype.forEach.call(
         document.getElementsByClassName("plc plm"),
         function(element) {
             //console.log(element);
             element.style.display = "none";
         });

     Array.prototype.forEach.call(
         document.getElementsByClassName("a_p"),
         function(element) {
             element.style.display = "none";
         });
    
     Array.prototype.forEach.call(
         document.getElementsByClassName("avatar"),
         function(element) {
             element.style.display = "none";
         });
    
    Array.prototype.forEach.call(
         document.getElementsByClassName("tns xg2"),
         function(element) {
             element.style.display = "none";
         });
   
        Array.prototype.forEach.call(
         document.getElementsByClassName("pls"),
         function(element) {
             element.style.display = "none";
         });
})();