Created
August 3, 2019 17:41
-
-
Save dvygolov/999275c4628ba452a1e619a971eb0b21 to your computer and use it in GitHub Desktop.
Скрипт для проверки домена на бан
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Чтобы каждый раз не заходить на страницу отладки FB, просто вешаем себе кнопку в панель закладок, жмём её, вводим домен - и, вуаля, грузится страница с результатом.