Share Tut xoá admin ẩn cho anh em chạy facebook ads

admin

Administrator
Staff member
Có cái tip nhỏ xoá admin ẩn cho anh em chạy ads
Anh em f12 copy đoạn code này enter là done nhé
JavaScript:
window.delayne = 5;
var regexne = /id:(\d+),name:null/g;
window.hthang = document.body.innerHTML.match(regexne);
window.list_uid = window.hthang.map(a=> /id:(\d+),name:null/.exec(a)[1]);
console.log("Có " + window.list_uid.length + " admin ẩn.");
function xoa_adminan() {
if(window.list_uid.length >0){
var idan = window.list_uid.splice(0,1)[0];
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
if(this.responseText.indexOf("true")>=0){
console.log("Xóa thành công: " +idan + " ẩn khỏi TKQC.");
}
setTimeout(xoa_adminan,window.delayne * 1000);
}
});
xhr.open("GET", "https://graph.facebook.com/v10.0/act_"+require("BusinessUnifiedNavigationContext").adAccountID+"/users?uid="+idan+"&access_token="+require("AdsCMConnectConfig").access_token+"&format=json&method=delete");
xhr.send();
} else {
console.log("DONE");
}
}
xoa_adminan();
(Nguồn: Yuan Wu)
 

Bài viết tương tự

Back
Top