└── main.js /main.js: -------------------------------------------------------------------------------- 1 | let finalList = []; 2 | 3 | document 4 | .querySelectorAll("._199zF._3j691 ._8nE1Y .y_sn4 ._21S-L ._7T_0D span") 5 | .forEach((item) => { 6 | /^[0-9 + ]+$/.test(item.innerHTML) && 7 | finalList.push( 8 | item.innerHTML.replace(/\s/g, "").replace("+98", "0") + "\n" 9 | ); 10 | }); 11 | 12 | const link = document.createElement("a"); 13 | const file = new Blob(finalList, { type: "text/plain" }); 14 | link.href = URL.createObjectURL(file); 15 | link.download = "phone numbers.txt"; 16 | link.click(); 17 | --------------------------------------------------------------------------------