- Moderatör
- #1
aka panic.rs
Kurucu
Supported Sites - Desteklenen Siteler :
GatherProxy:
freeproxylists :
Go to site Open Developer Console (F12) Paste code press enter its will download proxylist.json
Siteyi aç Geliştirici Konsolunu aç (F12) Kodu yapıştır entere bas proxy.json dosyası halinde indirecektir.
Note: its will download only one page you have to manually switch page.
Not : bu sadece tek sayfadakileri indirecektir elinizle sayfaları değiştirip işlemi tekrarlamanız gerekli.
Bağlantıları görmek için lütfen
Giriş Yap
,
Bağlantıları görmek için lütfen
Giriş Yap
GatherProxy:
JavaScript:
var lsproxylist = '';
function lsProxyAdd(ip,port)
{
lsproxylist+=ip+":"+port+"\n";
}
function lsproxyDownload(proxylist)
{
var textFileAsBlob = new Blob([proxylist], {type:'text/plain'});
var downloadLink = document.createElement("a");
downloadLink.download = "proxylist.json";
downloadLink.innerHTML = "Download File";
if (window.webkitURL != null)
{
downloadLink.href = window.webkitURL.createObjectURL(textFileAsBlob);
}
else
{
downloadLink.href = window.URL.createObjectURL(textFileAsBlob);
downloadLink.onclick = destroyClickedElement;
downloadLink.style.display = "none";
document.body.appendChild(downloadLink);
}
downloadLink.click();
}
var basetbl = document.getElementById("tblproxy");var tbody = basetbl.getElementsByTagName("tbody")[0].rows;
for (const key in tbody) {
try
{
if(key ==0)
continue;
if(tbody[key] == undefined)
continue;
if(tbody[key].childNodes == undefined)
continue;
var proxybase = tbody[key].childNodes;
var ip = proxybase[3].innerText;
var port = proxybase[5].innerText;
lsProxyAdd(ip,port)
}
catch(e){}
}
lsproxyDownload(lsproxylist)
freeproxylists :
JavaScript:
var lsproxylist = '';
function lsProxyAdd(ip,port)
{
lsproxylist+=ip+":"+port+"\n";
}
function lsproxyDownload(proxylist)
{
var textFileAsBlob = new Blob([proxylist], {type:'text/plain'});
var downloadLink = document.createElement("a");
downloadLink.download = "proxylist.json";
downloadLink.innerHTML = "Download File";
if (window.webkitURL != null)
{
downloadLink.href = window.webkitURL.createObjectURL(textFileAsBlob);
}
else
{
downloadLink.href = window.URL.createObjectURL(textFileAsBlob);
downloadLink.onclick = destroyClickedElement;
downloadLink.style.display = "none";
document.body.appendChild(downloadLink);
}
downloadLink.click();
}
var baseGrid = document.getElementsByClassName("DataGrid")[0];
var tbody = baseGrid.getElementsByTagName("tbody")[0].rows;
var proxylen = tbody.length;
for (const key in tbody) {
try{
if(key == 0)
continue;
var lsrow = tbody[key].cells;
var lsrowlen = lsrow.length;
if(lsrow<2)
continue;
if(lsrow)
var ip = lsrow[0].innerText;
var port = lsrow[1].innerText;
lsProxyAdd(ip,port);
//var completeproxy = ip +":"+ port;
//console.log(completeproxy);
}
catch(e){}
}
lsproxyDownload(lsproxylist);
Go to site Open Developer Console (F12) Paste code press enter its will download proxylist.json
Siteyi aç Geliştirici Konsolunu aç (F12) Kodu yapıştır entere bas proxy.json dosyası halinde indirecektir.
Note: its will download only one page you have to manually switch page.
Not : bu sadece tek sayfadakileri indirecektir elinizle sayfaları değiştirip işlemi tekrarlamanız gerekli.
Son düzenleme: