1point3acres

Give a minimal simple and fast UI.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==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";
         });
})();