Skip to content

Instantly share code, notes, and snippets.

@dvygolov
Created August 3, 2019 17:41
Embed
What would you like to do?
Скрипт для проверки домена на бан
javascript: (function () {
function checkDomain(d) {
window.open("https://developers.facebook.com/tools/debug/sharing/?q="+d,"_blank");
}
var domain = prompt("Введите домен для проверки", "http://");
checkDomain(domain);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment