











you have to make the itemlist.txt and the metadata.csv













1


























1.in domain is cheap because well, india 
nonsensicalname.in it just smells spammy




// ==UserScript==
// @name Removes unavailable domains every other second
// @namespace http://tampermonkey.net/
// @version 0.1
// @description scribbled a poorly working script to filter out occupied domains on the page
// @author You
// @match https://tld-list.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=tld-list.com
// @grant none
// ==/UserScript==
let call_function_at_2seconds_interval = window.setInterval(function(){
remove_elements_in_the_page();
}, 2000);
function remove_elements_in_the_page(){
while(document.querySelectorAll(`[title*="ot available for registration"]`).length){
document.querySelectorAll(`[title*="ot available for registration"]`)[0].parentNode.remove();
}
}
