xoatu

try to take over the world!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         xoatu
// @version      3
// @description  try to take over the world!
// @author       P
// @include      https://www3.chotot.com/*  
// @grant        none
// @run-at       document-end
// @namespace https://greasyfork.org/users/110837
// ==/UserScript==


var res1,res2,string1,string2,re;
var soad= document.getElementsByName("body").length;

//xóa tiêu đề//
function xoatieude(tucanxoa)
{
    re = new RegExp(tucanxoa, "gi"); //g (chính xác) hoặc gi (gần giống)
    var i=0;
    while(i<soad)
    {
        string1 = document.getElementsByName("subject")[i].value;
        res1 = string1.replace(re, "");
        document.getElementsByName("subject")[i].value = res1;
        i++;
    }
}
//xóa nội dung//
function xoanoidung(tucanxoa)
{
    re = new RegExp(tucanxoa, "g"); //g (chính xác) hoặc gi (gần giống)
    var i=0;
    while(i<soad)
    {
        string2 = document.getElementsByName("body")[i].value;
        res2 = string2.replace(re, "");
        document.getElementsByName("body")[i].value = res2;
        i++;
    }
}


//keyword tiêu đề//
xoatieude("cần ");
xoatieude("cần");
xoatieude("mua ");
xoatieude("mua");
xoatieude("bán ");
xoatieude("bán");

xoatieude("giá ");
xoatieude("giá");

xoatieude("tỷ ");
xoatieude("tỷ");

xoatieude("tuyển ");
xoatieude("tuyển");

xoatieude("tìm ");
xoatieude("tìm");

xoatieude("nhất ");
xoatieude("nhất");

xoatieude("cho thuê ");
xoatieude("cho thuê");

xoatieude("cần thuê ");
xoatieude("cần thuê");

xoatieude("thuê ");
xoatieude("thuê");

xoatieude("đẹp ");
xoatieude("đẹp");

xoatieude("tốt ");
xoatieude("tốt");

xoatieude("rẻ ");
xoatieude("rẻ");


xoatieude("thanh lý ");
xoatieude("thanh lý");


//keyword nội dung//
xoanoidung("duy nhất ");
xoanoidung("duy nhất");
xoanoidung("Duy Nhất ");
xoanoidung("Duy Nhất");
xoanoidung("Duy nhất ");
xoanoidung("Duy nhất");
xoanoidung("nhất ");
xoanoidung("nhất");




/*alert(document.getElementsByName("subject")[0].value);
alert(document.getElementsByName("body")[0].value);
alert(document.getElementsByName("body").length);*/